From 7847274e5c1c233748353f254fda997550f4982f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Jan 2023 20:56:14 -0500 Subject: [PATCH] chore(main): release 1.8.1 (#1089) * chore(main): release 1.8.1 * update versions in pom.xml files and READMEs * edit changelog Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: shubha-rajan Co-authored-by: Shubha Rajan --- CHANGELOG.md | 8 ++++++++ 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, 33 insertions(+), 25 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01eeaf10e..c5c25dc02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.8.1](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.8.0...v1.8.1) (2023-01-11) + + +### Bug Fixes + +* throw exception on invalid IAM Authn config ([#1082](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/issues/1082)) ([2100d24](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/commit/2100d2424bae696dba857e57235bb2e374938614)) + + ## [1.8.0](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.7.2...v1.8.0) (2022-12-08) diff --git a/core/pom.xml b/core/pom.xml index cebeb1eb9..0ed6fc909 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -23,7 +23,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.8.1-SNAPSHOT + 1.8.1 jdbc-socket-factory-core jar diff --git a/docs/jdbc-mysql.md b/docs/jdbc-mysql.md index 5338fbaaf..4cb518bfb 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.8.0 | -| mysql-connector-java:5.1.x | mysql-socket-factory:1.8.0 | +| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.8.1 | +| mysql-connector-java:5.1.x | mysql-socket-factory:1.8.1 | ##### 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.8.0 +    1.8.1 ``` ##### Gradle Include the following the project's `build.gradle` ```gradle -compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.8.0' +compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.8.1' ``` ### Creating theJDBC URL diff --git a/docs/jdbc-postgres.md b/docs/jdbc-postgres.md index 2990ca67d..60c3bcd0f 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.8.0 +    1.8.1 ``` ##### Gradle Include the following the project's `gradle.build` ```gradle -compile 'com.google.cloud.sql:postgres-socket-factory:1.8.0' +compile 'com.google.cloud.sql:postgres-socket-factory:1.8.1' ``` *Note*: Also include the JDBC Driver for PostgreSQL, `org.postgresql:postgresql:` diff --git a/docs/jdbc-sqlserver.md b/docs/jdbc-sqlserver.md index 8e191db75..66dd1a711 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.8.0 +    1.8.1 ``` ##### Gradle Include the following the project's `gradle.build` ```gradle -compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.8.0' +compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.8.1' ``` *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 761b3db57..e4af63ed5 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.8.0 + 1.8.1 ``` ##### Gradle Include the following the project's `build.gradle` ```gradle -compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.8.0' +compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.8.1' ``` *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 015ef23e1..f275d0123 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.8.0 + 1.8.1 ``` ##### Gradle Include the following the project's `build.gradle` ```gradle -compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.8.0' +compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.8.1' ``` *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 d4ffbe0de..df1570edb 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.8.0 + 1.8.1 ``` ##### Gradle Include the following the project's `build.gradle` ```gradle -compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.8.0' +compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.8.1' ``` *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 78bb7243f..f1da62d48 100644 --- a/jdbc/mysql-j-5/pom.xml +++ b/jdbc/mysql-j-5/pom.xml @@ -23,7 +23,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.8.1-SNAPSHOT + 1.8.1 ../../pom.xml diff --git a/jdbc/mysql-j-8/pom.xml b/jdbc/mysql-j-8/pom.xml index 770d0d01f..1b0edb459 100644 --- a/jdbc/mysql-j-8/pom.xml +++ b/jdbc/mysql-j-8/pom.xml @@ -22,7 +22,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.8.1-SNAPSHOT + 1.8.1 ../../pom.xml diff --git a/jdbc/postgres/pom.xml b/jdbc/postgres/pom.xml index 551f47e38..9b5d60e98 100644 --- a/jdbc/postgres/pom.xml +++ b/jdbc/postgres/pom.xml @@ -22,7 +22,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.8.1-SNAPSHOT + 1.8.1 ../../pom.xml postgres-socket-factory diff --git a/jdbc/sqlserver/pom.xml b/jdbc/sqlserver/pom.xml index 97993d257..c6fa0b6a7 100644 --- a/jdbc/sqlserver/pom.xml +++ b/jdbc/sqlserver/pom.xml @@ -22,7 +22,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.8.1-SNAPSHOT + 1.8.1 ../../pom.xml cloud-sql-connector-jdbc-sqlserver diff --git a/pom.xml b/pom.xml index c19ce72e1..8180e0544 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ com.google.cloud.sql jdbc-socket-factory-parent pom - 1.8.1-SNAPSHOT + 1.8.1 Cloud SQL JDBC Socket Factory diff --git a/r2dbc/core/pom.xml b/r2dbc/core/pom.xml index 534309bed..12f813815 100644 --- a/r2dbc/core/pom.xml +++ b/r2dbc/core/pom.xml @@ -21,7 +21,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.8.1-SNAPSHOT + 1.8.1 ../../pom.xml cloud-sql-connector-r2dbc-core diff --git a/r2dbc/mysql/pom.xml b/r2dbc/mysql/pom.xml index 7407a6954..179f40790 100644 --- a/r2dbc/mysql/pom.xml +++ b/r2dbc/mysql/pom.xml @@ -22,7 +22,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.8.1-SNAPSHOT + 1.8.1 ../../pom.xml cloud-sql-connector-r2dbc-mysql diff --git a/r2dbc/postgres/pom.xml b/r2dbc/postgres/pom.xml index 5cc145ea3..60836f407 100644 --- a/r2dbc/postgres/pom.xml +++ b/r2dbc/postgres/pom.xml @@ -22,7 +22,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.8.1-SNAPSHOT + 1.8.1 ../../pom.xml cloud-sql-connector-r2dbc-postgres diff --git a/r2dbc/sqlserver/pom.xml b/r2dbc/sqlserver/pom.xml index 587600f51..2243af768 100644 --- a/r2dbc/sqlserver/pom.xml +++ b/r2dbc/sqlserver/pom.xml @@ -22,7 +22,7 @@ com.google.cloud.sql jdbc-socket-factory-parent - 1.8.1-SNAPSHOT + 1.8.1 ../../pom.xml cloud-sql-connector-r2dbc-sqlserver diff --git a/version.txt b/version.txt index f3609bd4d..a8fdfda1c 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.8.1-SNAPSHOT +1.8.1