Skip to content

Commit 1d79708

Browse files
authored
Release v1.0.11 (#101)
* Updated README.md. * Bump SNAPSHOT versions. * Bump previous versions.
1 parent b64406f commit 1d79708

File tree

12 files changed

+34
-27
lines changed

12 files changed

+34
-27
lines changed

README.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ gcloud auth application-default login
3333

3434
| JDBC Driver Version | Cloud SQL Socket Factory Version |
3535
| -------------------------- | ---------------------------------------- |
36-
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.0.10 |
37-
| mysql-connector-java:6.x | mysql-socket-factory-connector-j-6:1.0.10 |
38-
| mysql-connector-java:5.1.x | mysql-socket-factory:1.0.10 |
36+
| mysql-connector-java:8.x | mysql-socket-factory-connector-j-8:1.0.11 |
37+
| mysql-connector-java:6.x | mysql-socket-factory-connector-j-6:1.0.11 |
38+
| mysql-connector-java:5.1.x | mysql-socket-factory:1.0.11 |
3939

4040

4141
##### Maven
@@ -44,14 +44,14 @@ Include the following in the project's `pom.xml`:
4444
<dependency>
4545
    <groupId>com.google.cloud.sql</groupId>
4646
    <artifactId>mysql-socket-factory-connector-j-8</artifactId>
47-
    <version>1.0.10</version>
47+
    <version>1.0.11</version>
4848
</dependency>
4949
```
5050

5151
#### Gradle
5252
Include the following the project's `gradle.build`
5353
```gradle
54-
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.0.10'
54+
compile 'com.google.cloud.sql:mysql-socket-factory-connector-j-8:1.0.11'
5555
```
5656

5757
#### PostgreSQL
@@ -62,14 +62,14 @@ Include the following in the project's `pom.xml`:
6262
<dependency>
6363
    <groupId>com.google.cloud.sql</groupId>
6464
    <artifactId>postgres-socket-factory</artifactId>
65-
    <version>1.0.10</version>
65+
    <version>1.0.11</version>
6666
</dependency>
6767
```
6868

6969
#### Gradle
7070
Include the following the project's `gradle.build`
7171
```gradle
72-
compile 'com.google.cloud.sql:postgres-socket-factory:1.0.10'
72+
compile 'com.google.cloud.sql:postgres-socket-factory:1.0.11'
7373
```
7474

7575

@@ -114,6 +114,13 @@ jdbc:postgresql://google/<DATABASE_NAME>?cloudSqlInstance=<INSTANCE_CONNECTION_N
114114

115115
## Additional Information
116116

117+
### Specifying IP Type
118+
119+
The `ipTypes` argument can be used to specify a comma delimited list of preferred IP types for
120+
connecting to a Cloud SQL instance. The arguement `ipTypes=PRIVATE` will force the
121+
SocketFactory to connect with an instance's associated private IP. Default value is
122+
`PUBLIC,PRIVATE`.
123+
117124
### Connect with IntelliJ
118125

119126
In order to [connect IntelliJ](https://jetbrains.com/help/idea/connecting-to-a-database.html#mysql)

connector-j-5/pom.xml

Lines changed: 2 additions & 2 deletions
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.0.11-SNAPSHOT</version>
8+
<version>1.0.11</version>
99
</parent>
1010
<artifactId>mysql-socket-factory</artifactId>
1111
<packaging>jar</packaging>
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>com.google.cloud.sql</groupId>
2929
<artifactId>jdbc-socket-factory-core</artifactId>
30-
<version>1.0.11-SNAPSHOT</version>
30+
<version>1.0.11</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>com.github.jnr</groupId>

connector-j-6/pom.xml

Lines changed: 2 additions & 2 deletions
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.0.11-SNAPSHOT</version>
8+
<version>1.0.11</version>
99
</parent>
1010
<artifactId>mysql-socket-factory-connector-j-6</artifactId>
1111
<packaging>jar</packaging>
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>com.google.cloud.sql</groupId>
2929
<artifactId>jdbc-socket-factory-core</artifactId>
30-
<version>1.0.11-SNAPSHOT</version>
30+
<version>1.0.11</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>org.eclipse.jetty</groupId>

connector-j-8/pom.xml

Lines changed: 2 additions & 2 deletions
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.0.11-SNAPSHOT</version>
8+
<version>1.0.11</version>
99
</parent>
1010
<artifactId>mysql-socket-factory-connector-j-8</artifactId>
1111
<packaging>jar</packaging>
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>com.google.cloud.sql</groupId>
2929
<artifactId>jdbc-socket-factory-core</artifactId>
30-
<version>1.0.11-SNAPSHOT</version>
30+
<version>1.0.11</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>org.eclipse.jetty</groupId>

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.0.11-SNAPSHOT</version>
8+
<version>1.0.11</version>
99
</parent>
1010
<artifactId>jdbc-socket-factory-core</artifactId>
1111
<packaging>jar</packaging>

examples/compute-engine/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.google.cloud.sql.example</groupId>
66
<artifactId>mysql-socket-factory-compute-engine</artifactId>
7-
<version>1.0.10</version>
7+
<version>1.0.11</version>
88
<build>
99
<plugins>
1010
<plugin>
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.google.cloud.sql</groupId>
3939
<artifactId>mysql-socket-factory</artifactId>
40-
<version>1.0.10</version>
40+
<version>1.0.11</version>
4141
</dependency>
4242

4343
<dependency>

examples/getting-started/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.google.cloud.sql.example</groupId>
66
<artifactId>mysql-socket-factory-getting-started</artifactId>
7-
<version>1.0.10</version>
7+
<version>1.0.11</version>
88
<build>
99
<plugins>
1010
<plugin>
@@ -43,13 +43,13 @@
4343
<dependency>
4444
<groupId>com.google.cloud.sql</groupId>
4545
<artifactId>mysql-socket-factory</artifactId>
46-
<version>1.0.10</version>
46+
<version>1.0.11</version>
4747
</dependency>
4848

4949
<dependency>
5050
<groupId>com.google.cloud.sql</groupId>
5151
<artifactId>postgres-socket-factory</artifactId>
52-
<version>1.0.10</version>
52+
<version>1.0.11</version>
5353
</dependency>
5454

5555
<dependency>

examples/mysql/compute-engine/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.google.cloud.sql.example</groupId>
66
<artifactId>mysql-socket-factory-compute-engine</artifactId>
7-
<version>1.0.10</version>
7+
<version>1.0.11</version>
88
<build>
99
<plugins>
1010
<plugin>
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.google.cloud.sql</groupId>
3939
<artifactId>mysql-socket-factory</artifactId>
40-
<version>1.0.10</version>
40+
<version>1.0.11</version>
4141
</dependency>
4242

4343
<dependency>

examples/postgres/appengine-standard-java8/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<dependency>
7070
<groupId>com.google.cloud.sql</groupId>
7171
<artifactId>postgres-socket-factory</artifactId>
72-
<version>1.0.10</version>
72+
<version>1.0.11</version>
7373
</dependency>
7474
<!-- [END dependencies] -->
7575
</dependencies>

examples/postgres/compute-engine/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.google.cloud.sql.example</groupId>
66
<artifactId>postgres-socket-factory-compute-engine</artifactId>
7-
<version>1.0.10</version>
7+
<version>1.0.11</version>
88
<build>
99
<plugins>
1010
<plugin>
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.google.cloud.sql</groupId>
3939
<artifactId>postgres-socket-factory</artifactId>
40-
<version>1.0.10</version>
40+
<version>1.0.11</version>
4141
</dependency>
4242

4343
<dependency>

0 commit comments

Comments
 (0)