Skip to content

Commit 6c8df77

Browse files
chore(main): release 1.6.3 (#933)
* chore(main): release 1.6.3 * update versions in POM files and docs Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Shubha Rajan <[email protected]>
1 parent 23c2779 commit 6c8df77

File tree

18 files changed

+32
-25
lines changed

18 files changed

+32
-25
lines changed

CHANGELOG.md

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

3+
## [1.6.3](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.6.2...v1.6.3) (2022-08-02)
4+
5+
6+
### Bug Fixes
7+
8+
* update dependencies to latest versions ([#932](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/issues/932)) ([23c2779](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/commit/23c277919556b2006b7f5ec9ed8ed40c3d6f784d))
9+
310
## [1.6.2](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.6.1...v1.6.2) (2022-07-12)
411

512

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.6.3-SNAPSHOT</version>
26+
<version>1.6.3</version>
2727
</parent>
2828
<artifactId>jdbc-socket-factory-core</artifactId>
2929
<packaging>jar</packaging>

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.6.2 |
13-
| mysql-connector-java:5.1.x | mysql-socket-factory:1.6.2 |
12+
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.6.3 |
13+
| mysql-connector-java:5.1.x | mysql-socket-factory:1.6.3 |
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.6.2</version>
21+
    <version>1.6.3</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.6.2'
28+
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.6.3'
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.6.2</version>
12+
    <version>1.6.3</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.6.2'
19+
compile 'com.google.cloud.sql:postgres-socket-factory:1.6.3'
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.6.2</version>
13+
    <version>1.6.3</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.6.2'
20+
compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.6.3'
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.6.2</version>
13+
<version>1.6.3</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.6.2'
20+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.6.3'
2121
```
2222

2323
*Note: Also include the R2DBC Driver for MySQL, `dev.miku: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.6.2</version>
13+
<version>1.6.3</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.6.2'
19+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.6.3'
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.6.2</version>
13+
<version>1.6.3</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.6.2'
19+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.6.3'
2020
```
2121
*Note: Also include the R2DBC Driver for SQL Server, `io.r2dbc:r2dbc-mssql:<LATEST-VERSION>`
2222

jdbc/mysql-j-5/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.6.3-SNAPSHOT</version>
26+
<version>1.6.3</version>
2727
<relativePath>../../pom.xml</relativePath>
2828
</parent>
2929

jdbc/mysql-j-8/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.6.3-SNAPSHOT</version>
25+
<version>1.6.3</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

0 commit comments

Comments
 (0)