File tree Expand file tree Collapse file tree 9 files changed +26
-10
lines changed
src/main/java/com/google/cloud/alloydb Expand file tree Collapse file tree 9 files changed +26
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
19
## [ 1.1.6] ( https://github.com/GoogleCloudPlatform/alloydb-java-connector/compare/v1.1.5...v1.1.6 ) (2024-09-10)
4
20
5
21
Original file line number Diff line number Diff line change 23
23
<parent >
24
24
<groupId >com.google.cloud</groupId >
25
25
<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} -->
27
27
<relativePath >../pom.xml</relativePath >
28
28
</parent >
29
29
<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} -->
31
31
<packaging >jar</packaging >
32
32
33
33
<name >Google Cloud AlloyDB JDBC Connector</name >
Original file line number Diff line number Diff line change 17
17
18
18
class Version {
19
19
// {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" ;
21
21
// {x-version-update-end}
22
22
}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Include the following in the project's `pom.xml`:
19
19
<dependency>
20
20
<groupId>com.google.cloud</groupId>
21
21
<artifactId>alloydb-jdbc-connector</artifactId>
22
- <version>1.1.6 </version>
22
+ <version>1.1.7 </version>
23
23
</dependency>
24
24
```
25
25
<!-- {x-version-update-end} -->
@@ -40,7 +40,7 @@ Include the following the project's `gradle.build`
40
40
<!-- {x-version-update-start:alloydb-jdbc-connector:released} -->
41
41
``` gradle
42
42
// 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 '
44
44
```
45
45
<!-- {x-version-update-end} -->
46
46
Original file line number Diff line number Diff line change 19
19
<modelVersion >4.0.0</modelVersion >
20
20
<artifactId >alloydb-connector-parent</artifactId >
21
21
<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} -->
23
23
<name >Google Cloud AlloyDB Java Connector Parent</name >
24
24
<url >https://github.com/GoogleCloudPlatform/alloydb-java-connector</url >
25
25
<description >
Original file line number Diff line number Diff line change 30
30
<dependency >
31
31
<groupId >com.google.cloud</groupId >
32
32
<artifactId >alloydb-jdbc-connector</artifactId >
33
- <version >1.1.7-SNAPSHOT </version >
33
+ <version >1.1.7</version >
34
34
</dependency >
35
35
<!-- {x-version-update-end} -->
36
36
<!-- [END _install_without_bom] -->
Original file line number Diff line number Diff line change 28
28
<dependency >
29
29
<groupId >com.google.cloud</groupId >
30
30
<artifactId >alloydb-jdbc-connector</artifactId >
31
- <version >1.1.7-SNAPSHOT </version >
31
+ <version >1.1.7</version >
32
32
</dependency >
33
33
<!-- {x-version-update-end} -->
34
34
Original file line number Diff line number Diff line change 29
29
<dependency >
30
30
<groupId >com.google.cloud</groupId >
31
31
<artifactId >alloydb-jdbc-connector</artifactId >
32
- <version >1.1.7-SNAPSHOT </version >
32
+ <version >1.1.7</version >
33
33
</dependency >
34
34
<!-- {x-version-update-end} -->
35
35
Original file line number Diff line number Diff line change 1
1
# Format:
2
2
# module:released-version:current-version
3
3
4
- alloydb-jdbc-connector:1.1.6 :1.1.7-SNAPSHOT
4
+ alloydb-jdbc-connector:1.1.7 :1.1.7
You can’t perform that action at this time.
0 commit comments