diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e9af5f69f..43464dcfc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## UNRELEASED +## 0.48.0 (September 01, 2022) FEATURES: * MaxInboundConnections in service-defaults CRD @@ -11,7 +11,8 @@ FEATURES: BREAKING CHANGES: * Kubernetes 1.24 Support - * Users deploying multiple services to the same Pod (multiport) on Kubernetes 1.24+ must also deploy a Kubernetes Secret for each ServiceAccount associated with the Consul service. The name of the Secret must match the ServiceAccount name and be of type `kubernetes.io/service-account-token` [[GH-1431](https://github.com/hashicorp/consul-k8s/pull/1431)] + * Users deploying multiple services to the same Pod (multiport) on Kubernetes 1.24 must also deploy a Kubernetes Secret for each ServiceAccount associated with the Consul service. The name of the Secret must match the ServiceAccount name and be of type `kubernetes.io/service-account-token` [[GH-1431](https://github.com/hashicorp/consul-k8s/pull/1431)] + * Kubernetes 1.19 and 1.20 are no longer supported. Example: @@ -33,6 +34,9 @@ BREAKING CHANGES: type: kubernetes.io/service-account-token ``` +* Control Plane + * Rename flag `server-address` to `token-server-address` in the `inject-connect` subcommand to avoid overloading the context of the `server-address` flag. [[GH-1426](https://github.com/hashicorp/consul-k8s/pull/1426)] + IMPROVEMENTS: * CLI: * Display clusters by their short names rather than FQDNs for the `proxy read` command. [[GH-1412](https://github.com/hashicorp/consul-k8s/pull/1412)] @@ -40,12 +44,15 @@ IMPROVEMENTS: * Display a warning when a user passes a field and table filter combination to `proxy read` where the given field is not present in any of the output tables. [[GH-1412](https://github.com/hashicorp/consul-k8s/pull/1412)] * Extend the timeout for `consul-k8s proxy read` to establish a connection from 5s to 10s. [[GH-1442](https://github.com/hashicorp/consul-k8s/pull/1442)] * Expand the set of Envoy Listener Filters that may be parsed and output to the Listeners table. [[GH-1442](https://github.com/hashicorp/consul-k8s/pull/1442)] +* Helm: + * The default Envoy proxy image is now `envoyproxy/envoy:v1.23.1`. [[GH-1473](https://github.com/hashicorp/consul-k8s/pull/1473)] BUG FIXES: * Helm * API Gateway: Configure ACL auth for controller correctly when deployed in secondary datacenter with federation enabled [[GH-1462](https://github.com/hashicorp/consul-k8s/pull/1462)] * CLI * Fix issue where SNI filters for Terminating Gateways showed up as blank lines. [[GH-1442](https://github.com/hashicorp/consul-k8s/pull/1442)] + * Fix issue where Logical DNS endpoints were being displayed alongside cluster names. [[GH-1452](https://github.com/hashicorp/consul-k8s/pull/1452)] ## 0.47.1 (August 12, 2022) diff --git a/charts/consul/Chart.yaml b/charts/consul/Chart.yaml index 223400f17a..a2209ac9b6 100644 --- a/charts/consul/Chart.yaml +++ b/charts/consul/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: consul -version: 0.47.1 +version: 0.48.0 appVersion: 1.13.1 kubeVersion: ">=1.21.0-0" description: Official HashiCorp Consul Chart @@ -15,9 +15,9 @@ annotations: - name: consul image: hashicorp/consul:1.13.1 - name: consul-k8s-control-plane - image: hashicorp/consul-k8s-control-plane:0.47.1 + image: hashicorp/consul-k8s-control-plane:0.48.0 - name: envoy - image: envoyproxy/envoy:v1.22.4 + image: envoyproxy/envoy:v1.23.1 artifacthub.io/license: MPL-2.0 artifacthub.io/links: | - name: Documentation diff --git a/charts/consul/values.yaml b/charts/consul/values.yaml index 7f00ef6ef2..f94135e5e1 100644 --- a/charts/consul/values.yaml +++ b/charts/consul/values.yaml @@ -129,7 +129,7 @@ global: # image that is used for functionality such as catalog sync. # This can be overridden per component. # @default: hashicorp/consul-k8s-control-plane: - imageK8S: hashicorp/consul-k8s-control-plane:0.47.1 + imageK8S: hashicorp/consul-k8s-control-plane:0.48.0 # The name of the datacenter that the agents should # register as. This can't be changed once the Consul cluster is up and running @@ -629,7 +629,7 @@ global: # connect-injected sidecar proxies and mesh, terminating, and ingress gateways. # See https://www.consul.io/docs/connect/proxies/envoy for full compatibility matrix between Consul and Envoy. # @default: envoyproxy/envoy-alpine: - imageEnvoy: "envoyproxy/envoy:v1.22.4" + imageEnvoy: "envoyproxy/envoy:v1.23.1" # Configuration for running this Helm chart on the Red Hat OpenShift platform. # This Helm chart currently supports OpenShift v4.x+. diff --git a/cli/version/version.go b/cli/version/version.go index 9106f59bc7..44adbf8746 100644 --- a/cli/version/version.go +++ b/cli/version/version.go @@ -14,12 +14,12 @@ var ( // // Version must conform to the format expected by // github.com/hashicorp/go-version for tests to work. - Version = "0.47.1" + Version = "0.48.0" // 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 = "" ) // GetHumanVersion composes the parts of the version in a way that's suitable diff --git a/control-plane/version/version.go b/control-plane/version/version.go index 9106f59bc7..44adbf8746 100644 --- a/control-plane/version/version.go +++ b/control-plane/version/version.go @@ -14,12 +14,12 @@ var ( // // Version must conform to the format expected by // github.com/hashicorp/go-version for tests to work. - Version = "0.47.1" + Version = "0.48.0" // 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 = "" ) // GetHumanVersion composes the parts of the version in a way that's suitable