Skip to content

Commit 36357f3

Browse files
chore(postgresql-dialect): release 0.47.1 (#3239)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent 25272b0 commit 36357f3

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.47.1](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.47.0...v0.47.1) (2025-05-01)
4+
5+
6+
### Bug Fixes
7+
8+
* encoded string too long could be returned ([#3238](https://github.com/GoogleCloudPlatform/pgadapter/issues/3238)) ([12ff70c](https://github.com/GoogleCloudPlatform/pgadapter/commit/12ff70c99c39651f9302945ab4051c2e373c6d58)), closes [#3235](https://github.com/GoogleCloudPlatform/pgadapter/issues/3235)
9+
* send error for invalid startup message ([#3240](https://github.com/GoogleCloudPlatform/pgadapter/issues/3240)) ([71a49a3](https://github.com/GoogleCloudPlatform/pgadapter/commit/71a49a3d25e5565fffe2a75cccf5045beecea4d9)), closes [#3237](https://github.com/GoogleCloudPlatform/pgadapter/issues/3237)
10+
* send UUID values as untyped strings to Spanner ([#3236](https://github.com/GoogleCloudPlatform/pgadapter/issues/3236)) ([00cf1f2](https://github.com/GoogleCloudPlatform/pgadapter/commit/00cf1f211a189bfafc0a3794042d8124088d9d5d))
11+
12+
13+
### Dependencies
14+
15+
* update dependency psycopg to v3.2.7 ([#3228](https://github.com/GoogleCloudPlatform/pgadapter/issues/3228)) ([a076b35](https://github.com/GoogleCloudPlatform/pgadapter/commit/a076b358bf656b34c2955066f45d9380c3bb7555))
16+
* update dependency psycopg-binary to v3.2.7 ([#3229](https://github.com/GoogleCloudPlatform/pgadapter/issues/3229)) ([e72c53c](https://github.com/GoogleCloudPlatform/pgadapter/commit/e72c53cf1c4f507690f254136cb564377135ec6c))
17+
* update github.com/googlecloudplatform/pgadapter/wrappers/golang digest to 681c208 ([#3225](https://github.com/GoogleCloudPlatform/pgadapter/issues/3225)) ([25272b0](https://github.com/GoogleCloudPlatform/pgadapter/commit/25272b0701011aa3ed14d7080772e3953c1d80bc))
18+
* update github.com/googlecloudplatform/pgadapter/wrappers/golang digest to bdcc1fb ([#3193](https://github.com/GoogleCloudPlatform/pgadapter/issues/3193)) ([d31eab4](https://github.com/GoogleCloudPlatform/pgadapter/commit/d31eab4f20cf21b9f887633e4328629a9506c78c))
19+
320
## [0.47.0](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.46.2...v0.47.0) (2025-04-30)
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.47.0` with the version you want to download):
121+
You can also download a specific version of the jar. Example (replace `v0.47.1` with the version you want to download):
122122
```shell
123-
VERSION=v0.47.0
123+
VERSION=v0.47.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.47.0</version>
158+
<version>0.47.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.47.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-spanner-pgadapter:current} -->
46+
<version>0.47.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.47.0</version>
17+
<version>0.47.1</version>
1818
</dependency>
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>google-cloud-spanner-pgadapter</artifactId>
22-
<version>0.47.0</version>
22+
<version>0.47.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.47.0:0.47.1-SNAPSHOT
4+
google-cloud-spanner-pgadapter:0.47.1:0.47.1

0 commit comments

Comments
 (0)