Skip to content

Commit 2196209

Browse files
chore(postgresql-dialect): release 0.49.0 (#3575)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 0587e99 commit 2196209

File tree

6 files changed

+32
-8
lines changed

6 files changed

+32
-8
lines changed

CHANGELOG.md

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

3+
## [0.49.0](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.48.5...v0.49.0) (2025-07-29)
4+
5+
6+
### Features
7+
8+
* add command option for tools ([#3570](https://github.com/GoogleCloudPlatform/pgadapter/issues/3570)) ([69a4967](https://github.com/GoogleCloudPlatform/pgadapter/commit/69a49672f8948c899bdbe2793be2de6f4e4e4c99))
9+
10+
11+
### Bug Fixes
12+
13+
* typo in native image build script ([#3177](https://github.com/GoogleCloudPlatform/pgadapter/issues/3177)) ([c9e6e69](https://github.com/GoogleCloudPlatform/pgadapter/commit/c9e6e69287aac736f7b5455ba0edd70907de1d02))
14+
15+
16+
### Dependencies
17+
18+
* update alpine docker tag to v3.22.1 ([#3561](https://github.com/GoogleCloudPlatform/pgadapter/issues/3561)) ([3eddc06](https://github.com/GoogleCloudPlatform/pgadapter/commit/3eddc06e0332cc268c7b6cb3ac0cc1f3df5d1ed0))
19+
* update dependency com.google.googlejavaformat:google-java-format to v1.28.0 ([#3566](https://github.com/GoogleCloudPlatform/pgadapter/issues/3566)) ([eab421f](https://github.com/GoogleCloudPlatform/pgadapter/commit/eab421f23366c528c5b8d6d0dd5c48ecead7df61))
20+
* update dependency org.hibernate.orm:hibernate-core to v7.0.8.final ([#3572](https://github.com/GoogleCloudPlatform/pgadapter/issues/3572)) ([632544c](https://github.com/GoogleCloudPlatform/pgadapter/commit/632544cd2febcf77b6df7e0e1d42f3b1086bfb14))
21+
* update dependency org.springframework.boot:spring-boot-starter-parent to v3.5.4 ([#3562](https://github.com/GoogleCloudPlatform/pgadapter/issues/3562)) ([e6ab659](https://github.com/GoogleCloudPlatform/pgadapter/commit/e6ab6592a22c1a0a577ee121b207058143dc30e8))
22+
* update dependency testcontainers to v4.12.0 ([#3574](https://github.com/GoogleCloudPlatform/pgadapter/issues/3574)) ([0daba42](https://github.com/GoogleCloudPlatform/pgadapter/commit/0daba428e8797af76f386fffc9c1670f58c64986))
23+
* update maven docker tag to v3.9.11 ([#3563](https://github.com/GoogleCloudPlatform/pgadapter/issues/3563)) ([7f9e4f0](https://github.com/GoogleCloudPlatform/pgadapter/commit/7f9e4f0390b556a310b3cba5e7e25ba370a26604))
24+
* update module github.com/testcontainers/testcontainers-go to v0.38.0 ([#3576](https://github.com/GoogleCloudPlatform/pgadapter/issues/3576)) ([0861218](https://github.com/GoogleCloudPlatform/pgadapter/commit/086121864f312cb7afe5f7ca2be767887cbfd9f6))
25+
* update spring-boot.version to v3.5.4 ([#3564](https://github.com/GoogleCloudPlatform/pgadapter/issues/3564)) ([62eb13d](https://github.com/GoogleCloudPlatform/pgadapter/commit/62eb13d64417c5e92cdef5be7db85511b8cebc63))
26+
327
## [0.48.5](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.48.4...v0.48.5) (2025-07-25)
428

529

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.48.5` with the version you want to download):
121+
You can also download a specific version of the jar. Example (replace `v0.49.0` with the version you want to download):
122122
```shell
123-
VERSION=v0.48.5
123+
VERSION=v0.49.0
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.48.5</version>
158+
<version>0.49.0</version>
159159
</dependency>
160160
<!-- [END pgadapter_dependency] -->
161161
```

benchmarks/latency-comparison/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<dependency>
6060
<groupId>com.google.cloud</groupId>
6161
<artifactId>google-cloud-spanner-jdbc</artifactId>
62-
<version>2.31.3</version>
62+
<version>2.31.2</version>
6363
<exclusions>
6464
<exclusion>
6565
<groupId>io.opentelemetry</groupId>

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.48.6-SNAPSHOT</version><!-- {x-version-update:google-cloud-spanner-pgadapter:current} -->
46+
<version>0.49.0</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.48.5</version>
17+
<version>0.49.0</version>
1818
</dependency>
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>google-cloud-spanner-pgadapter</artifactId>
22-
<version>0.48.5</version>
22+
<version>0.49.0</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.48.5:0.48.6-SNAPSHOT
4+
google-cloud-spanner-pgadapter:0.49.0:0.49.0

0 commit comments

Comments
 (0)