From 3a66e9d586414506a14ea3f2406b6b713812672a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 4 May 2021 14:14:46 -0700 Subject: [PATCH] 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 --- CHANGELOG.md | 7 +++++++ core/pom.xml | 2 +- docs/jdbc-mysql.md | 8 ++++---- docs/jdbc-postgres.md | 4 ++-- docs/jdbc-sqlserver.md | 4 ++-- docs/r2dbc-mysql.md | 4 ++-- docs/r2dbc-postgres.md | 4 ++-- docs/r2dbc-sqlserver.md | 4 ++-- jdbc/mysql-j-5/pom.xml | 2 +- jdbc/mysql-j-8/pom.xml | 2 +- jdbc/postgres/pom.xml | 2 +- jdbc/sqlserver/pom.xml | 2 +- pom.xml | 2 +- r2dbc/core/pom.xml | 2 +- r2dbc/mysql/pom.xml | 2 +- r2dbc/postgres/pom.xml | 2 +- r2dbc/sqlserver/pom.xml | 2 +- version.txt | 2 +- 18 files changed, 32 insertions(+), 25 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9e4839ce..84d6f02fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [1.2.3](https://www.github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.2.2...v1.2.3) (2021-05-03) + + +### Bug Fixes + +* 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)) + ### [1.2.2](https://www.github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.2.1...v1.2.2) (2021-04-06) diff --git a/core/pom.xml b/core/pom.xml index 88a636475..c57469a05 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -5,7 +5,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.2.3-SNAPSHOT + 1.2.3 jdbc-socket-factory-core jar diff --git a/docs/jdbc-mysql.md b/docs/jdbc-mysql.md index f69e28e97..34aa7b265 100644 --- a/docs/jdbc-mysql.md +++ b/docs/jdbc-mysql.md @@ -9,8 +9,8 @@ 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.2.2 | -| mysql-connector-java:5.1.x | mysql-socket-factory:1.2.2 | +| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.2.3 | +| mysql-connector-java:5.1.x | mysql-socket-factory:1.2.3 | ##### Maven Include the following in the project's `pom.xml`: @@ -18,14 +18,14 @@ Include the following in the project's `pom.xml`:     com.google.cloud.sql     mysql-socket-factory-connector-j-8 -    1.2.2 +    1.2.3 ``` ##### Gradle Include the following the project's `build.gradle` ```gradle -compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.2.2' +compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.2.3' ``` ### Creating theJDBC URL diff --git a/docs/jdbc-postgres.md b/docs/jdbc-postgres.md index 8beb07598..432a2af26 100644 --- a/docs/jdbc-postgres.md +++ b/docs/jdbc-postgres.md @@ -9,14 +9,14 @@ Include the following in the project's `pom.xml`:     com.google.cloud.sql     postgres-socket-factory -    1.2.2 +    1.2.3 ``` ##### Gradle Include the following the project's `gradle.build` ```gradle -compile 'com.google.cloud.sql:postgres-socket-factory:1.2.2' +compile 'com.google.cloud.sql:postgres-socket-factory:1.2.3' ``` *Note*: Also include the JDBC Driver for PostgreSQL, `org.postgresql:postgresql:` diff --git a/docs/jdbc-sqlserver.md b/docs/jdbc-sqlserver.md index ac2e7bc19..d82d3b1d4 100644 --- a/docs/jdbc-sqlserver.md +++ b/docs/jdbc-sqlserver.md @@ -10,14 +10,14 @@ Include the following in the project's `pom.xml`:     com.google.cloud.sql     cloud-sql-connector-jdbc-sqlserver -    1.2.2 +    1.2.3 ``` ##### Gradle Include the following the project's `gradle.build` ```gradle -compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.2.2' +compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.2.3' ``` *Note*: Also include the JDBC Driver for SQL Server, `com.microsoft.sqlserver:mssql-jdbc:`. diff --git a/docs/r2dbc-mysql.md b/docs/r2dbc-mysql.md index 103e16eb9..da73914e7 100644 --- a/docs/r2dbc-mysql.md +++ b/docs/r2dbc-mysql.md @@ -10,14 +10,14 @@ Include the following in the project's `pom.xml`: com.google.cloud.sql cloud-sql-connector-r2dbc-mysql - 1.2.2 + 1.2.3 ``` ##### Gradle Include the following the project's `build.gradle` ```gradle -compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.2.2' +compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.2.3' ``` *Note: Also include the R2DBC Driver for MySQL, `dev.miku:r2dbc-mysql:` diff --git a/docs/r2dbc-postgres.md b/docs/r2dbc-postgres.md index 9899045af..6e7c1116d 100644 --- a/docs/r2dbc-postgres.md +++ b/docs/r2dbc-postgres.md @@ -10,13 +10,13 @@ Include the following in the project's `pom.xml`: com.google.cloud.sql cloud-sql-connector-r2dbc-postgres - 1.2.2 + 1.2.3 ``` ##### Gradle Include the following the project's `build.gradle` ```gradle -compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.2.2' +compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.2.3' ``` *Note: Also include the R2DBC Driver for PostgreSQL, `io.r2dbc:r2dbc-postgresql:` diff --git a/docs/r2dbc-sqlserver.md b/docs/r2dbc-sqlserver.md index 7689c4b79..c5aa68854 100644 --- a/docs/r2dbc-sqlserver.md +++ b/docs/r2dbc-sqlserver.md @@ -10,13 +10,13 @@ Include the following in the project's `pom.xml`: com.google.cloud.sql cloud-sql-connector-r2dbc-sqlserver - 1.2.2 + 1.2.3 ``` ##### Gradle Include the following the project's `build.gradle` ```gradle -compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.2.2' +compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.2.3' ``` *Note: Also include the R2DBC Driver for SQL Server, `io.r2dbc:r2dbc-mssql:` diff --git a/jdbc/mysql-j-5/pom.xml b/jdbc/mysql-j-5/pom.xml index 6c467c424..8b5624962 100644 --- a/jdbc/mysql-j-5/pom.xml +++ b/jdbc/mysql-j-5/pom.xml @@ -5,7 +5,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.2.3-SNAPSHOT + 1.2.3 ../.. diff --git a/jdbc/mysql-j-8/pom.xml b/jdbc/mysql-j-8/pom.xml index b673f707d..d7a65aa13 100644 --- a/jdbc/mysql-j-8/pom.xml +++ b/jdbc/mysql-j-8/pom.xml @@ -5,7 +5,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.2.3-SNAPSHOT + 1.2.3 ../.. diff --git a/jdbc/postgres/pom.xml b/jdbc/postgres/pom.xml index 629c292bc..91d5bd4b3 100644 --- a/jdbc/postgres/pom.xml +++ b/jdbc/postgres/pom.xml @@ -5,7 +5,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.2.3-SNAPSHOT + 1.2.3 ../.. postgres-socket-factory diff --git a/jdbc/sqlserver/pom.xml b/jdbc/sqlserver/pom.xml index 1579e8e93..681861482 100644 --- a/jdbc/sqlserver/pom.xml +++ b/jdbc/sqlserver/pom.xml @@ -5,7 +5,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.2.3-SNAPSHOT + 1.2.3 ../.. cloud-sql-connector-jdbc-sqlserver diff --git a/pom.xml b/pom.xml index 69e8f39c3..dc0a3531a 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.google.cloud.sql jdbc-socket-factory-parent pom - 1.2.3-SNAPSHOT + 1.2.3 Cloud SQL JDBC Socket Factory diff --git a/r2dbc/core/pom.xml b/r2dbc/core/pom.xml index c5f0997ef..887dc8dcf 100644 --- a/r2dbc/core/pom.xml +++ b/r2dbc/core/pom.xml @@ -5,7 +5,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.2.3-SNAPSHOT + 1.2.3 ../.. cloud-sql-connector-r2dbc-core diff --git a/r2dbc/mysql/pom.xml b/r2dbc/mysql/pom.xml index 32dc72b2b..06e21c4cb 100644 --- a/r2dbc/mysql/pom.xml +++ b/r2dbc/mysql/pom.xml @@ -5,7 +5,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.2.3-SNAPSHOT + 1.2.3 ../.. cloud-sql-connector-r2dbc-mysql diff --git a/r2dbc/postgres/pom.xml b/r2dbc/postgres/pom.xml index 3aa844dac..6a71beb0b 100644 --- a/r2dbc/postgres/pom.xml +++ b/r2dbc/postgres/pom.xml @@ -5,7 +5,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.2.3-SNAPSHOT + 1.2.3 ../.. cloud-sql-connector-r2dbc-postgres diff --git a/r2dbc/sqlserver/pom.xml b/r2dbc/sqlserver/pom.xml index 08cab4842..ec09cae93 100644 --- a/r2dbc/sqlserver/pom.xml +++ b/r2dbc/sqlserver/pom.xml @@ -5,7 +5,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.2.3-SNAPSHOT + 1.2.3 ../.. cloud-sql-connector-r2dbc-sqlserver diff --git a/version.txt b/version.txt index 200c9997f..0495c4a88 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.2.3-SNAPSHOT +1.2.3