mirror of https://github.com/status-im/consul.git
update version, changelog, and submodules after 1.19.2, 1.18.4, 1.17.7 and 1.15.14 releases (#21676)
* update changelog * Update CHANGELOG.md * remove duplicate 1.19.1 section * update version * update go.mod with most recent modules
This commit is contained in:
parent
f187b92e3a
commit
ab794b59f8
46
CHANGELOG.md
46
CHANGELOG.md
|
@ -1,3 +1,49 @@
|
|||
## 1.19.2 (August 26, 2024)
|
||||
|
||||
SECURITY:
|
||||
|
||||
* ui: Upgrade modules with d3-color as a dependency to address denial of service issue in d3-color < 3.1.0 [[GH-21588](https://github.com/hashicorp/consul/issues/21588)]
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
* Use Envoy's default for a route's validate_clusters option, which is false. This fixes a case where non-existent clusters could cause a route to no longer route to any of its backends, including existing ones. [[GH-21587](https://github.com/hashicorp/consul/issues/21587)]
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* api-gateway: **(Enterprise only)** ensure clusters are properly created for JWT providers with a remote URI for the JWKS endpoint [[GH-21604](https://github.com/hashicorp/consul/issues/21604)]
|
||||
|
||||
## 1.18.4 Enterprise (August 26, 2024)
|
||||
|
||||
Enterprise LTS: Consul Enterprise 1.18 is a Long-Term Support (LTS) release.
|
||||
|
||||
SECURITY:
|
||||
* ui: Upgrade modules with d3-color as a dependency to address denial of service issue in d3-color < 3.1.0
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
* Use Envoy's default for a route's validate_clusters option, which is false. This fixes a case where non-existent clusters could cause a route to no longer route to any of its backends, including existing ones. [[GH-21587](https://github.com/hashicorp/consul/issues/21587)]
|
||||
|
||||
## 1.17.7 Enterprise (August 26, 2024)
|
||||
|
||||
SECURITY:
|
||||
* ui: Upgrade modules with d3-color as a dependency to address denial of service issue in d3-color < 3.1.0
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
* Use Envoy's default for a route's validate_clusters option, which is false. This fixes a case where non-existent clusters could cause a route to no longer route to any of its backends, including existing ones. [[GH-21587](https://github.com/hashicorp/consul/issues/21587)]
|
||||
|
||||
## 1.15.14 Enterprise (August 26, 2024)
|
||||
|
||||
Enterprise LTS: Consul Enterprise 1.15 is a Long-Term Support (LTS) release.
|
||||
|
||||
SECURITY:
|
||||
|
||||
* ui: Upgrade modules with d3-color as a dependency to address denial of service issue in d3-color < 3.1.0 [[GH-21588](https://github.com/hashicorp/consul/issues/21588)]
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
* Use Envoy's default for a route's validate_clusters option, which is false. This fixes a case where non-existent clusters could cause a route to no longer route to any of its backends, including existing ones. [[GH-21587](https://github.com/hashicorp/consul/issues/21587)]
|
||||
|
||||
## 1.19.1 (July 11, 2024)
|
||||
|
||||
SECURITY:
|
||||
|
|
|
@ -15,7 +15,7 @@ retract (
|
|||
|
||||
require (
|
||||
github.com/google/go-cmp v0.5.9
|
||||
github.com/hashicorp/consul/proto-public v0.6.1
|
||||
github.com/hashicorp/consul/proto-public v0.6.2
|
||||
github.com/hashicorp/consul/sdk v0.16.1
|
||||
github.com/hashicorp/go-cleanhttp v0.5.2
|
||||
github.com/hashicorp/go-hclog v1.5.0
|
||||
|
|
|
@ -13,7 +13,7 @@ retract v0.7.2 // tag was mutated
|
|||
require (
|
||||
github.com/envoyproxy/go-control-plane v0.12.0
|
||||
github.com/google/go-cmp v0.5.9
|
||||
github.com/hashicorp/consul/api v1.29.1
|
||||
github.com/hashicorp/consul/api v1.29.4
|
||||
github.com/hashicorp/consul/sdk v0.16.1
|
||||
github.com/hashicorp/go-hclog v1.5.0
|
||||
github.com/hashicorp/go-multierror v1.1.1
|
||||
|
|
8
go.mod
8
go.mod
|
@ -43,11 +43,11 @@ require (
|
|||
github.com/hashi-derek/grpc-proxy v0.0.0-20231207191910-191266484d75
|
||||
github.com/hashicorp/consul-awsauth v0.0.0-20220713182709-05ac1c5c2706
|
||||
github.com/hashicorp/consul-net-rpc v0.0.0-20221205195236-156cfab66a69
|
||||
github.com/hashicorp/consul/api v1.29.1
|
||||
github.com/hashicorp/consul/envoyextensions v0.7.0
|
||||
github.com/hashicorp/consul/proto-public v0.6.1
|
||||
github.com/hashicorp/consul/api v1.29.4
|
||||
github.com/hashicorp/consul/envoyextensions v0.7.3
|
||||
github.com/hashicorp/consul/proto-public v0.6.2
|
||||
github.com/hashicorp/consul/sdk v0.16.1
|
||||
github.com/hashicorp/consul/troubleshoot v0.6.1
|
||||
github.com/hashicorp/consul/troubleshoot v0.7.1
|
||||
github.com/hashicorp/go-bexpr v0.1.2
|
||||
github.com/hashicorp/go-checkpoint v0.5.0
|
||||
github.com/hashicorp/go-cleanhttp v0.5.2
|
||||
|
|
|
@ -6,8 +6,8 @@ toolchain go1.22.5
|
|||
|
||||
require (
|
||||
github.com/google/go-cmp v0.5.9
|
||||
github.com/hashicorp/consul/api v1.29.1
|
||||
github.com/hashicorp/consul/proto-public v0.6.1
|
||||
github.com/hashicorp/consul/api v1.29.4
|
||||
github.com/hashicorp/consul/proto-public v0.6.2
|
||||
github.com/hashicorp/consul/sdk v0.16.1
|
||||
github.com/hashicorp/consul/test/integration/consul-container v0.0.0-20230628201853-bdf4fad7c5a5
|
||||
github.com/hashicorp/consul/testing/deployer v0.0.0-20230811171106-4a0afb5d1373
|
||||
|
|
|
@ -12,9 +12,9 @@ require (
|
|||
github.com/evanphx/json-patch v4.12.0+incompatible
|
||||
github.com/go-jose/go-jose/v3 v3.0.3
|
||||
github.com/hashicorp/consul v1.16.1
|
||||
github.com/hashicorp/consul/api v1.29.1
|
||||
github.com/hashicorp/consul/envoyextensions v0.7.0
|
||||
github.com/hashicorp/consul/proto-public v0.6.1
|
||||
github.com/hashicorp/consul/api v1.29.4
|
||||
github.com/hashicorp/consul/envoyextensions v0.7.3
|
||||
github.com/hashicorp/consul/proto-public v0.6.2
|
||||
github.com/hashicorp/consul/sdk v0.16.1
|
||||
github.com/hashicorp/consul/testing/deployer v0.0.0-20230811171106-4a0afb5d1373
|
||||
github.com/hashicorp/go-cleanhttp v0.5.2
|
||||
|
|
|
@ -6,8 +6,8 @@ require (
|
|||
github.com/avast/retry-go v3.0.0+incompatible
|
||||
github.com/google/go-cmp v0.5.9
|
||||
github.com/hashicorp/consul-server-connection-manager v0.1.4
|
||||
github.com/hashicorp/consul/api v1.26.1
|
||||
github.com/hashicorp/consul/proto-public v0.6.1
|
||||
github.com/hashicorp/consul/api v1.29.4
|
||||
github.com/hashicorp/consul/proto-public v0.6.2
|
||||
github.com/hashicorp/consul/sdk v0.16.1
|
||||
github.com/hashicorp/go-cleanhttp v0.5.2
|
||||
github.com/hashicorp/go-hclog v1.5.0
|
||||
|
|
|
@ -23,8 +23,8 @@ retract (
|
|||
require (
|
||||
github.com/envoyproxy/go-control-plane v0.12.0
|
||||
github.com/envoyproxy/go-control-plane/xdsmatcher v0.0.0-20230524161521-aaaacbfbe53e
|
||||
github.com/hashicorp/consul/api v1.29.1
|
||||
github.com/hashicorp/consul/envoyextensions v0.7.0
|
||||
github.com/hashicorp/consul/api v1.29.4
|
||||
github.com/hashicorp/consul/envoyextensions v0.7.3
|
||||
github.com/hashicorp/consul/sdk v0.16.1
|
||||
github.com/stretchr/testify v1.8.4
|
||||
google.golang.org/protobuf v1.33.0
|
||||
|
|
|
@ -1 +1 @@
|
|||
1.20.0-dev
|
||||
1.19.3-dev
|
||||
|
|
Loading…
Reference in New Issue