Skip to content

Commit 5da78b7

Browse files
authored
Merge pull request #8601 from hashicorp/build-go1.14.7
build: update from Go 1.14.6 to Go 1.14.7
2 parents 3874263 + 30c6df8 commit 5da78b7

File tree

6 files changed

+22
-21
lines changed

6 files changed

+22
-21
lines changed

.circleci/config.yml

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.circleci/config/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ executors:
2424
go:
2525
working_directory: /go/src/github.com/hashicorp/nomad
2626
docker:
27-
- image: golang:1.14.6
27+
- image: golang:1.14.7
2828
environment:
2929
<<: *common_envs
3030
GOPATH: /go
@@ -36,7 +36,7 @@ executors:
3636
environment: &machine_env
3737
<<: *common_envs
3838
GOPATH: /home/circleci/go
39-
GOLANG_VERSION: 1.14.6
39+
GOLANG_VERSION: 1.14.7
4040

4141
# uses a more recent image with unattended upgrades disabled properly
4242
# but seems to break docker builds
@@ -53,7 +53,7 @@ executors:
5353
environment:
5454
<<: *common_envs
5555
GOPATH: /Users/distiller/go
56-
GOLANG_VERSION: 1.14.6
56+
GOLANG_VERSION: 1.14.7
5757

5858
go-windows:
5959
machine:
@@ -65,6 +65,6 @@ executors:
6565
GOPATH: c:\gopath
6666
GOBIN: c:\gopath\bin
6767
GOTESTSUM_PATH: c:\tmp\test-reports
68-
GOLANG_VERSION: 1.14.6
68+
GOLANG_VERSION: 1.14.7
6969
GOTESTSUM_VERSION: 0.4.2
7070
VAULT_VERSION: 1.4.1

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ BUG FIXES:
1010
* core: Fixed a bug where `nomad job plan` reports success and no updates if the job contains a scaling policy [[GH-8567](https://github.com/hashicorp/nomad/issues/8567)]
1111
* api: Added missing namespace field to scaling status GET response object [[GH-8530](https://github.com/hashicorp/nomad/issues/8530)]
1212
* api: Do not allow submission of jobs of type `system` that include task groups with scaling stanzas [[GH-8491](https://github.com/hashicorp/nomad/issues/8491)]
13+
* build: Updated to Go 1.14.7. Go 1.14.6 contained a CVE that is not believed to impact Nomad [[GH-8601](https://github.com/hashicorp/nomad/issues/8601)]
1314
* vault: Fixed a bug where upgrades from pre-0.11.3 that use Vault can lead to memory spikes and write large Raft messages. [[GH-8553](https://github.com/hashicorp/nomad/issues/8553)]
1415

1516
## 0.12.1 (July 23, 2020)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Who Uses Nomad
121121
Contributing to Nomad
122122
--------------------
123123

124-
If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.14.6+ is *required*, and `gcc-go` is not supported).
124+
If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.14.7+ is *required*, and `gcc-go` is not supported).
125125

126126
See the [`contributing`](contributing/) directory for more developer documentation.
127127

scripts/release/mac-remote-build

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ REPO_PATH="${TMP_WORKSPACE}/gopath/src/github.com/hashicorp/nomad"
5656
mkdir -p "${TMP_WORKSPACE}/tmp"
5757
5858
install_go() {
59-
local go_version="1.14.6"
59+
local go_version="1.14.7"
6060
local download=
6161
6262
download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz"

scripts/vagrant-linux-priv-go.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
function install_go() {
4-
local go_version="1.14.6"
4+
local go_version="1.14.7"
55
local download=
66

77
download="https://storage.googleapis.com/golang/go${go_version}.linux-amd64.tar.gz"

0 commit comments

Comments
 (0)