Skip to content

Commit 5d2aa72

Browse files
authored
post release changes (#22950) (#22980)
1 parent c0922f9 commit 5d2aa72

File tree

7 files changed

+36
-10
lines changed

7 files changed

+36
-10
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## 1.22.0-rc2+ent (October 15, 2025)
2+
3+
SECURITY:
4+
5+
* security: Adding warning when remote/local script checks are enabled without enabling ACL's [[GH-22877](https://github.com/hashicorp/consul/issues/22877)]
6+
* security: Improved validation of the Content-Length header in the Consul KV endpoint to prevent potential denial of service attacks[CVE-2025-11374]() [[GH-22916](https://github.com/hashicorp/consul/issues/22916)]
7+
* security: adding a maximum Content-Length on the event endpoint to fix denial-of-service (DoS) attacks. This resolves [CVE-2025-11375](https://nvd.nist.gov/vuln/detail/CVE-2025-11375). [[GH-22836](https://github.com/hashicorp/consul/issues/22836)]
8+
* security: breaking change - adding a key name validation on the key/value endpoint along side with the DisableKVKeyValidation config to disable/enable it to fix path traversal attacks. This resolves [CVE-2025-11392](https://nvd.nist.gov/vuln/detail/CVE-2025-11392). [[GH-22850](https://github.com/hashicorp/consul/issues/22850)]
9+
10+
BUG FIXES:
11+
12+
* cmd: Fix `consul operator utilization --help` to show only available options without extra parameters. [[GH-22912](https://github.com/hashicorp/consul/issues/22912)]
13+
14+
## 1.22.0-rc2 (October 15, 2025)
15+
16+
SECURITY:
17+
18+
* security: Adding warning when remote/local script checks are enabled without enabling ACL's [[GH-22877](https://github.com/hashicorp/consul/issues/22877)]
19+
* security: Improved validation of the Content-Length header in the Consul KV endpoint to prevent potential denial of service attacks[CVE-2025-11374]() [[GH-22916](https://github.com/hashicorp/consul/issues/22916)]
20+
* security: adding a maximum Content-Length on the event endpoint to fix denial-of-service (DoS) attacks. This resolves [CVE-2025-11375](https://nvd.nist.gov/vuln/detail/CVE-2025-11375). [[GH-22836](https://github.com/hashicorp/consul/issues/22836)]
21+
* security: breaking change - adding a key name validation on the key/value endpoint along side with the DisableKVKeyValidation config to disable/enable it to fix path traversal attacks. This resolves [CVE-2025-11392](https://nvd.nist.gov/vuln/detail/CVE-2025-11392). [[GH-22850](https://github.com/hashicorp/consul/issues/22850)]
22+
23+
BUG FIXES:
24+
25+
* cmd: Fix `consul operator utilization --help` to show only available options without extra parameters. [[GH-22912](https://github.com/hashicorp/consul/issues/22912)]
26+
127
## 1.22.0-rc1+ent (September 30, 2025)
228

329
SECURITY:

envoyextensions/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/envoyproxy/go-control-plane v0.13.4
1515
github.com/envoyproxy/go-control-plane/envoy v1.32.3
1616
github.com/google/go-cmp v0.6.0
17-
github.com/hashicorp/consul/api v1.33.0-rc1
17+
github.com/hashicorp/consul/api v1.33.0-rc2
1818
github.com/hashicorp/consul/sdk v0.17.0-rc1
1919
github.com/hashicorp/go-hclog v1.5.0
2020
github.com/hashicorp/go-multierror v1.1.1

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ require (
4747
github.com/hashicorp/cap v0.10.0
4848
github.com/hashicorp/consul-awsauth v0.0.0-20250825122907-9e35fe9ded3a
4949
github.com/hashicorp/consul-net-rpc v0.0.0-20221205195236-156cfab66a69
50-
github.com/hashicorp/consul/api v1.33.0-rc1
51-
github.com/hashicorp/consul/envoyextensions v0.9.0-rc1
50+
github.com/hashicorp/consul/api v1.33.0-rc2
51+
github.com/hashicorp/consul/envoyextensions v0.9.0-rc2
5252
github.com/hashicorp/consul/proto-public v0.7.0-rc1
5353
github.com/hashicorp/consul/sdk v0.17.0-rc1
54-
github.com/hashicorp/consul/troubleshoot v0.8.0-rc1
54+
github.com/hashicorp/consul/troubleshoot v0.8.0-rc2
5555
github.com/hashicorp/go-bexpr v0.1.2
5656
github.com/hashicorp/go-checkpoint v0.5.0
5757
github.com/hashicorp/go-cleanhttp v0.5.2

test-integ/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.25.3
44

55
require (
66
github.com/google/go-cmp v0.7.0
7-
github.com/hashicorp/consul/api v1.33.0-rc1
7+
github.com/hashicorp/consul/api v1.33.0-rc2
88
github.com/hashicorp/consul/proto-public v0.7.0-rc1
99
github.com/hashicorp/consul/sdk v0.17.0-rc1
1010
github.com/hashicorp/consul/test/integration/consul-container v0.0.0-20230628201853-bdf4fad7c5a5

test/integration/consul-container/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ require (
1111
github.com/go-jose/go-jose/v3 v3.0.4
1212
github.com/go-viper/mapstructure/v2 v2.4.0
1313
github.com/hashicorp/consul v1.16.1
14-
github.com/hashicorp/consul/api v1.33.0-rc1
15-
github.com/hashicorp/consul/envoyextensions v0.9.0-rc1
14+
github.com/hashicorp/consul/api v1.33.0-rc2
15+
github.com/hashicorp/consul/envoyextensions v0.9.0-rc2
1616
github.com/hashicorp/consul/sdk v0.17.0-rc1
1717
github.com/hashicorp/consul/testing/deployer v0.0.0-20230811171106-4a0afb5d1373
1818
github.com/hashicorp/go-cleanhttp v0.5.2

testing/deployer/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/avast/retry-go v3.0.0+incompatible
77
github.com/google/go-cmp v0.7.0
88
github.com/hashicorp/consul-server-connection-manager v0.1.12
9-
github.com/hashicorp/consul/api v1.33.0-rc1
9+
github.com/hashicorp/consul/api v1.33.0-rc2
1010
github.com/hashicorp/consul/proto-public v0.7.0-rc1
1111
github.com/hashicorp/consul/sdk v0.17.0-rc1
1212
github.com/hashicorp/go-cleanhttp v0.5.2

troubleshoot/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ require (
2626
github.com/envoyproxy/go-control-plane/envoy v1.32.4
2727
github.com/envoyproxy/go-control-plane/ratelimit v0.1.0
2828
github.com/envoyproxy/go-control-plane/xdsmatcher v0.13.4
29-
github.com/hashicorp/consul/api v1.33.0-rc1
30-
github.com/hashicorp/consul/envoyextensions v0.9.0-rc1
29+
github.com/hashicorp/consul/api v1.33.0-rc2
30+
github.com/hashicorp/consul/envoyextensions v0.9.0-rc2
3131
github.com/hashicorp/consul/sdk v0.17.0-rc1
3232
github.com/stretchr/testify v1.10.0
3333
google.golang.org/protobuf v1.36.4

0 commit comments

Comments
 (0)