Skip to content

Commit 24e3514

Browse files
chore(main): release 1.12.0 (#1312)
* chore(main): release 1.12.0 * update versions in pom.xml files and READMEs --------- Co-authored-by: hessjcg <[email protected]>
1 parent 13d003e commit 24e3514

File tree

20 files changed

+42
-28
lines changed

20 files changed

+42
-28
lines changed

CHANGELOG.md

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

3+
## [1.12.0](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.11.2...v1.12.0) (2023-06-12)
4+
5+
6+
### Features
7+
8+
* Use new certificate refresh logic ([5ad6103](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/commit/5ad61033dd598cf4b1170d159a0b822d04fc61fd))
9+
10+
11+
### Bug Fixes
12+
13+
* Fix refresh futures to avoid a hanging future when an api request fails during refresh. ([#1319](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/issues/1319)) ([1277b5e](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/commit/1277b5eddcccf1828c45dbf2a37f5bc1f0da8e5c))
14+
* log error when token is invalid ([#1313](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/issues/1313)) ([2130317](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/commit/2130317355ea4b4c7bfc1e1a62ee8e51168320a4)), closes [#1174](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/issues/1174)
15+
* Retry when attempting to get the auth token ([#1301](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/issues/1301)) ([2694cc5](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/commit/2694cc593c64175780282cdc8b7ea21bdb14aa19)), closes [#1288](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/issues/1288) [#1127](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/issues/1127)
16+
317
## [1.11.2](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.11.1...v1.11.2) (2023-05-10)
418

519

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>com.google.cloud.sql</groupId>
2525
<artifactId>jdbc-socket-factory-parent</artifactId>
26-
<version>1.11.3-SNAPSHOT</version>
26+
<version>1.12.0</version>
2727
</parent>
2828
<artifactId>jdbc-socket-factory-core</artifactId>
2929
<packaging>jar</packaging>

docs/jdbc-mariadb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Include the following in the project's `pom.xml`:
99
<dependency>
1010
    <groupId>com.google.cloud.sql</groupId>
1111
    <artifactId>mariadb-socket-factory</artifactId>
12-
    <version>1.11.2</version>
12+
    <version>1.12.0</version>
1313
</dependency>
1414
```
1515

1616
##### Gradle
1717
Include the following the project's `gradle.build`
1818
```gradle
19-
compile 'com.google.cloud.sql:mariadb-socket-factory:1.11.2'
19+
compile 'com.google.cloud.sql:mariadb-socket-factory:1.12.0'
2020
```
2121
*Note*: Also include the JDBC Driver for MariaDB, `org.mariadb.jdbc:mariadb-java-client:<LATEST-VERSION>`
2222

docs/jdbc-mysql.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@ are unsure, it is recommended to use the latest version of `mysql-connector-java
99

1010
| JDBC Driver Version | Cloud SQL Socket Factory Version |
1111
| -------------------------- | ---------------------------------------- |
12-
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.11.2 |
13-
| mysql-connector-java:5.1.x | mysql-socket-factory:1.11.2 |
12+
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.12.0 |
13+
| mysql-connector-java:5.1.x | mysql-socket-factory:1.12.0 |
1414

1515
##### Maven
1616
Include the following in the project's `pom.xml`:
1717
```maven-pom
1818
<dependency>
1919
    <groupId>com.google.cloud.sql</groupId>
2020
    <artifactId>mysql-socket-factory-connector-j-8</artifactId>
21-
    <version>1.11.2</version>
21+
    <version>1.12.0</version>
2222
</dependency>
2323
```
2424

2525
##### Gradle
2626
Include the following the project's `build.gradle`
2727
```gradle
28-
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.11.2'
28+
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.12.0'
2929
```
3030

3131
### Creating theJDBC URL

docs/jdbc-postgres.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Include the following in the project's `pom.xml`:
99
<dependency>
1010
    <groupId>com.google.cloud.sql</groupId>
1111
    <artifactId>postgres-socket-factory</artifactId>
12-
    <version>1.11.2</version>
12+
    <version>1.12.0</version>
1313
</dependency>
1414
```
1515

1616
##### Gradle
1717
Include the following the project's `gradle.build`
1818
```gradle
19-
compile 'com.google.cloud.sql:postgres-socket-factory:1.11.2'
19+
compile 'com.google.cloud.sql:postgres-socket-factory:1.12.0'
2020
```
2121
*Note*: Also include the JDBC Driver for PostgreSQL, `org.postgresql:postgresql:<LATEST-VERSION>`
2222

docs/jdbc-sqlserver.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ Include the following in the project's `pom.xml`:
1010
<dependency>
1111
    <groupId>com.google.cloud.sql</groupId>
1212
    <artifactId>cloud-sql-connector-jdbc-sqlserver</artifactId>
13-
    <version>1.11.2</version>
13+
    <version>1.12.0</version>
1414
</dependency>
1515
```
1616

1717
##### Gradle
1818
Include the following the project's `gradle.build`
1919
```gradle
20-
compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.11.2'
20+
compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.12.0'
2121
```
2222
*Note*: Also include the JDBC Driver for SQL Server, `com.microsoft.sqlserver:mssql-jdbc:<LATEST-VERSION>`.
2323

docs/r2dbc-mysql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ Include the following in the project's `pom.xml`:
1010
<dependency>
1111
<groupId>com.google.cloud.sql</groupId>
1212
<artifactId>cloud-sql-connector-r2dbc-mysql</artifactId>
13-
<version>1.11.2</version>
13+
<version>1.12.0</version>
1414
</dependency>
1515
```
1616

1717
##### Gradle
1818
Include the following the project's `build.gradle`
1919
```gradle
20-
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.11.2'
20+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.12.0'
2121
```
2222

2323
*Note: Also include the R2DBC Driver for MySQL, `io.asyncer:r2dbc-mysql:<LATEST-VERSION>`

docs/r2dbc-postgres.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Include the following in the project's `pom.xml`:
1010
<dependency>
1111
<groupId>com.google.cloud.sql</groupId>
1212
<artifactId>cloud-sql-connector-r2dbc-postgres</artifactId>
13-
<version>1.11.2</version>
13+
<version>1.12.0</version>
1414
</dependency>
1515
```
1616
##### Gradle
1717
Include the following the project's `build.gradle`
1818
```gradle
19-
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.11.2'
19+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.12.0'
2020
```
2121
*Note: Also include the R2DBC Driver for PostgreSQL, `io.r2dbc:r2dbc-postgresql:<LATEST-VERSION>`
2222

docs/r2dbc-sqlserver.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Include the following in the project's `pom.xml`:
1010
<dependency>
1111
<groupId>com.google.cloud.sql</groupId>
1212
<artifactId>cloud-sql-connector-r2dbc-sqlserver</artifactId>
13-
<version>1.11.2</version>
13+
<version>1.12.0</version>
1414
</dependency>
1515
```
1616
##### Gradle
1717
Include the following the project's `build.gradle`
1818
```gradle
19-
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.11.2'
19+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.12.0'
2020
```
2121
*Note: Also include the R2DBC Driver for SQL Server, `io.r2dbc:r2dbc-mssql:<LATEST-VERSION>`
2222

jdbc/mariadb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>com.google.cloud.sql</groupId>
2424
<artifactId>jdbc-socket-factory-parent</artifactId>
25-
<version>1.11.3-SNAPSHOT</version>
25+
<version>1.12.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828
<artifactId>mariadb-socket-factory</artifactId>

0 commit comments

Comments
 (0)