Skip to content

Commit 10cba2d

Browse files
chore(postgresql-dialect): release 0.51.1 (#3840)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 76195b2 commit 10cba2d

File tree

5 files changed

+24
-7
lines changed

5 files changed

+24
-7
lines changed

CHANGELOG.md

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

3+
## [0.51.1](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.51.0...v0.51.1) (2025-10-20)
4+
5+
6+
### Dependencies
7+
8+
* update alpine docker tag to v3.22.2 ([#3848](https://github.com/GoogleCloudPlatform/pgadapter/issues/3848)) ([a96c565](https://github.com/GoogleCloudPlatform/pgadapter/commit/a96c565934e54e4c43aadf2be33fbe3798e9de86))
9+
* update dependency go to v1.25.2 ([#3838](https://github.com/GoogleCloudPlatform/pgadapter/issues/3838)) ([6ee92f4](https://github.com/GoogleCloudPlatform/pgadapter/commit/6ee92f4d867a0c6beea18f6ee00d73fb6836c7d7))
10+
* update dependency go to v1.25.3 ([#3868](https://github.com/GoogleCloudPlatform/pgadapter/issues/3868)) ([f5c6fa3](https://github.com/GoogleCloudPlatform/pgadapter/commit/f5c6fa3228c85c3eab726344c34103f51f10d19c))
11+
* update dependency nunit3testadapter to 5.2.0 ([#3834](https://github.com/GoogleCloudPlatform/pgadapter/issues/3834)) ([a1da1d1](https://github.com/GoogleCloudPlatform/pgadapter/commit/a1da1d1b908c48f2c5cdfb4dfed3bbf0eaf6a0e8))
12+
* update dependency org.postgresql:r2dbc-postgresql to v1.1.0.release ([#3837](https://github.com/GoogleCloudPlatform/pgadapter/issues/3837)) ([f0994f1](https://github.com/GoogleCloudPlatform/pgadapter/commit/f0994f191ccae04ca3b3b049e093be5a548f4eea))
13+
* update dependency testcontainers to v4.13.2 ([#3839](https://github.com/GoogleCloudPlatform/pgadapter/issues/3839)) ([f1cb1f3](https://github.com/GoogleCloudPlatform/pgadapter/commit/f1cb1f3157954a3d3628490780ab55216f9b29d6))
14+
* update github.com/googlecloudplatform/pgadapter/wrappers/golang digest to a1da1d1 ([#3827](https://github.com/GoogleCloudPlatform/pgadapter/issues/3827)) ([9e0d8b2](https://github.com/GoogleCloudPlatform/pgadapter/commit/9e0d8b28b1245f8199014570dbd22e35715b67fd))
15+
* update golang docker tag to v1.25.2 ([#3841](https://github.com/GoogleCloudPlatform/pgadapter/issues/3841)) ([210c805](https://github.com/GoogleCloudPlatform/pgadapter/commit/210c805b4d9ef7ad522db3a8ae8648056ac266fb))
16+
* update module github.com/docker/docker to v28.5.1+incompatible ([#3844](https://github.com/GoogleCloudPlatform/pgadapter/issues/3844)) ([e728e12](https://github.com/GoogleCloudPlatform/pgadapter/commit/e728e121eb3a0ebe20f8bf6095138eca0a6476c3))
17+
* update module golang.org/x/oauth2 to v0.32.0 ([#3845](https://github.com/GoogleCloudPlatform/pgadapter/issues/3845)) ([c737ca2](https://github.com/GoogleCloudPlatform/pgadapter/commit/c737ca2203e3d4be0e0a2f3399525ffa7e7e9b4d))
18+
* update module google.golang.org/api to v0.252.0 ([#3842](https://github.com/GoogleCloudPlatform/pgadapter/issues/3842)) ([4570d78](https://github.com/GoogleCloudPlatform/pgadapter/commit/4570d7865c89d9bdaf027db897c34ad639f06fd8))
19+
320
## [0.51.0](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.50.3...v0.51.0) (2025-10-06)
421

522

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ Use the `-s` option to specify a different local port than the default 5432 if y
118118
PostgreSQL running on your local system.
119119

120120
<!--- {x-version-update-start:google-cloud-spanner-pgadapter:released} -->
121-
You can also download a specific version of the jar. Example (replace `v0.51.0` with the version you want to download):
121+
You can also download a specific version of the jar. Example (replace `v0.51.1` with the version you want to download):
122122
```shell
123-
VERSION=v0.51.0
123+
VERSION=v0.51.1
124124
wget https://storage.googleapis.com/pgadapter-jar-releases/pgadapter-${VERSION}.tar.gz \
125125
&& tar -xzvf pgadapter-${VERSION}.tar.gz
126126
java -jar pgadapter.jar -p my-project -i my-instance -d my-database
@@ -155,7 +155,7 @@ This option is only available for Java/JVM-based applications.
155155
<dependency>
156156
<groupId>com.google.cloud</groupId>
157157
<artifactId>google-cloud-spanner-pgadapter</artifactId>
158-
<version>0.51.0</version>
158+
<version>0.51.1</version>
159159
</dependency>
160160
<!-- [END pgadapter_dependency] -->
161161
```

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
<modelVersion>4.0.0</modelVersion>
4545
<artifactId>google-cloud-spanner-pgadapter</artifactId>
46-
<version>0.51.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-spanner-pgadapter:current} -->
46+
<version>0.51.1</version><!-- {x-version-update:google-cloud-spanner-pgadapter:current} -->
4747
<name>Google Cloud Spanner PostgreSQL Adapter</name>
4848
<packaging>jar</packaging>
4949
<description>

samples/java/jdbc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ The sample application adds the following dependencies:
1414
<dependency>
1515
<groupId>org.postgresql</groupId>
1616
<artifactId>postgresql</artifactId>
17-
<version>0.51.0</version>
17+
<version>0.51.1</version>
1818
</dependency>
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>google-cloud-spanner-pgadapter</artifactId>
22-
<version>0.51.0</version>
22+
<version>0.51.1</version>
2323
</dependency>
2424
<!-- [END pgadapter_and_jdbc_dependency] -->
2525
```

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-pgadapter:0.51.0:0.51.1-SNAPSHOT
4+
google-cloud-spanner-pgadapter:0.51.1:0.51.1

0 commit comments

Comments
 (0)