Skip to content

Commit b59446a

Browse files
chore(main): release 1.14.1 (#1531)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent fd7e9fd commit b59446a

File tree

19 files changed

+118
-46
lines changed

19 files changed

+118
-46
lines changed

CHANGELOG.md

Lines changed: 72 additions & 0 deletions
Large diffs are not rendered by default.

core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
<parent>
2424
<groupId>com.google.cloud.sql</groupId>
2525
<artifactId>jdbc-socket-factory-parent</artifactId>
26-
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
26+
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
2727
</parent>
2828
<artifactId>jdbc-socket-factory-core</artifactId>
29-
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-core:current} -->
29+
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-core:current} -->
3030
<packaging>jar</packaging>
3131

3232
<name>Cloud SQL Core Socket Factory (Core Library, don't depend on this directly)</name>

docs/jdbc-mariadb.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>mariadb-socket-factory</artifactId>
13-
    <version>1.13.1</version>
13+
    <version>1.14.1</version>
1414
</dependency>
1515
```
1616

1717
##### Gradle
1818
Include the following the project's `gradle.build`
1919
```gradle
20-
compile 'com.google.cloud.sql:mariadb-socket-factory:1.13.1'
20+
compile 'com.google.cloud.sql:mariadb-socket-factory:1.14.1'
2121
```
2222
*Note*: Also include the JDBC Driver for MariaDB, `org.mariadb.jdbc:mariadb-java-client:<LATEST-VERSION>`
2323
<!-- {x-release-please-end} -->

docs/jdbc-mysql.md

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

1111
| JDBC Driver Version | Cloud SQL Socket Factory Version |
1212
| -------------------------- | ---------------------------------------- |
13-
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.13.1 |
14-
| mysql-connector-java:5.1.x | mysql-socket-factory:1.13.1 |
13+
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.14.1 |
14+
| mysql-connector-java:5.1.x | mysql-socket-factory:1.14.1 |
1515

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

2626
##### Gradle
2727
Include the following the project's `build.gradle`
2828
```gradle
29-
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.13.1'
29+
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.14.1'
3030
```
3131
<!-- {x-release-please-end} -->
3232

docs/jdbc-postgres.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>postgres-socket-factory</artifactId>
13-
    <version>1.13.1</version>
13+
    <version>1.14.1</version>
1414
</dependency>
1515
```
1616

1717
##### Gradle
1818
Include the following the project's `gradle.build`
1919
```gradle
20-
compile 'com.google.cloud.sql:postgres-socket-factory:1.13.1'
20+
compile 'com.google.cloud.sql:postgres-socket-factory:1.14.1'
2121
```
2222
*Note*: Also include the JDBC Driver for PostgreSQL, `org.postgresql:postgresql:<LATEST-VERSION>`
2323
<!-- {x-release-please-end} -->

docs/jdbc-sqlserver.md

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

1818
##### Gradle
1919
Include the following the project's `gradle.build`
2020
```gradle
21-
compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.13.1'
21+
compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.14.1'
2222
```
2323
*Note*: Also include the JDBC Driver for SQL Server, `com.microsoft.sqlserver:mssql-jdbc:<LATEST-VERSION>`.
2424
<!-- {x-release-please-end} -->

docs/r2dbc-mysql.md

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

1818
##### Gradle
1919
Include the following the project's `build.gradle`
2020
```gradle
21-
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.13.1'
21+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.14.1'
2222
```
2323

2424
*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
@@ -11,13 +11,13 @@ Include the following in the project's `pom.xml`:
1111
<dependency>
1212
<groupId>com.google.cloud.sql</groupId>
1313
<artifactId>cloud-sql-connector-r2dbc-postgres</artifactId>
14-
<version>1.13.1</version>
14+
<version>1.14.1</version>
1515
</dependency>
1616
```
1717
##### Gradle
1818
Include the following the project's `build.gradle`
1919
```gradle
20-
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.13.1'
20+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.14.1'
2121
```
2222
*Note: Also include the R2DBC Driver for PostgreSQL, `io.r2dbc:r2dbc-postgresql:<LATEST-VERSION>`
2323
<!-- {x-release-please-end} -->

docs/r2dbc-sqlserver.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ Include the following in the project's `pom.xml`:
1111
<dependency>
1212
<groupId>com.google.cloud.sql</groupId>
1313
<artifactId>cloud-sql-connector-r2dbc-sqlserver</artifactId>
14-
<version>1.13.1</version>
14+
<version>1.14.1</version>
1515
</dependency>
1616
```
1717
##### Gradle
1818
Include the following the project's `build.gradle`
1919
```gradle
20-
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.13.1'
20+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.14.1'
2121
```
2222
*Note: Also include the R2DBC Driver for SQL Server, `io.r2dbc:r2dbc-mssql:<LATEST-VERSION>`
2323
<!-- {x-release-please-end} -->

jdbc/mariadb/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
<parent>
2323
<groupId>com.google.cloud.sql</groupId>
2424
<artifactId>jdbc-socket-factory-parent</artifactId>
25-
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
25+
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828
<artifactId>mariadb-socket-factory</artifactId>
29-
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:mariadb-socket-factory:current} -->
29+
<version>1.14.1</version><!-- {x-version-update:mariadb-socket-factory:current} -->
3030
<packaging>jar</packaging>
3131

3232
<name>Cloud SQL MariaDB Socket Factory</name>

0 commit comments

Comments
 (0)