prepare for next release
This commit is contained in:
parent
5a68373e7f
commit
5cfd55658f
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -84,6 +84,12 @@ BUG FIXES:
|
||||||
* server: Fixed a panic on arm64 platform when dispatching a job with a payload [[GH-11396](https://github.com/hashicorp/nomad/issues/11396)]
|
* server: Fixed a panic on arm64 platform when dispatching a job with a payload [[GH-11396](https://github.com/hashicorp/nomad/issues/11396)]
|
||||||
* server: Fixed a panic that may occur when preempting multiple allocations on the same node [[GH-11346](https://github.com/hashicorp/nomad/issues/11346)]
|
* server: Fixed a panic that may occur when preempting multiple allocations on the same node [[GH-11346](https://github.com/hashicorp/nomad/issues/11346)]
|
||||||
|
|
||||||
|
## 1.1.9 (December 13, 2021)
|
||||||
|
|
||||||
|
SECURITY:
|
||||||
|
|
||||||
|
* Updated to Go 1.16.12. Earlier versions of Go contained 2 CVEs. [CVE-2021-44717](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44717) could allow a task on a Unix system with exhausted file handles to misdirect I/O. [CVE-2021-44716](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716) could create unbounded memory growth in HTTP2 servers. Nomad servers do not use HTTP2. [[GH-11662](https://github.com/hashicorp/nomad/issues/11662)]
|
||||||
|
|
||||||
## 1.1.8 (November 19, 2021)
|
## 1.1.8 (November 19, 2021)
|
||||||
|
|
||||||
SECURITY:
|
SECURITY:
|
||||||
|
@ -343,6 +349,12 @@ BUG FIXES:
|
||||||
* server: Fixed a panic that may arise on submission of jobs containing invalid service checks [[GH-10154](https://github.com/hashicorp/nomad/issues/10154)]
|
* server: Fixed a panic that may arise on submission of jobs containing invalid service checks [[GH-10154](https://github.com/hashicorp/nomad/issues/10154)]
|
||||||
* ui: Fixed the rendering of interstitial components shown after processing a dynamic application sizing recommendation. [[GH-10094](https://github.com/hashicorp/nomad/pull/10094)]
|
* ui: Fixed the rendering of interstitial components shown after processing a dynamic application sizing recommendation. [[GH-10094](https://github.com/hashicorp/nomad/pull/10094)]
|
||||||
|
|
||||||
|
## 1.0.15 (December 13, 2021)
|
||||||
|
|
||||||
|
SECURITY:
|
||||||
|
|
||||||
|
* Updated to Go 1.16.12. Earlier versions of Go contained 2 CVEs. [CVE-2021-44717](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44717) could allow a task on a Unix system with exhausted file handles to misdirect I/O. [CVE-2021-44716](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44716) could create unbounded memory growth in HTTP2 servers. Nomad servers do not use HTTP2. [[GH-11662](https://github.com/hashicorp/nomad/issues/11662)]
|
||||||
|
|
||||||
## 1.0.14 (November 19, 2021)
|
## 1.0.14 (November 19, 2021)
|
||||||
|
|
||||||
SECURITY:
|
SECURITY:
|
||||||
|
|
|
@ -32,7 +32,7 @@ PROTO_COMPARE_TAG ?= v1.0.3$(if $(findstring ent,$(GO_TAGS)),+ent,)
|
||||||
|
|
||||||
# LAST_RELEASE is the git sha of the latest release corresponding to this branch. main should have the latest
|
# LAST_RELEASE is the git sha of the latest release corresponding to this branch. main should have the latest
|
||||||
# published release, but backport branches should point to the parent tag (e.g. 1.0.8 in release-1.0.9 after 1.1.0 is cut).
|
# published release, but backport branches should point to the parent tag (e.g. 1.0.8 in release-1.0.9 after 1.1.0 is cut).
|
||||||
LAST_RELEASE ?= v1.2.2
|
LAST_RELEASE ?= v1.2.3
|
||||||
|
|
||||||
default: help
|
default: help
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue