Skip to content

Commit 3a66e9d

Browse files
chore: release 1.2.3 (#479)
* chore: release 1.2.3 * update versions Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Shubha Rajan <[email protected]>
1 parent e287d45 commit 3a66e9d

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.2.3](https://www.github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.2.2...v1.2.3) (2021-05-03)
4+
5+
6+
### Bug Fixes
7+
8+
* declare used maven dependencies ([#478](https://www.github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/issues/478)) ([8483003](https://www.github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/commit/8483003e2a6b0ac5bc813b9ad8995ff8acdd14ae))
9+
310
### [1.2.2](https://www.github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.2.1...v1.2.2) (2021-04-06)
411

512

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.google.cloud.sql</groupId>
77
<artifactId>jdbc-socket-factory-parent</artifactId>
8-
<version>1.2.3-SNAPSHOT</version>
8+
<version>1.2.3</version>
99
</parent>
1010
<artifactId>jdbc-socket-factory-core</artifactId>
1111
<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.2.2 |
13-
| mysql-connector-java:5.1.x | mysql-socket-factory:1.2.2 |
12+
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.2.3 |
13+
| mysql-connector-java:5.1.x | mysql-socket-factory:1.2.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.2.2</version>
21+
    <version>1.2.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.2.2'
28+
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.2.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.2.2</version>
12+
    <version>1.2.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.2.2'
19+
compile 'com.google.cloud.sql:postgres-socket-factory:1.2.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.2.2</version>
13+
    <version>1.2.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.2.2'
20+
compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.2.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.2.2</version>
13+
<version>1.2.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.2.2'
20+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.2.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.2.2</version>
13+
<version>1.2.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.2.2'
19+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.2.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.2.2</version>
13+
<version>1.2.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.2.2'
19+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.2.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
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.google.cloud.sql</groupId>
77
<artifactId>jdbc-socket-factory-parent</artifactId>
8-
<version>1.2.3-SNAPSHOT</version>
8+
<version>1.2.3</version>
99
<relativePath>../..</relativePath>
1010
</parent>
1111

jdbc/mysql-j-8/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.google.cloud.sql</groupId>
77
<artifactId>jdbc-socket-factory-parent</artifactId>
8-
<version>1.2.3-SNAPSHOT</version>
8+
<version>1.2.3</version>
99
<relativePath>../..</relativePath>
1010
</parent>
1111

0 commit comments

Comments
 (0)