mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 02:15:43 +03:00
Post 1.10.4 release main (#26521)
* Generate files for 1.10.4 release * Prepare for next release * Merge release 1.10.4 files --------- Co-authored-by: hc-github-team-nomad-core <github-team-nomad-core@hashicorp.com>
This commit is contained in:
50
CHANGELOG.md
50
CHANGELOG.md
@@ -1,3 +1,25 @@
|
||||
## 1.10.4 (August 13, 2025)
|
||||
|
||||
SECURITY:
|
||||
|
||||
* build: Update Go to 1.24.3 to address CVE-2025-47906 [[GH-26451](https://github.com/hashicorp/nomad/issues/26451)]
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
* cli: Added monitor export cli command to retrieve journald logs or the contents of the Nomad log file for a given Nomad agent [[GH-26178](https://github.com/hashicorp/nomad/issues/26178)]
|
||||
* command: Add historical log capture to `nomad operator debug` command with `-log-lookback` and `-log-file-export` flags [[GH-26410](https://github.com/hashicorp/nomad/issues/26410)]
|
||||
* metrics: Added node_pool label to blocked_evals metrics [[GH-26215](https://github.com/hashicorp/nomad/issues/26215)]
|
||||
* sentinel (Enterprise): Added policy scope for csi-volumes [[GH-26438](https://github.com/hashicorp/nomad/issues/26438)]
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* alloc exec: Fixed executor panic when exec-ing a rootless raw_exec task [[GH-26401](https://github.com/hashicorp/nomad/issues/26401)]
|
||||
* cli: Fixed a bug where `acl policy self` command would output all policies when used with a management token [[GH-26396](https://github.com/hashicorp/nomad/issues/26396)]
|
||||
* client: run all allocrunner postrun (cleanup) hooks, even if any of them error [[GH-26271](https://github.com/hashicorp/nomad/issues/26271)]
|
||||
* consul: Add AllocIPv6 option to allow IPv6 address being used for service registration [[GH-25632](https://github.com/hashicorp/nomad/issues/25632)]
|
||||
* jobspec: Validate required hook field in lifecycle block [[GH-26285](https://github.com/hashicorp/nomad/issues/26285)]
|
||||
* services: Fixed a bug where Nomad services were deleted if a node missed heartbeats and recovered before allocs were migrated [[GH-26424](https://github.com/hashicorp/nomad/issues/26424)]
|
||||
|
||||
## 1.10.3 (July 08, 2025)
|
||||
|
||||
IMPROVEMENTS:
|
||||
@@ -157,6 +179,21 @@ BUG FIXES:
|
||||
* services: Fixed a bug where Nomad native services would not be correctly interpolated during in-place updates [[GH-25373](https://github.com/hashicorp/nomad/issues/25373)]
|
||||
* services: Fixed a bug where task-level services, checks, and identities could interpolate jobspec values from other tasks in the same group [[GH-25373](https://github.com/hashicorp/nomad/issues/25373)]
|
||||
|
||||
## 1.9.12 Enterprise (August 13, 2025)
|
||||
|
||||
SECURITY:
|
||||
|
||||
* build: Update Go to 1.24.3 to address CVE-2025-47906 [[GH-26451](https://github.com/hashicorp/nomad/issues/26451)]
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* alloc exec: Fixed executor panic when exec-ing a rootless raw_exec task [[GH-26401](https://github.com/hashicorp/nomad/issues/26401)]
|
||||
* client: run all allocrunner postrun (cleanup) hooks, even if any of them error [[GH-26271](https://github.com/hashicorp/nomad/issues/26271)]
|
||||
* consul: Add AllocIPv6 option to allow IPv6 address being used for service registration [[GH-25632](https://github.com/hashicorp/nomad/issues/25632)]
|
||||
* jobspec: Validate required hook field in lifecycle block [[GH-26285](https://github.com/hashicorp/nomad/issues/26285)]
|
||||
* reporting (Enterprise): Fixed a bug where older servers could panic if the leader upgrades to version with offline reporting
|
||||
* services: Fixed a bug where Nomad services were deleted if a node missed heartbeats and recovered before allocs were migrated [[GH-26424](https://github.com/hashicorp/nomad/issues/26424)]
|
||||
|
||||
## 1.9.11 Enterprise (July 08, 2025)
|
||||
|
||||
BUG FIXES:
|
||||
@@ -475,6 +512,19 @@ BUG FIXES:
|
||||
* template: Fixed a panic on client restart when using change_mode=script [[GH-24057](https://github.com/hashicorp/nomad/issues/24057)]
|
||||
* ui: Fixes an issue where variables paths would not let namespaced users write variables unless they also had wildcard namespace variable write permissions [[GH-24073](https://github.com/hashicorp/nomad/issues/24073)]
|
||||
|
||||
## 1.8.16 Enterprise (August 13, 2025)
|
||||
|
||||
SECURITY:
|
||||
|
||||
* build: Update Go to 1.24.3 to address CVE-2025-47906 [[GH-26451](https://github.com/hashicorp/nomad/issues/26451)]
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* client: run all allocrunner postrun (cleanup) hooks, even if any of them error [[GH-26271](https://github.com/hashicorp/nomad/issues/26271)]
|
||||
* jobspec: Validate required hook field in lifecycle block [[GH-26285](https://github.com/hashicorp/nomad/issues/26285)]
|
||||
* reporting (Enterprise): Fixed a bug where older servers could panic if the leader upgrades to version with offline reporting
|
||||
* services: Fixed a bug where Nomad services were deleted if a node missed heartbeats and recovered before allocs were migrated [[GH-26424](https://github.com/hashicorp/nomad/issues/26424)]
|
||||
|
||||
## 1.8.15 Enterprise (July 08, 2025)
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
@@ -46,7 +46,7 @@ PROTO_COMPARE_TAG ?= v1.0.3$(if $(findstring ent,$(GO_TAGS)),+ent,)
|
||||
# or backport version, without the leading "v". main should have the latest
|
||||
# published release here, and release branches should point to the latest
|
||||
# published release in their X.Y release line.
|
||||
LAST_RELEASE ?= 1.10.3
|
||||
LAST_RELEASE ?= 1.10.4
|
||||
|
||||
default: help
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -19,7 +19,7 @@ var (
|
||||
GitDescribe string
|
||||
|
||||
// The main version number that is being run at the moment.
|
||||
Version = "1.10.4"
|
||||
Version = "1.10.5"
|
||||
|
||||
// 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