Skip to content

Commit 2e3b181

Browse files
chore(postgresql-dialect): release 0.48.2 (#3392)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 7eae524 commit 2e3b181

File tree

5 files changed

+26
-7
lines changed

5 files changed

+26
-7
lines changed

CHANGELOG.md

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

3+
## [0.48.2](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.48.1...v0.48.2) (2025-06-04)
4+
5+
6+
### Bug Fixes
7+
8+
* clean up connection handler if connection fails ([#3405](https://github.com/GoogleCloudPlatform/pgadapter/issues/3405)) ([7eae524](https://github.com/GoogleCloudPlatform/pgadapter/commit/7eae5247c6bc09ed40037ef7d3654441af477b16)), closes [#3402](https://github.com/GoogleCloudPlatform/pgadapter/issues/3402)
9+
10+
11+
### Dependencies
12+
13+
* update alpine docker tag ([#3395](https://github.com/GoogleCloudPlatform/pgadapter/issues/3395)) ([92c7712](https://github.com/GoogleCloudPlatform/pgadapter/commit/92c771285704350bc79b258f1ef211286ce84ae8))
14+
* update dependency microsoft.net.test.sdk to 17.14.1 ([#3398](https://github.com/GoogleCloudPlatform/pgadapter/issues/3398)) ([3caf0ce](https://github.com/GoogleCloudPlatform/pgadapter/commit/3caf0ce65a6ed9ba9b629dd6a900ba18df38c338))
15+
* update dependency org.bouncycastle:bcpkix-jdk18on to v1.81 ([#3404](https://github.com/GoogleCloudPlatform/pgadapter/issues/3404)) ([6cbd8c0](https://github.com/GoogleCloudPlatform/pgadapter/commit/6cbd8c0c1ed859dbdcc18ee0bc3c7005ad91fb1b))
16+
* update dependency org.checkerframework:checker-qual to v3.49.4 ([#3396](https://github.com/GoogleCloudPlatform/pgadapter/issues/3396)) ([2324d57](https://github.com/GoogleCloudPlatform/pgadapter/commit/2324d57014d80ddafea5fdef24966c1da43de451))
17+
* update dependency org.postgresql:postgresql to v42.7.6 ([#3371](https://github.com/GoogleCloudPlatform/pgadapter/issues/3371)) ([463cf4f](https://github.com/GoogleCloudPlatform/pgadapter/commit/463cf4f64c99f9b79dc0037feaeb9239b647bef3))
18+
* update github.com/googlecloudplatform/pgadapter/wrappers/golang digest to 5da6c2e ([#3276](https://github.com/GoogleCloudPlatform/pgadapter/issues/3276)) ([630efdb](https://github.com/GoogleCloudPlatform/pgadapter/commit/630efdbfb78d5aae26ff7c411a71f6d5a33e9236))
19+
* update module github.com/docker/docker to v28.2.2+incompatible ([#3394](https://github.com/GoogleCloudPlatform/pgadapter/issues/3394)) ([472415c](https://github.com/GoogleCloudPlatform/pgadapter/commit/472415c6fd70ea5f91f44308826a71bc889d4961))
20+
* update module google.golang.org/api to v0.236.0 ([#3401](https://github.com/GoogleCloudPlatform/pgadapter/issues/3401)) ([b4b6f94](https://github.com/GoogleCloudPlatform/pgadapter/commit/b4b6f94155ee16dca5def7221e5f3c94b80b398b))
21+
322
## [0.48.1](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.48.0...v0.48.1) (2025-05-30)
423

524

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.1` with the version you want to download):
121+
You can also download a specific version of the jar. Example (replace `v0.48.2` with the version you want to download):
122122
```shell
123-
VERSION=v0.48.1
123+
VERSION=v0.48.2
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.1</version>
158+
<version>0.48.2</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.48.2-SNAPSHOT</version><!-- {x-version-update:google-cloud-spanner-pgadapter:current} -->
46+
<version>0.48.2</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.1</version>
17+
<version>0.48.2</version>
1818
</dependency>
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>google-cloud-spanner-pgadapter</artifactId>
22-
<version>0.48.1</version>
22+
<version>0.48.2</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.1:0.48.2-SNAPSHOT
4+
google-cloud-spanner-pgadapter:0.48.2:0.48.2

0 commit comments

Comments
 (0)