Skip to content

Commit

Permalink
chore: release 1.2.1 (#402)
Browse files Browse the repository at this point in the history
  • Loading branch information
release-please[bot] authored Feb 16, 2021
1 parent 4aea55d commit 42bf079
Show file tree
Hide file tree
Showing 14 changed files with 42 additions and 35 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

### [1.2.1](https://www.github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.2.0...v1.2.1) (2021-02-16)


### Documentation

* fix error in r2dbc URLs ([#384](https://www.github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/issues/384)) ([52990d0](https://www.github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/commit/52990d00254d1e36e8e1fc8e788a6953ef1b3722))

## [1.2.0](https://www.github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/compare/v1.1.0...v1.2.0) (2020-11-18)


Expand Down
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,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.0 |
| mysql-connector-java:5.1.x | mysql-socket-factory:1.2.0 |
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.2.1 |
| mysql-connector-java:5.1.x | mysql-socket-factory:1.2.1 |



Expand All @@ -51,14 +51,14 @@ Include the following in the project's `pom.xml`:
<dependency>
    <groupId>com.google.cloud.sql</groupId>
    <artifactId>mysql-socket-factory-connector-j-8</artifactId>
    <version>1.2.0</version>
    <version>1.2.1</version>
</dependency>
```

##### Gradle
Include the following the project's `build.gradle`
```gradle
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.2.0'
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.2.1'
```

#### PostgreSQL
Expand All @@ -69,14 +69,14 @@ Include the following in the project's `pom.xml`:
<dependency>
    <groupId>com.google.cloud.sql</groupId>
    <artifactId>postgres-socket-factory</artifactId>
    <version>1.2.0</version>
    <version>1.2.1</version>
</dependency>
```

##### Gradle
Include the following the project's `gradle.build`
```gradle
compile 'com.google.cloud.sql:postgres-socket-factory:1.2.0'
compile 'com.google.cloud.sql:postgres-socket-factory:1.2.1'
```
*Note: Also include the JDBC Driver for PostgreSQL, `org.postgresql:postgresql:<LATEST-VERSION>`

Expand All @@ -89,14 +89,14 @@ Include the following in the project's `pom.xml`:
<dependency>
    <groupId>com.google.cloud.sql</groupId>
    <artifactId>cloud-sql-connector-jdbc-sqlserver</artifactId>
    <version>1.2.0</version>
    <version>1.2.1</version>
</dependency>
```

##### Gradle
Include the following the project's `gradle.build`
```gradle
compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.2.0'
compile 'com.google.cloud.sql:cloud-sql-connector-jdbc-sqlserver:1.2.1'
```


Expand Down Expand Up @@ -160,14 +160,14 @@ Include the following in the project's `pom.xml`:
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-r2dbc-mysql</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
```

##### Gradle
Include the following the project's `build.gradle`
```gradle
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.2.0'
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-mysql:1.2.1'
```

*Note: Also include the R2DBC Driver for MySQL, `dev.miku:r2dbc-mysql:<LATEST-VERSION>`
Expand All @@ -180,13 +180,13 @@ Include the following in the project's `pom.xml`:
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-r2dbc-postgres</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
```
##### Gradle
Include the following the project's `build.gradle`
```gradle
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.2.0'
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-postgres:1.2.1'
```
*Note: Also include the R2DBC Driver for PostgreSQL, `io.r2dbc:r2dbc-postgresql:<LATEST-VERSION>`

Expand All @@ -198,13 +198,13 @@ Include the following in the project's `pom.xml`:
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-r2dbc-sqlserver</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
```
##### Gradle
Include the following the project's `build.gradle`
```gradle
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.2.0'
compile 'com.google.cloud.sql:cloud-sql-connector-r2dbc-sqlserver:1.2.1'
```
*Note: Also include the R2DBC Driver for SQL Server, `io.r2dbc:r2dbc-mssql:<LATEST-VERSION>`

Expand Down
4 changes: 2 additions & 2 deletions connector-j-5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</parent>
<artifactId>mysql-socket-factory</artifactId>
<packaging>jar</packaging>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions connector-j-6/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</parent>
<artifactId>mysql-socket-factory-connector-j-6</artifactId>
<packaging>jar</packaging>
Expand Down Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions connector-j-8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</parent>
<artifactId>mysql-socket-factory-connector-j-8</artifactId>
<packaging>jar</packaging>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<relativePath>..</relativePath>
</parent>
<artifactId>jdbc-socket-factory-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<packaging>pom</packaging>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->


<name>Cloud SQL JDBC Socket Factory</name>
Expand Down
4 changes: 2 additions & 2 deletions postgres/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</parent>
<artifactId>postgres-socket-factory</artifactId>
<packaging>jar</packaging>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions r2dbc-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</parent>
<artifactId>cloud-sql-connector-r2dbc-core</artifactId>
<packaging>jar</packaging>
Expand All @@ -32,7 +32,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions r2dbc-mysql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</parent>
<artifactId>cloud-sql-connector-r2dbc-mysql</artifactId>
<packaging>jar</packaging>
Expand All @@ -33,7 +33,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-r2dbc-core</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions r2dbc-postgres/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</parent>
<artifactId>cloud-sql-connector-r2dbc-postgres</artifactId>
<packaging>jar</packaging>
Expand All @@ -33,7 +33,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-r2dbc-core</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions r2dbc-sqlserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</parent>
<artifactId>cloud-sql-connector-r2dbc-sqlserver</artifactId>
<packaging>jar</packaging>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>cloud-sql-connector-r2dbc-core</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions sqlserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-parent</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<relativePath>..</relativePath>
</parent>
<artifactId>cloud-sql-connector-jdbc-sqlserver</artifactId>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.google.cloud.sql</groupId>
<artifactId>jdbc-socket-factory-core</artifactId>
<version>1.2.1-SNAPSHOT</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
<version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} -->
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
2 changes: 1 addition & 1 deletion versions.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Format:
# module:released-version:current-version

cloud-sql-java-connector:1.2.0:1.2.1-SNAPSHOT
cloud-sql-java-connector:1.2.1:1.2.1

0 comments on commit 42bf079

Please sign in to comment.