Skip to content

Commit 6be6080

Browse files
chore(postgresql-dialect): release 0.54.1
1 parent b67285e commit 6be6080

5 files changed

Lines changed: 27 additions & 7 deletions

File tree

CHANGELOG.md

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

3+
## [0.54.1](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.54.0...v0.54.1) (2026-04-14)
4+
5+
6+
### Dependencies
7+
8+
* override plexus version ([#4298](https://github.com/GoogleCloudPlatform/pgadapter/issues/4298)) ([0a7576d](https://github.com/GoogleCloudPlatform/pgadapter/commit/0a7576dbfd32af087938c12a1effdedd6f4ff055))
9+
* update dependency coverlet.collector to 8.0.1 ([#4303](https://github.com/GoogleCloudPlatform/pgadapter/issues/4303)) ([4647701](https://github.com/GoogleCloudPlatform/pgadapter/commit/4647701dbc8884c13e3e42102744faa39c6dca27))
10+
* update dependency django to v5.2.13 [security] ([#4309](https://github.com/GoogleCloudPlatform/pgadapter/issues/4309)) ([113dc44](https://github.com/GoogleCloudPlatform/pgadapter/commit/113dc44403d54261299d2bb08c6dc3cb0b60b0f9))
11+
* update dependency go to v1.26.2 ([#4310](https://github.com/GoogleCloudPlatform/pgadapter/issues/4310)) ([ffd518c](https://github.com/GoogleCloudPlatform/pgadapter/commit/ffd518cd1053b38353e37f5df45dcd1d59c45066))
12+
* update dependency google.auth to v2.49.2 ([#4320](https://github.com/GoogleCloudPlatform/pgadapter/issues/4320)) ([68446c8](https://github.com/GoogleCloudPlatform/pgadapter/commit/68446c859140a818153c0e24133e8385058a10f2))
13+
* update dependency org.hibernate.orm:hibernate-core to v7.3.1.final ([#4321](https://github.com/GoogleCloudPlatform/pgadapter/issues/4321)) ([79b30a0](https://github.com/GoogleCloudPlatform/pgadapter/commit/79b30a0635cabdbf5c1da43691b02b2d89dbcff8))
14+
* update dependency org.springframework.boot:spring-boot-dependencies to v3.5.13 ([#4313](https://github.com/GoogleCloudPlatform/pgadapter/issues/4313)) ([af33870](https://github.com/GoogleCloudPlatform/pgadapter/commit/af338709fd309b7e01d08a51596ff68194c85483))
15+
* update dependency org.springframework.boot:spring-boot-starter-parent to v3.5.13 ([#4314](https://github.com/GoogleCloudPlatform/pgadapter/issues/4314)) ([d8cf730](https://github.com/GoogleCloudPlatform/pgadapter/commit/d8cf7307b95a37cc9d340cbdd7cc1ceb0919c27e))
16+
* update dependency org.testcontainers:testcontainers to v2.0.4 ([#4326](https://github.com/GoogleCloudPlatform/pgadapter/issues/4326)) ([fa6d30b](https://github.com/GoogleCloudPlatform/pgadapter/commit/fa6d30bfd0bff34eba03252d5f1eb00c0abfa286))
17+
* update dependency phpunit/phpunit to v13 ([#4240](https://github.com/GoogleCloudPlatform/pgadapter/issues/4240)) ([4d23992](https://github.com/GoogleCloudPlatform/pgadapter/commit/4d23992957fbdc1795cf85cd1fc12af733c431a8))
18+
* update dependency requests to v2.33.1 ([#4327](https://github.com/GoogleCloudPlatform/pgadapter/issues/4327)) ([6a4520f](https://github.com/GoogleCloudPlatform/pgadapter/commit/6a4520f87e11f4d9f0a736b38335410148c8810b))
19+
* update dependency ruby to v4.0.2 ([#4328](https://github.com/GoogleCloudPlatform/pgadapter/issues/4328)) ([5fdbafe](https://github.com/GoogleCloudPlatform/pgadapter/commit/5fdbafe7bed2a3d7941d1b898b176616218ad454))
20+
* update dependency testcontainers to v4.14.2 ([#4329](https://github.com/GoogleCloudPlatform/pgadapter/issues/4329)) ([895778b](https://github.com/GoogleCloudPlatform/pgadapter/commit/895778ba12018ae5aec0ab6f710964045a37cacf))
21+
* update golang docker tag to v1.26.2 ([#4330](https://github.com/GoogleCloudPlatform/pgadapter/issues/4330)) ([b67285e](https://github.com/GoogleCloudPlatform/pgadapter/commit/b67285ec18d4ac6ee28b7b5ff8d320011f717c5c))
22+
323
## [0.54.0](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.53.3...v0.54.0) (2026-04-02)
424

525

README.md

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

121121
<!--- {x-version-update-start:google-cloud-spanner-pgadapter:released} -->
122-
You can also download a specific version of the jar. Example (replace `v0.54.0` with the version you want to download):
122+
You can also download a specific version of the jar. Example (replace `v0.54.1` with the version you want to download):
123123
```shell
124-
VERSION=v0.54.0
124+
VERSION=v0.54.1
125125
wget https://storage.googleapis.com/pgadapter-jar-releases/pgadapter-${VERSION}.tar.gz \
126126
&& tar -xzvf pgadapter-${VERSION}.tar.gz
127127
java -jar pgadapter.jar -p my-project -i my-instance -d my-database
@@ -156,7 +156,7 @@ This option is only available for Java/JVM-based applications.
156156
<dependency>
157157
<groupId>com.google.cloud</groupId>
158158
<artifactId>google-cloud-spanner-pgadapter</artifactId>
159-
<version>0.54.0</version>
159+
<version>0.54.1</version>
160160
</dependency>
161161
<!-- [END pgadapter_dependency] -->
162162
```

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.54.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-spanner-pgadapter:current} -->
46+
<version>0.54.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.54.0</version>
17+
<version>0.54.1</version>
1818
</dependency>
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>google-cloud-spanner-pgadapter</artifactId>
22-
<version>0.54.0</version>
22+
<version>0.54.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.54.0:0.54.1-SNAPSHOT
4+
google-cloud-spanner-pgadapter:0.54.1:0.54.1

0 commit comments

Comments
 (0)