Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add go1.12.4 / 1.11.9 #321

Merged
merged 1 commit into from Apr 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,9 @@
# Go Buildpack Changelog

## Unreleased
* Add go1.12.4, expand go1.12 to go1.12.4, and default to go1.12.4
* Add go1.11.9 and expand go1.11 to go.11.9.
* Restore vendored mattes migrate teset on cedar:14 (finally fixed in ^)

## v109 (2019-04-09)
* Add go1.12.3, expand go1.12 to go1.12.3, and default to go1.12.3
Expand Down
10 changes: 5 additions & 5 deletions data.json
@@ -1,11 +1,11 @@
{
"Go": {
"DefaultVersion": "go1.12.3",
"DefaultVersion": "go1.12.4",
"VersionExpansion": {
"go1.12.0": "go1.12",
"go1.12": "go1.12.3",
"go1.12": "go1.12.4",
"go1.11.0": "go1.11",
"go1.11": "go1.11.8",
"go1.11": "go1.11.9",
"go1.10.0": "go1.10",
"go1.10": "go1.10.8",
"go1.9.0": "go1.9",
Expand Down Expand Up @@ -98,8 +98,8 @@
"assets": [
"stdlib.sh.v8",
"jq-linux64",
"go1.11.8.linux-amd64.tar.gz",
"go1.12.3.linux-amd64.tar.gz",
"go1.11.9.linux-amd64.tar.gz",
"go1.12.4.linux-amd64.tar.gz",
"go1.10.8.linux-amd64.tar.gz",
"go1.8.3.linux-amd64.tar.gz",
"go1.7.6.linux-amd64.tar.gz",
Expand Down
8 changes: 8 additions & 0 deletions files.json
Expand Up @@ -152,6 +152,10 @@
"SHA": "e32ab1c934b747999d04e8a550b97f4647f8b1b43e152de5650d4476bfd1d2e1",
"URL": "https://storage.googleapis.com/golang/go1.11.8.linux-amd64.tar.gz"
},
"go1.11.9.linux-amd64.tar.gz": {
"SHA": "e88aa3e39104e3ba6a95a4e05629348b4a1ec82791fb3c941a493ca349730608",
"URL": "https://storage.googleapis.com/golang/go1.11.9.linux-amd64.tar.gz"
},
"go1.11.linux-amd64.tar.gz": {
"SHA": "b3fcf280ff86558e0559e185b601c9eade0fd24c900b4c63cd14d1d38613e499",
"URL": "https://storage.googleapis.com/golang/go1.11.linux-amd64.tar.gz"
Expand Down Expand Up @@ -184,6 +188,10 @@
"SHA": "3924819eed16e55114f02d25d03e77c916ec40b7fd15c8acb5838b63135b03df",
"URL": "https://storage.googleapis.com/golang/go1.12.3.linux-amd64.tar.gz"
},
"go1.12.4.linux-amd64.tar.gz": {
"SHA": "d7d1f1f88ddfe55840712dc1747f37a790cbcaa448f6c9cf51bbe10aa65442f5",
"URL": "https://storage.googleapis.com/golang/go1.12.4.linux-amd64.tar.gz"
},
"go1.12.linux-amd64.tar.gz": {
"SHA": "750a07fef8579ae4839458701f4df690e0b20b8bcce33b437e4df89c451b6f13",
"URL": "https://storage.googleapis.com/golang/go1.12.linux-amd64.tar.gz"
Expand Down
8 changes: 0 additions & 8 deletions test/run.sh
Expand Up @@ -628,14 +628,6 @@ testGovendorGo14WithGOVERSIONOverride() {
}

testGlideMassageVendor() {
if [ "${IMAGE}" = "heroku/cedar:14" ]; then
echo "!!!"
echo "!!! Skipping this test on heroku/cedar:14"
echo "!!! It fails with gcc errors when compiling mattes/migrate"
echo "!!!"
return 0
fi

fixture "glide-massage-vendor"

env "GO_INSTALL_PACKAGE_SPEC" ". github.com/mattes/migrate"
Expand Down