Skip to content

Commit

Permalink
chore(main): release 1.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
release-please[bot] authored Oct 10, 2023
1 parent 40aa650 commit 66cd10b
Show file tree
Hide file tree
Showing 19 changed files with 117 additions and 46 deletions.
71 changes: 71 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
</parent>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-core:current} -->
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-core:current} -->
<packaging>jar</packaging>

<name>Cloud SQL Core Socket Factory (Core Library, don't depend on this directly)</name>
Expand Down
4 changes: 2 additions & 2 deletions docs/jdbc-mariadb.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ Include the following in the project's `pom.xml`:
<dependency>
    <groupId>com.google.cloud.sql</groupId>
    <artifactId>mariadb-socket-factory</artifactId>
    <version>1.13.1</version>
    <version>1.14.1</version>
</dependency>
```

##### Gradle
Include the following the project's `gradle.build`
```gradle
compile 'com.google.cloud.sql:mariadb-socket-factory:1.13.1'
compile 'com.google.cloud.sql:mariadb-socket-factory:1.14.1'
```
*Note*: Also include the JDBC Driver for MariaDB, `org.mariadb.jdbc:mariadb-java-client:<LATEST-VERSION>`
<!-- {x-release-please-end} -->
Expand Down
8 changes: 4 additions & 4 deletions docs/jdbc-mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ are unsure, it is recommended to use the latest version of `mysql-connector-java

| JDBC Driver Version | Cloud SQL Socket Factory Version |
| -------------------------- | ---------------------------------------- |
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.13.1 |
| mysql-connector-java:5.1.x | mysql-socket-factory:1.13.1 |
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.14.1 |
| mysql-connector-java:5.1.x | mysql-socket-factory:1.14.1 |

##### Maven
Include the following in the project's `pom.xml`:
```maven-pom
<dependency>
    <groupId>com.google.cloud.sql</groupId>
    <artifactId>mysql-socket-factory-connector-j-8</artifactId>
    <version>1.13.1</version>
    <version>1.14.1</version>
</dependency>
```

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

Expand Down
4 changes: 2 additions & 2 deletions docs/jdbc-postgres.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ Include the following in the project's `pom.xml`:
<dependency>
    <groupId>com.google.cloud.sql</groupId>
    <artifactId>postgres-socket-factory</artifactId>
    <version>1.13.1</version>
    <version>1.14.1</version>
</dependency>
```

##### Gradle
Include the following the project's `gradle.build`
```gradle
compile 'com.google.cloud.sql:postgres-socket-factory:1.13.1'
compile 'com.google.cloud.sql:postgres-socket-factory:1.14.1'
```
*Note*: Also include the JDBC Driver for PostgreSQL, `org.postgresql:postgresql:<LATEST-VERSION>`
<!-- {x-release-please-end} -->
Expand Down
4 changes: 2 additions & 2 deletions docs/jdbc-sqlserver.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ Include the following in the project's `pom.xml`:
<dependency>
    <groupId>com.google.cloud.sql</groupId>
    <artifactId>cloud-sql-connector-jdbc-sqlserver</artifactId>
    <version>1.13.1</version>
    <version>1.14.1</version>
</dependency>
```

##### Gradle
Include the following the project's `gradle.build`
```gradle
compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.13.1'
compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.14.1'
```
*Note*: Also include the JDBC Driver for SQL Server, `com.microsoft.sqlserver:mssql-jdbc:<LATEST-VERSION>`.
<!-- {x-release-please-end} -->
Expand Down
4 changes: 2 additions & 2 deletions docs/r2dbc-mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ Include the following in the project's `pom.xml`:
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-r2dbc-mysql</artifactId>
<version>1.13.1</version>
<version>1.14.1</version>
</dependency>
```

##### Gradle
Include the following the project's `build.gradle`
```gradle
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.13.1'
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.14.1'
```

*Note: Also include the R2DBC Driver for MySQL, `io.asyncer:r2dbc-mysql:<LATEST-VERSION>`
Expand Down
4 changes: 2 additions & 2 deletions docs/r2dbc-postgres.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ Include the following in the project's `pom.xml`:
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-r2dbc-postgres</artifactId>
<version>1.13.1</version>
<version>1.14.1</version>
</dependency>
```
##### Gradle
Include the following the project's `build.gradle`
```gradle
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.13.1'
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.14.1'
```
*Note: Also include the R2DBC Driver for PostgreSQL, `io.r2dbc:r2dbc-postgresql:<LATEST-VERSION>`
<!-- {x-release-please-end} -->
Expand Down
4 changes: 2 additions & 2 deletions docs/r2dbc-sqlserver.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ Include the following in the project's `pom.xml`:
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-r2dbc-sqlserver</artifactId>
<version>1.13.1</version>
<version>1.14.1</version>
</dependency>
```
##### Gradle
Include the following the project's `build.gradle`
```gradle
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.13.1'
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.14.1'
```
*Note: Also include the R2DBC Driver for SQL Server, `io.r2dbc:r2dbc-mssql:<LATEST-VERSION>`
<!-- {x-release-please-end} -->
Expand Down
4 changes: 2 additions & 2 deletions jdbc/mariadb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>mariadb-socket-factory</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:mariadb-socket-factory:current} -->
<version>1.14.1</version><!-- {x-version-update:mariadb-socket-factory:current} -->
<packaging>jar</packaging>

<name>Cloud SQL MariaDB Socket Factory</name>
Expand Down
4 changes: 2 additions & 2 deletions jdbc/mysql-j-8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>mysql-socket-factory-connector-j-8</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:mysql-socket-factory-connector-j-8:current} -->
<version>1.14.1</version><!-- {x-version-update:mysql-socket-factory-connector-j-8:current} -->
<packaging>jar</packaging>

<name>Cloud SQL MySQL Socket Factory (for Connector/J 8.x)</name>
Expand Down
4 changes: 2 additions & 2 deletions jdbc/postgres/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>postgres-socket-factory</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:postgres-socket-factory:current} -->
<version>1.14.1</version><!-- {x-version-update:postgres-socket-factory:current} -->
<packaging>jar</packaging>

<name>Cloud SQL Postgres Socket Factory</name>
Expand Down
4 changes: 2 additions & 2 deletions jdbc/sqlserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>cloud-sql-connector-jdbc-sqlserver</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:cloud-sql-connector-jdbc-sqlserver:current} -->
<version>1.14.1</version><!-- {x-version-update:cloud-sql-connector-jdbc-sqlserver:current} -->
<packaging>jar</packaging>

<name>Cloud SQL JDBC Connector for SQL Server</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<packaging>pom</packaging>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->

<parent>
<groupId>com.google.cloud</groupId>
Expand Down
4 changes: 2 additions & 2 deletions r2dbc/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>cloud-sql-connector-r2dbc-core</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:cloud-sql-connector-r2dbc-core:current} -->
<version>1.14.1</version><!-- {x-version-update:cloud-sql-connector-r2dbc-core:current} -->
<packaging>jar</packaging>

<name>Cloud SQL R2DBC Connection Factory (R2DBC Core Library, don't depend on this directly)</name>
Expand Down
4 changes: 2 additions & 2 deletions r2dbc/mysql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>cloud-sql-connector-r2dbc-mysql</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:cloud-sql-connector-r2dbc-mysql:current} -->
<version>1.14.1</version><!-- {x-version-update:cloud-sql-connector-r2dbc-mysql:current} -->
<packaging>jar</packaging>

<name>Cloud SQL R2DBC Connection Factory for MySQL</name>
Expand Down
4 changes: 2 additions & 2 deletions r2dbc/postgres/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>cloud-sql-connector-r2dbc-postgres</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:cloud-sql-connector-r2dbc-postgres:current} -->
<version>1.14.1</version><!-- {x-version-update:cloud-sql-connector-r2dbc-postgres:current} -->
<packaging>jar</packaging>

<name>Cloud SQL R2DBC Connection Factory for Postgres</name>
Expand Down
4 changes: 2 additions & 2 deletions r2dbc/sqlserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.14.1</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>cloud-sql-connector-r2dbc-sqlserver</artifactId>
<version>1.14.1-SNAPSHOT</version><!-- {x-version-update:cloud-sql-connector-r2dbc-sqlserver:current} -->
<version>1.14.1</version><!-- {x-version-update:cloud-sql-connector-r2dbc-sqlserver:current} -->
<packaging>jar</packaging>

<name>Cloud SQL R2DBC Connection Factory for SQL Server</name>
Expand Down
22 changes: 11 additions & 11 deletions versions.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Format:
# module:released-version:current-version

jdbc-socket-factory-parent:1.14.0:1.14.1-SNAPSHOT
jdbc-socket-factory-core:1.14.0:1.14.1-SNAPSHOT
mariadb-socket-factory:1.14.0:1.14.1-SNAPSHOT
mysql-socket-factory:1.14.0:1.14.1-SNAPSHOT
mysql-socket-factory-connector-j-8:1.14.0:1.14.1-SNAPSHOT
postgres-socket-factory:1.14.0:1.14.1-SNAPSHOT
cloud-sql-connector-jdbc-sqlserver:1.14.0:1.14.1-SNAPSHOT
cloud-sql-connector-r2dbc-core:1.14.0:1.14.1-SNAPSHOT
cloud-sql-connector-r2dbc-mysql:1.14.0:1.14.1-SNAPSHOT
cloud-sql-connector-r2dbc-postgres:1.14.0:1.14.1-SNAPSHOT
cloud-sql-connector-r2dbc-sqlserver:1.14.0:1.14.1-SNAPSHOT
jdbc-socket-factory-parent:1.14.1:1.14.1
jdbc-socket-factory-core:1.14.1:1.14.1
mariadb-socket-factory:1.14.1:1.14.1
mysql-socket-factory:1.14.1:1.14.1
mysql-socket-factory-connector-j-8:1.14.1:1.14.1
postgres-socket-factory:1.14.1:1.14.1
cloud-sql-connector-jdbc-sqlserver:1.14.1:1.14.1
cloud-sql-connector-r2dbc-core:1.14.1:1.14.1
cloud-sql-connector-r2dbc-mysql:1.14.1:1.14.1
cloud-sql-connector-r2dbc-postgres:1.14.1:1.14.1
cloud-sql-connector-r2dbc-sqlserver:1.14.1:1.14.1

0 comments on commit 66cd10b

Please sign in to comment.