Generate files for 1.6.5 release
This commit is contained in:
parent
8d3049b49b
commit
6d44ce9f09
|
@ -7,7 +7,7 @@ project "nomad" {
|
|||
team = "nomad"
|
||||
|
||||
slack {
|
||||
notification_channel = "C03B5EWFW01"
|
||||
notification_channel = "CUYKT2A73"
|
||||
}
|
||||
|
||||
github {
|
||||
|
|
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,3 +1,14 @@
|
|||
## 1.6.5 (December 13, 2023)
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* cli: Fix a bug in the `var put` command which prevented combining items as CLI arguments and other parameters as flags [[GH-19423](https://github.com/hashicorp/nomad/issues/19423)]
|
||||
* client: remove incomplete allocation entries from client state database during client restarts [[GH-16638](https://github.com/hashicorp/nomad/issues/16638)]
|
||||
* connect: Fixed a bug where deployments would not wait for Connect sidecar task health checks to pass [[GH-19334](https://github.com/hashicorp/nomad/issues/19334)]
|
||||
* consul: uses token namespace to fetch policies for verification [[GH-18516](https://github.com/hashicorp/nomad/issues/18516)]
|
||||
* csi: Added validation to `csi_plugin` blocks to prevent `stage_publish_base_dir` from being a subdirectory of `mount_dir` [[GH-19441](https://github.com/hashicorp/nomad/issues/19441)]
|
||||
* metrics: Revert upgrade of `go-metrics` to fix an issue where metrics from dependencies, such as raft, were no longer emitted [[GH-19375](https://github.com/hashicorp/nomad/issues/19375)]
|
||||
|
||||
## 1.6.4 (December 07, 2023)
|
||||
|
||||
BREAKING CHANGES:
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
|
@ -24,7 +24,7 @@ var (
|
|||
// 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
|
||||
// such as "dev" (in development), "beta", "rc1", etc.
|
||||
VersionPrerelease = "dev"
|
||||
VersionPrerelease = ""
|
||||
|
||||
// VersionMetadata is metadata further describing the build type.
|
||||
VersionMetadata = ""
|
||||
|
|
Loading…
Reference in New Issue