Skip to content

Commit 5c40205

Browse files
chore(main): release 1.1.7 (#589)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 0a3d739 commit 5c40205

File tree

9 files changed

+26
-10
lines changed

9 files changed

+26
-10
lines changed

CHANGELOG.md

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

3+
## [1.1.7](https://github.com/GoogleCloudPlatform/alloydb-java-connector/compare/v1.1.6...v1.1.7) (2024-11-14)
4+
5+
6+
### Dependencies
7+
8+
* migrate config .github/renovate.json5 ([#594](https://github.com/GoogleCloudPlatform/alloydb-java-connector/issues/594)) ([62b5096](https://github.com/GoogleCloudPlatform/alloydb-java-connector/commit/62b5096a42d180e7082ef325bd776bad2429cea5))
9+
* Update JUnit dependencies ([#578](https://github.com/GoogleCloudPlatform/alloydb-java-connector/issues/578)) ([f2852b4](https://github.com/GoogleCloudPlatform/alloydb-java-connector/commit/f2852b453c9c29f2bec78cdaaf47a3f7292faad5))
10+
* Update Non-major dependencies ([#584](https://github.com/GoogleCloudPlatform/alloydb-java-connector/issues/584)) ([0a3d739](https://github.com/GoogleCloudPlatform/alloydb-java-connector/commit/0a3d73908231ab843dc08a52e6921c6c8038483b))
11+
12+
13+
### Documentation
14+
15+
* add link to Spring Boot starter ([#588](https://github.com/GoogleCloudPlatform/alloydb-java-connector/issues/588)) ([195553b](https://github.com/GoogleCloudPlatform/alloydb-java-connector/commit/195553b3987b4619063d88c9df1be598fb324112))
16+
* add steps for testing the connector ([#582](https://github.com/GoogleCloudPlatform/alloydb-java-connector/issues/582)) ([83acba1](https://github.com/GoogleCloudPlatform/alloydb-java-connector/commit/83acba14ff79b24785783913243895bcc9a81865))
17+
* improve debug logging guidance ([#595](https://github.com/GoogleCloudPlatform/alloydb-java-connector/issues/595)) ([fbac8aa](https://github.com/GoogleCloudPlatform/alloydb-java-connector/commit/fbac8aa86e4866c424d78daeba422e80e95feabe))
18+
319
## [1.1.6](https://github.com/GoogleCloudPlatform/alloydb-java-connector/compare/v1.1.5...v1.1.6) (2024-09-10)
420

521

alloydb-jdbc-connector/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
<parent>
2424
<groupId>com.google.cloud</groupId>
2525
<artifactId>alloydb-connector-parent</artifactId>
26-
<version>1.1.7-SNAPSHOT</version><!-- {x-version-update:alloydb-jdbc-connector:current} -->
26+
<version>1.1.7</version><!-- {x-version-update:alloydb-jdbc-connector:current} -->
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929
<artifactId>alloydb-jdbc-connector</artifactId>
30-
<version>1.1.7-SNAPSHOT</version><!-- {x-version-update:alloydb-jdbc-connector:current} -->
30+
<version>1.1.7</version><!-- {x-version-update:alloydb-jdbc-connector:current} -->
3131
<packaging>jar</packaging>
3232

3333
<name>Google Cloud AlloyDB JDBC Connector</name>

alloydb-jdbc-connector/src/main/java/com/google/cloud/alloydb/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717

1818
class Version {
1919
// {x-version-update-start:alloydb-jdbc-connector:current}
20-
static final String VERSION = "1.1.7-SNAPSHOT";
20+
static final String VERSION = "1.1.7";
2121
// {x-version-update-end}
2222
}

docs/jdbc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Include the following in the project's `pom.xml`:
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>alloydb-jdbc-connector</artifactId>
22-
<version>1.1.6</version>
22+
<version>1.1.7</version>
2323
</dependency>
2424
```
2525
<!-- {x-version-update-end} -->
@@ -40,7 +40,7 @@ Include the following the project's `gradle.build`
4040
<!-- {x-version-update-start:alloydb-jdbc-connector:released} -->
4141
```gradle
4242
// Add connector with the latest version
43-
implementation group: 'com.google.cloud', name: 'alloydb-jdbc-connector', version: '1.1.6'
43+
implementation group: 'com.google.cloud', name: 'alloydb-jdbc-connector', version: '1.1.7'
4444
```
4545
<!-- {x-version-update-end} -->
4646

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<modelVersion>4.0.0</modelVersion>
2020
<artifactId>alloydb-connector-parent</artifactId>
2121
<packaging>pom</packaging>
22-
<version>1.1.7-SNAPSHOT</version><!-- {x-version-update:alloydb-jdbc-connector:current} -->
22+
<version>1.1.7</version><!-- {x-version-update:alloydb-jdbc-connector:current} -->
2323
<name>Google Cloud AlloyDB Java Connector Parent</name>
2424
<url>https://github.com/GoogleCloudPlatform/alloydb-java-connector</url>
2525
<description>

samples/install-without-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>com.google.cloud</groupId>
3232
<artifactId>alloydb-jdbc-connector</artifactId>
33-
<version>1.1.7-SNAPSHOT</version>
33+
<version>1.1.7</version>
3434
</dependency>
3535
<!-- {x-version-update-end} -->
3636
<!-- [END _install_without_bom] -->

samples/snapshot/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>com.google.cloud</groupId>
3030
<artifactId>alloydb-jdbc-connector</artifactId>
31-
<version>1.1.7-SNAPSHOT</version>
31+
<version>1.1.7</version>
3232
</dependency>
3333
<!-- {x-version-update-end} -->
3434

samples/snippets/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>com.google.cloud</groupId>
3131
<artifactId>alloydb-jdbc-connector</artifactId>
32-
<version>1.1.7-SNAPSHOT</version>
32+
<version>1.1.7</version>
3333
</dependency>
3434
<!-- {x-version-update-end} -->
3535

versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Format:
22
# module:released-version:current-version
33

4-
alloydb-jdbc-connector:1.1.6:1.1.7-SNAPSHOT
4+
alloydb-jdbc-connector:1.1.7:1.1.7

0 commit comments

Comments
 (0)