mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 17:35:43 +03:00
Merge release 1.3.5 files (#14425)
* Merge release 1.3.5 files * Generate files for 1.3.5 release * Prepare for next release Co-authored-by: hc-github-team-nomad-core <github-team-nomad-core@hashicorp.com>
This commit is contained in:
29
CHANGELOG.md
29
CHANGELOG.md
@@ -1,3 +1,16 @@
|
||||
## 1.3.5 (August 31, 2022)
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
* cgroups: use cgroup.kill interface file when using cgroups v2 [[GH-14371](https://github.com/hashicorp/nomad/issues/14371)]
|
||||
* consul: Reduce load on Consul leader server by allowing stale results when listing namespaces. [[GH-12953](https://github.com/hashicorp/nomad/issues/12953)]
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* cli: Fixed a bug where forcing a periodic job would fail if the job ID prefix-matched other periodic jobs [[GH-14333](https://github.com/hashicorp/nomad/issues/14333)]
|
||||
* template: Fixed a bug that could cause Nomad to panic when using `change_mode = "script"` [[GH-14374](https://github.com/hashicorp/nomad/issues/14374)]
|
||||
* ui: Revert a change that resulted in UI errors when ACLs were not used. [[GH-14381](https://github.com/hashicorp/nomad/issues/14381)]
|
||||
|
||||
## 1.3.4 (August 25, 2022)
|
||||
|
||||
IMPROVEMENTS:
|
||||
@@ -261,6 +274,16 @@ BUG FIXES:
|
||||
* ui: fix broken link to task-groups in the Recent Allocations table in the Job Detail overview page. [[GH-12765](https://github.com/hashicorp/nomad/issues/12765)]
|
||||
* ui: fix the unit for the task row memory usage metric [[GH-11980](https://github.com/hashicorp/nomad/issues/11980)]
|
||||
|
||||
## 1.2.12 (August 31, 2022)
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
* consul: Reduce load on Consul leader server by allowing stale results when listing namespaces. [[GH-12953](https://github.com/hashicorp/nomad/issues/12953)]
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* cli: Fixed a bug where forcing a periodic job would fail if the job ID prefix-matched other periodic jobs [[GH-14333](https://github.com/hashicorp/nomad/issues/14333)]
|
||||
|
||||
## 1.2.11 (August 25, 2022)
|
||||
|
||||
IMPROVEMENTS:
|
||||
@@ -536,6 +559,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 that may occur when preempting multiple allocations on the same node [[GH-11346](https://github.com/hashicorp/nomad/issues/11346)]
|
||||
|
||||
## 1.1.18 (August 31, 2022)
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* cli: Fixed a bug where forcing a periodic job would fail if the job ID prefix-matched other periodic jobs [[GH-14333](https://github.com/hashicorp/nomad/issues/14333)]
|
||||
|
||||
## 1.1.17 (August 25, 2022)
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
@@ -49,7 +49,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
|
||||
# published release, and release branches should point to the latest published release in the X.Y release line.
|
||||
LAST_RELEASE ?= v1.3.4
|
||||
LAST_RELEASE ?= v1.3.5
|
||||
|
||||
default: help
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -11,7 +11,7 @@ var (
|
||||
GitDescribe string
|
||||
|
||||
// The main version number that is being run at the moment.
|
||||
Version = "1.3.5"
|
||||
Version = "1.3.6"
|
||||
|
||||
// A pre-release marker for the version. If this is "" (empty string)
|
||||
// then it means that it is a final release. Otherwise, this is a pre-release
|
||||
|
||||
Reference in New Issue
Block a user