Skip to content

Commit 4ed5bc6

Browse files
chore(main): release 1.8.0 (#1054)
* chore(main): release 1.8.0 * 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 dc7d7ba commit 4ed5bc6

File tree

18 files changed

+38
-25
lines changed

18 files changed

+38
-25
lines changed

CHANGELOG.md

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

3+
## [1.8.0](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.7.2...v1.8.0) (2022-12-08)
4+
5+
6+
### Features
7+
8+
* enable setting ipType configuration option for SQL Server connector ([#936](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/issues/936)) ([e76518d](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/commit/e76518dbe4896d674d042ffc77233f462587d4cf))
9+
* support MySQL Automatic IAM Authentication ([#981](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/issues/981)) ([dc7d7ba](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/commit/dc7d7babf807fa9029fa72b8f884f1e0eecf22bd))
10+
11+
12+
### Bug Fixes
13+
14+
* add compatibility for GraalVM 22.2.0 ([#1025](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/issues/1025)) ([bd153cd](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/commit/bd153cda0e82cbd1ea9d290c9123d510bdca9d22))
15+
316
## [1.7.2](https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.7.1...v1.7.2) (2022-11-02)
417

518

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.7.3-SNAPSHOT</version>
26+
<version>1.8.0</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.7.2 |
13-
| mysql-connector-java:5.1.x | mysql-socket-factory:1.7.2 |
12+
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.8.0 |
13+
| mysql-connector-java:5.1.x | mysql-socket-factory:1.8.0 |
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.7.2</version>
21+
    <version>1.8.0</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.7.2'
28+
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.8.0'
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.7.2</version>
12+
    <version>1.8.0</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.7.2'
19+
compile 'com.google.cloud.sql:postgres-socket-factory:1.8.0'
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.7.2</version>
13+
    <version>1.8.0</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.7.2'
20+
compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.8.0'
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.7.2</version>
13+
<version>1.8.0</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.7.2'
20+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.8.0'
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.7.2</version>
13+
<version>1.8.0</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.7.2'
19+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.8.0'
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.7.2</version>
13+
<version>1.8.0</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.7.2'
19+
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.8.0'
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.7.3-SNAPSHOT</version>
26+
<version>1.8.0</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.7.3-SNAPSHOT</version>
25+
<version>1.8.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

0 commit comments

Comments
 (0)