mirror of https://github.com/status-im/consul.git
Add 1.14.1 release updates. (#15514)
Add post-release changes for 1.14.1 updates.
This commit is contained in:
parent
ef235c7c36
commit
8079686bf0
|
@ -1,3 +1,10 @@
|
|||
## 1.14.1 (November 21, 2022)
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
* cli: Fix issue where `consul connect envoy` incorrectly uses the HTTPS API configuration for xDS connections. [[GH-15466](https://github.com/hashicorp/consul/issues/15466)]
|
||||
* sdk: Fix SDK testutil backwards compatibility by only configuring grpc_tls port for new Consul versions. [[GH-15423](https://github.com/hashicorp/consul/issues/15423)]
|
||||
|
||||
## 1.14.0 (November 15, 2022)
|
||||
|
||||
KNOWN ISSUES:
|
||||
|
|
|
@ -6,7 +6,7 @@ replace github.com/hashicorp/consul/sdk => ../sdk
|
|||
|
||||
require (
|
||||
github.com/google/go-cmp v0.5.7
|
||||
github.com/hashicorp/consul/sdk v0.12.0
|
||||
github.com/hashicorp/consul/sdk v0.13.0
|
||||
github.com/hashicorp/go-cleanhttp v0.5.1
|
||||
github.com/hashicorp/go-hclog v0.12.0
|
||||
github.com/hashicorp/go-rootcerts v1.0.2
|
||||
|
|
4
go.mod
4
go.mod
|
@ -31,9 +31,9 @@ require (
|
|||
github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4
|
||||
github.com/hashicorp/consul-awsauth v0.0.0-20220713182709-05ac1c5c2706
|
||||
github.com/hashicorp/consul-net-rpc v0.0.0-20220307172752-3602954411b4
|
||||
github.com/hashicorp/consul/api v1.16.0
|
||||
github.com/hashicorp/consul/api v1.17.0
|
||||
github.com/hashicorp/consul/proto-public v0.2.0
|
||||
github.com/hashicorp/consul/sdk v0.12.0
|
||||
github.com/hashicorp/consul/sdk v0.13.0
|
||||
github.com/hashicorp/go-bexpr v0.1.2
|
||||
github.com/hashicorp/go-checkpoint v0.5.0
|
||||
github.com/hashicorp/go-cleanhttp v0.5.1
|
||||
|
|
|
@ -6,8 +6,8 @@ require (
|
|||
github.com/docker/docker v20.10.11+incompatible
|
||||
github.com/docker/go-connections v0.4.0
|
||||
github.com/hashicorp/consul v1.13.3
|
||||
github.com/hashicorp/consul/api v1.16.0
|
||||
github.com/hashicorp/consul/sdk v0.12.0
|
||||
github.com/hashicorp/consul/api v1.17.0
|
||||
github.com/hashicorp/consul/sdk v0.13.0
|
||||
github.com/hashicorp/serf v0.10.1
|
||||
github.com/itchyny/gojq v0.12.9
|
||||
github.com/pkg/errors v0.9.1
|
||||
|
|
Loading…
Reference in New Issue