Merge release 1.4.2 files
Changelog updates for 1.4.2 and backports.
This commit is contained in:
parent
38b1c8a22a
commit
2ce1728fa6
|
@ -1,7 +1,7 @@
|
|||
```security
|
||||
```release-note:security
|
||||
variables: Fixed a bug where non-sensitive variable metadata (paths and raft indexes) was exposed via the template `nomadVarList` function to other jobs in the same namespace.
|
||||
```
|
||||
|
||||
```bug
|
||||
```release-note:bug
|
||||
variables: Fixed a bug where getting empty results from listing variables resulted in a permission denied error.
|
||||
```
|
||||
|
|
30
CHANGELOG.md
30
CHANGELOG.md
|
@ -3,6 +3,7 @@
|
|||
SECURITY:
|
||||
|
||||
* event stream: Fixed a bug where ACL token expiration was not checked when emitting events [[GH-15013](https://github.com/hashicorp/nomad/issues/15013)]
|
||||
* variables: Fixed a bug where non-sensitive variable metadata (paths and raft indexes) was exposed via the template `nomadVarList` function to other jobs in the same namespace. [[GH-15012](https://github.com/hashicorp/nomad/issues/15012)]
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
|
@ -45,6 +46,7 @@ BUG FIXES:
|
|||
* ui: Fixed line charts to update x-axis (time) where relevant [[GH-14814](https://github.com/hashicorp/nomad/issues/14814)]
|
||||
* ui: Fixes an issue where service tags would bleed past the edge of the screen [[GH-14832](https://github.com/hashicorp/nomad/issues/14832)]
|
||||
* variables: Fixed a bug where Nomad version checking was not enforced for writing to variables [[GH-14912](https://github.com/hashicorp/nomad/issues/14912)]
|
||||
* variables: Fixed a bug where getting empty results from listing variables resulted in a permission denied error. [[GH-15012](https://github.com/hashicorp/nomad/issues/15012)]
|
||||
|
||||
## 1.4.1 (October 06, 2022)
|
||||
|
||||
|
@ -126,6 +128,23 @@ BUG FIXES:
|
|||
* template: Fixed a bug where the `splay` timeout was not being applied when `change_mode` was set to `script`. [[GH-14749](https://github.com/hashicorp/nomad/issues/14749)]
|
||||
* ui: Remove extra space when displaying the version in the menu footer. [[GH-14457](https://github.com/hashicorp/nomad/issues/14457)]
|
||||
|
||||
## 1.3.7 (October 26, 2022)
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
* deps: update go-memdb for goroutine leak fix [[GH-14983](https://github.com/hashicorp/nomad/issues/14983)]
|
||||
* docker: improve memory usage for docker_logger [[GH-14875](https://github.com/hashicorp/nomad/issues/14875)]
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* acl: Fixed a bug where Nomad version checking for one-time tokens was enforced across regions [[GH-14911](https://github.com/hashicorp/nomad/issues/14911)]
|
||||
* client: Fixed a bug where Nomad could not detect cores on recent RHEL systems [[GH-15027](https://github.com/hashicorp/nomad/issues/15027)]
|
||||
* consul: Fixed a bug where services continuously re-registered [[GH-14917](https://github.com/hashicorp/nomad/issues/14917)]
|
||||
* consul: atomically register checks on initial service registration [[GH-14944](https://github.com/hashicorp/nomad/issues/14944)]
|
||||
* deps: Update hashicorp/raft to v1.3.11; fixes unstable leadership on server removal [[GH-15021](https://github.com/hashicorp/nomad/issues/15021)]
|
||||
* nomad native service discovery: Ensure all local servers meet v.1.3.0 minimum before service registrations can be written [[GH-14924](https://github.com/hashicorp/nomad/issues/14924)]
|
||||
* scheduler: Fixed a bug where version checking for disconnected clients handling was enforced across regions [[GH-14911](https://github.com/hashicorp/nomad/issues/14911)]
|
||||
|
||||
## 1.3.6 (October 04, 2022)
|
||||
|
||||
SECURITY:
|
||||
|
@ -436,6 +455,17 @@ 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.14 (October 26, 2022)
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
* deps: update go-memdb for goroutine leak fix [[GH-14983](https://github.com/hashicorp/nomad/issues/14983)]
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* acl: Fixed a bug where Nomad version checking for one-time tokens was enforced across regions [[GH-14910](https://github.com/hashicorp/nomad/issues/14910)]
|
||||
* deps: Update hashicorp/raft to v1.3.11; fixes unstable leadership on server removal [[GH-15021](https://github.com/hashicorp/nomad/issues/15021)]
|
||||
|
||||
## 1.2.13 (October 04, 2022)
|
||||
|
||||
SECURITY:
|
||||
|
|
Loading…
Reference in New Issue