From 621c192e29e31bfd938d1a088b52f86dc3090ac8 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 15:37:23 +0000 Subject: [PATCH 1/2] chore(main): release 1.4.0 --- CHANGELOG.md | 8 ++++++++ version.txt | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d586ee5b..0f373cd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.4.0](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/compare/v1.3.0...v1.4.0) (2023-11-14) + + +### Features + +* Add support for Service Account Impersonation. ([#445](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/445)) ([4d8e277](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/commit/4d8e2777dd5ab2bcbba06cfdcc3a3320bea91a46)), closes [#392](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/392) +* Allow users to set quiet logging on proxy container ([#464](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/464)) ([1eaf019](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/commit/1eaf019f3c2871dfd0e72b3eacd712712f7838ca)), closes [#402](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/402) + ## [1.3.0](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/compare/v1.2.0...v1.3.0) (2023-10-17) diff --git a/version.txt b/version.txt index f0bb29e7..88c5fb89 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.3.0 +1.4.0 From a427a4ca1bc4ce433285a76c77d3a3a7050bcf51 Mon Sep 17 00:00:00 2001 From: Jonathan Hess Date: Tue, 14 Nov 2023 12:28:28 -0700 Subject: [PATCH 2/2] chore: generated code with new version --- installer/cloud-sql-proxy-operator.yaml | 2 +- installer/install.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/cloud-sql-proxy-operator.yaml b/installer/cloud-sql-proxy-operator.yaml index 222c5661..1a16dfa3 100644 --- a/installer/cloud-sql-proxy-operator.yaml +++ b/installer/cloud-sql-proxy-operator.yaml @@ -1499,7 +1499,7 @@ spec: - --leader-elect command: - /manager - image: gcr.io/cloud-sql-connectors/cloud-sql-operator/cloud-sql-proxy-operator:1.3.0 + image: gcr.io/cloud-sql-connectors/cloud-sql-operator/cloud-sql-proxy-operator:1.4.0 livenessProbe: httpGet: path: /healthz diff --git a/installer/install.sh b/installer/install.sh index 9dd9e176..2cd5155d 100644 --- a/installer/install.sh +++ b/installer/install.sh @@ -16,8 +16,8 @@ set -euxo # exit 1 from the script when command fails -# If CSQL_OPERATOR_VERSION is not set, use the release version: v1.3.0. -CSQL_OPERATOR_VERSION="${CSQL_OPERATOR_VERSION:-v1.3.0}" +# If CSQL_OPERATOR_VERSION is not set, use the release version: v1.4.0. +CSQL_OPERATOR_VERSION="${CSQL_OPERATOR_VERSION:-v1.4.0}" # If CSQL_CERT_MANAGER_VERSION is not set, use the default: v1.13.2. CSQL_CERT_MANAGER_VERSION="${CSQL_CERT_MANAGER_VERSION:-v1.13.2}"