Skip to content

Commit 944c4df

Browse files
chore(main): release 1.2.0 (#430)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Jonathan Hess <[email protected]> Co-authored-by: Jonathan Hess (he/him) <[email protected]>
1 parent bc94669 commit 944c4df

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [1.2.0](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/compare/v1.1.0...v1.2.0) (2023-09-20)
4+
5+
6+
### Features
7+
8+
* Configure proxy container for graceful termination. ([#425](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/425)) ([0e0bb40](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/commit/0e0bb40339f5d4ea2659f81cc4f55ea15a2e3938)), closes [#361](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/361)
9+
10+
11+
### Bug Fixes
12+
13+
* IAM api must be enabled before it is used ([#429](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/429)) ([0764b8b](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/commit/0764b8b71b0c8ad0f5d97753b0587039bd7c47a9))
14+
315
## [1.1.0](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/compare/v1.0.2...v1.1.0) (2023-07-20)
416

517

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Run the following command to install the cloud sql proxy operator into
4242
your kubernetes cluster:
4343

4444
```shell
45-
kubectl apply -f https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy-operator/v1.0.0/cloud-sql-proxy-operator.yaml
45+
kubectl apply -f https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy-operator/v1.2.0/cloud-sql-proxy-operator.yaml
4646
```
4747

4848
Confirm that the operator is installed and running by listing its pods:

docs/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Run the following command to install the cloud sql proxy operator into
2020
your kubernetes cluster:
2121

2222
```shell
23-
curl https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy-operator/v1.0.0/install.sh | bash
23+
curl https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy-operator/v1.2.0/install.sh | bash
2424
```
2525

2626
This will use `helm` to install the `cert-manager` operator, a prerequisite. Then

installer/cloud-sql-proxy-operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1487,7 +1487,7 @@ spec:
14871487
- --leader-elect
14881488
command:
14891489
- /manager
1490-
image: gcr.io/cloud-sql-connectors/cloud-sql-operator/cloud-sql-proxy-operator:1.1.0
1490+
image: gcr.io/cloud-sql-connectors/cloud-sql-operator/cloud-sql-proxy-operator:1.2.0
14911491
livenessProbe:
14921492
httpGet:
14931493
path: /healthz

installer/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
set -euxo # exit 1 from the script when command fails
1818

19-
# If CSQL_OPERATOR_VERSION is not set, use the release version: v1.1.0.
20-
CSQL_OPERATOR_VERSION="${CSQL_OPERATOR_VERSION:-v1.1.0}"
19+
# If CSQL_OPERATOR_VERSION is not set, use the release version: v1.2.0.
20+
CSQL_OPERATOR_VERSION="${CSQL_OPERATOR_VERSION:-v1.2.0}"
2121

2222
# If CSQL_CERT_MANAGER_VERSION is not set, use the default: v1.13.0.
2323
CSQL_CERT_MANAGER_VERSION="${CSQL_CERT_MANAGER_VERSION:-v1.13.0}"

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.0
1+
1.2.0

0 commit comments

Comments
 (0)