Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 1.15.0 #1612

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 73 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.2-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.15.0</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
</parent>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.14.2-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-core:current} -->
<version>1.15.0</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
16 changes: 8 additions & 8 deletions docs/jdbc.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ Maven
<dependency>
    <groupId>com.google.cloud.sql</groupId>
    <artifactId>mysql-socket-factory-connector-j-8</artifactId>
    <version>1.14.1</version>
    <version>1.15.0</version>
</dependency>
```

Gradle

```gradle
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.14.1'
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.15.0'
```

<!-- {x-version-update-end} -->
Expand All @@ -39,14 +39,14 @@ Maven
<dependency>
    <groupId>com.google.cloud.sql</groupId>
    <artifactId>mariadb-socket-factory</artifactId>
    <version>1.14.1</version>
    <version>1.15.0</version>
</dependency>
```

Gradle

```gradle
compile 'com.google.cloud.sql:mariadb-socket-factory:1.14.1'
compile 'com.google.cloud.sql:mariadb-socket-factory:1.15.0'
```

**Note:** Also include the JDBC Driver for
Expand All @@ -62,14 +62,14 @@ Maven
<dependency>
    <groupId>com.google.cloud.sql</groupId>
    <artifactId>postgres-socket-factory</artifactId>
    <version>1.14.1</version>
    <version>1.15.0</version>
</dependency>
```

Gradle

```gradle
compile 'com.google.cloud.sql:postgres-socket-factory:1.14.1'
compile 'com.google.cloud.sql:postgres-socket-factory:1.15.0'
```

**Note:** Also include the JDBC Driver for
Expand All @@ -85,14 +85,14 @@ Maven
<dependency>
    <groupId>com.google.cloud.sql</groupId>
    <artifactId>postgres-socket-factory</artifactId>
    <version>1.14.1</version>
    <version>1.15.0</version>
</dependency>
```

Gradle

```gradle
compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.14.1'
compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.15.0'
```

**Note:** Also include the JDBC Driver for SQL
Expand Down
12 changes: 6 additions & 6 deletions docs/r2dbc.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ Maven
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-r2dbc-mysql</artifactId>
<version>1.14.1</version>
<version>1.15.0</version>
</dependency>
```

Gradle

```gradle
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.14.1'
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.15.0'
```

**Note:** Also include the R2DBC Driver for
Expand All @@ -41,14 +41,14 @@ Maven
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-r2dbc-postgres</artifactId>
<version>1.14.1</version>
<version>1.15.0</version>
</dependency>
```

Gradle

```gradle
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.14.1'
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.15.0'
```

**Note:** Also include the R2DBC Driver for
Expand All @@ -64,14 +64,14 @@ Maven
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-r2dbc-sqlserver</artifactId>
<version>1.14.1</version>
<version>1.15.0</version>
</dependency>
```

Gradle

```gradle
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.14.1'
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.15.0'
```

**Note:** Also include the R2DBC Driver for SQL
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.2-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.15.0</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>mariadb-socket-factory</artifactId>
<version>1.14.2-SNAPSHOT</version><!-- {x-version-update:mariadb-socket-factory:current} -->
<version>1.15.0</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.2-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.15.0</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.2-SNAPSHOT</version><!-- {x-version-update:mysql-socket-factory-connector-j-8:current} -->
<version>1.15.0</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.2-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.15.0</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>postgres-socket-factory</artifactId>
<version>1.14.2-SNAPSHOT</version><!-- {x-version-update:postgres-socket-factory:current} -->
<version>1.15.0</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.2-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.15.0</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>cloud-sql-connector-jdbc-sqlserver</artifactId>
<version>1.14.2-SNAPSHOT</version><!-- {x-version-update:cloud-sql-connector-jdbc-sqlserver:current} -->
<version>1.15.0</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.2-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.15.0</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.2-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.15.0</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>cloud-sql-connector-r2dbc-core</artifactId>
<version>1.14.2-SNAPSHOT</version><!-- {x-version-update:cloud-sql-connector-r2dbc-core:current} -->
<version>1.15.0</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.2-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.15.0</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>cloud-sql-connector-r2dbc-mysql</artifactId>
<version>1.14.2-SNAPSHOT</version><!-- {x-version-update:cloud-sql-connector-r2dbc-mysql:current} -->
<version>1.15.0</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.2-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.15.0</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>cloud-sql-connector-r2dbc-postgres</artifactId>
<version>1.14.2-SNAPSHOT</version><!-- {x-version-update:cloud-sql-connector-r2dbc-postgres:current} -->
<version>1.15.0</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.2-SNAPSHOT</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<version>1.15.0</version><!-- {x-version-update:jdbc-socket-factory-parent:current} -->
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>cloud-sql-connector-r2dbc-sqlserver</artifactId>
<version>1.14.2-SNAPSHOT</version><!-- {x-version-update:cloud-sql-connector-r2dbc-sqlserver:current} -->
<version>1.15.0</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.1:1.14.2-SNAPSHOT
jdbc-socket-factory-core:1.14.1:1.14.2-SNAPSHOT
mariadb-socket-factory:1.14.1:1.14.2-SNAPSHOT
mysql-socket-factory:1.14.1:1.14.2-SNAPSHOT
mysql-socket-factory-connector-j-8:1.14.1:1.14.2-SNAPSHOT
postgres-socket-factory:1.14.1:1.14.2-SNAPSHOT
cloud-sql-connector-jdbc-sqlserver:1.14.1:1.14.2-SNAPSHOT
cloud-sql-connector-r2dbc-core:1.14.1:1.14.2-SNAPSHOT
cloud-sql-connector-r2dbc-mysql:1.14.1:1.14.2-SNAPSHOT
cloud-sql-connector-r2dbc-postgres:1.14.1:1.14.2-SNAPSHOT
cloud-sql-connector-r2dbc-sqlserver:1.14.1:1.14.2-SNAPSHOT
jdbc-socket-factory-parent:1.15.0:1.15.0
jdbc-socket-factory-core:1.15.0:1.15.0
mariadb-socket-factory:1.15.0:1.15.0
mysql-socket-factory:1.15.0:1.15.0
mysql-socket-factory-connector-j-8:1.15.0:1.15.0
postgres-socket-factory:1.15.0:1.15.0
cloud-sql-connector-jdbc-sqlserver:1.15.0:1.15.0
cloud-sql-connector-r2dbc-core:1.15.0:1.15.0
cloud-sql-connector-r2dbc-mysql:1.15.0:1.15.0
cloud-sql-connector-r2dbc-postgres:1.15.0:1.15.0
cloud-sql-connector-r2dbc-sqlserver:1.15.0:1.15.0