Skip to content

Commit 9ae85c7

Browse files
committed
Merge branch 'main' into fallback-to-pdml
2 parents f0328a9 + 3cd9cd6 commit 9ae85c7

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

.github/sync-repo-settings.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ branchProtectionRules:
3939
- 'Kokoro - Test: Java GraalVM Native Image'
4040
- 'Kokoro - Test: Java 17 GraalVM Native Image'
4141
- javadoc
42-
42+
- unmanaged_dependency_check
4343
# Identifies the protection rule pattern. Name of the branch to be protected.
4444
# Defaults to `main`
4545
- pattern: 1.21.x

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>google-cloud-spanner-jdbc</artifactId>
7-
<version>2.24.2</version><!-- {x-version-update:google-cloud-spanner-jdbc:current} -->
7+
<version>2.24.3-SNAPSHOT</version><!-- {x-version-update:google-cloud-spanner-jdbc:current} -->
88
<packaging>jar</packaging>
99
<name>Google Cloud Spanner JDBC</name>
1010
<url>https://github.com/googleapis/java-spanner-jdbc</url>
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>com.google.cloud</groupId>
6363
<artifactId>google-cloud-spanner-bom</artifactId>
64-
<version>6.81.2</version>
64+
<version>6.82.0</version>
6565
<type>pom</type>
6666
<scope>import</scope>
6767
</dependency>
@@ -166,7 +166,7 @@
166166
<dependency>
167167
<groupId>org.testcontainers</groupId>
168168
<artifactId>testcontainers</artifactId>
169-
<version>1.20.3</version>
169+
<version>1.20.4</version>
170170
<scope>test</scope>
171171
</dependency>
172172
<dependency>

samples/quickperf/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,19 +67,19 @@
6767
<dependency>
6868
<groupId>com.fasterxml.jackson.core</groupId>
6969
<artifactId>jackson-databind</artifactId>
70-
<version>2.18.1</version>
70+
<version>2.18.2</version>
7171
</dependency>
7272
<!-- Required for unit tests -->
7373
<dependency>
7474
<groupId>org.testcontainers</groupId>
7575
<artifactId>testcontainers</artifactId>
76-
<version>1.20.3</version>
76+
<version>1.20.4</version>
7777
<scope>test</scope>
7878
</dependency>
7979
<dependency>
8080
<groupId>org.springframework.boot</groupId>
8181
<artifactId>spring-boot</artifactId>
82-
<version>3.3.5</version>
82+
<version>3.4.0</version>
8383
<scope>test</scope>
8484
</dependency>
8585
<dependency>

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>google-cloud-spanner-jdbc</artifactId>
31-
<version>2.24.2</version>
31+
<version>2.24.3-SNAPSHOT</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
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>org.testcontainers</groupId>
5656
<artifactId>testcontainers</artifactId>
57-
<version>1.20.3</version>
57+
<version>1.20.4</version>
5858
<scope>test</scope>
5959
</dependency>
6060
<dependency>

samples/spring-data-jdbc/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>com.google.cloud</groupId>
3232
<artifactId>google-cloud-spanner-bom</artifactId>
33-
<version>6.81.1</version>
33+
<version>6.82.0</version>
3434
<scope>import</scope>
3535
<type>pom</type>
3636
</dependency>
@@ -55,7 +55,7 @@
5555
<dependency>
5656
<groupId>org.springframework.boot</groupId>
5757
<artifactId>spring-boot-starter-data-jdbc</artifactId>
58-
<version>3.3.5</version>
58+
<version>3.4.0</version>
5959
</dependency>
6060

6161
<!-- Add both the Cloud Spanner and the PostgreSQL JDBC driver. -->
@@ -119,7 +119,7 @@
119119
<dependency>
120120
<groupId>org.testcontainers</groupId>
121121
<artifactId>testcontainers</artifactId>
122-
<version>1.20.3</version>
122+
<version>1.20.4</version>
123123
<scope>test</scope>
124124
</dependency>
125125
</dependencies>

samples/spring-data-mybatis/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>3.3.5</version>
16+
<version>3.4.0</version>
1717
<relativePath/>
1818
</parent>
1919
<properties>
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>org.testcontainers</groupId>
4444
<artifactId>testcontainers-bom</artifactId>
45-
<version>1.20.3</version>
45+
<version>1.20.4</version>
4646
<scope>import</scope>
4747
<type>pom</type>
4848
</dependency>
@@ -53,7 +53,7 @@
5353
<dependency>
5454
<groupId>org.mybatis.spring.boot</groupId>
5555
<artifactId>mybatis-spring-boot-starter</artifactId>
56-
<version>3.0.3</version>
56+
<version>3.0.4</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>org.mybatis.dynamic-sql</groupId>

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-
google-cloud-spanner-jdbc:2.24.2:2.24.2
4+
google-cloud-spanner-jdbc:2.24.2:2.24.3-SNAPSHOT

0 commit comments

Comments
 (0)