Skip to content

Commit

Permalink
chore(postgresql-dialect): release 0.33.3
Browse files Browse the repository at this point in the history
  • Loading branch information
release-please[bot] committed May 27, 2024
1 parent b6b3677 commit bff21dc
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.33.3](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.33.2...v0.33.3) (2024-05-27)


### Dependencies

* update alpine docker tag ([#1844](https://github.com/GoogleCloudPlatform/pgadapter/issues/1844)) ([6f5489d](https://github.com/GoogleCloudPlatform/pgadapter/commit/6f5489dabe65b2bc46167174f33d80c11617d76c))
* update dependency com.spotify.fmt:fmt-maven-plugin to v2.23 ([#1832](https://github.com/GoogleCloudPlatform/pgadapter/issues/1832)) ([b6b3677](https://github.com/GoogleCloudPlatform/pgadapter/commit/b6b3677ddf3d536c6ffaa1146a22a5d507b20b40))
* update dependency commons-cli:commons-cli to v1.8.0 ([#1858](https://github.com/GoogleCloudPlatform/pgadapter/issues/1858)) ([97eb752](https://github.com/GoogleCloudPlatform/pgadapter/commit/97eb752c6aedab65089120ddafe9449911466f05))
* update dependency org.jetbrains.kotlin:kotlin-stdlib-jdk8 to v2 ([#1815](https://github.com/GoogleCloudPlatform/pgadapter/issues/1815)) ([c90f221](https://github.com/GoogleCloudPlatform/pgadapter/commit/c90f221d061ab1eefa7024d77828f07fa6055ad7))
* update dependency org.springframework.boot:spring-boot-dependencies to v3.3.0 ([#1848](https://github.com/GoogleCloudPlatform/pgadapter/issues/1848)) ([ef04d3b](https://github.com/GoogleCloudPlatform/pgadapter/commit/ef04d3b56a37e13dce746f5dda7284f09b7dc5de))
* update dependency org.springframework.boot:spring-boot-starter-parent to v3.3.0 ([#1849](https://github.com/GoogleCloudPlatform/pgadapter/issues/1849)) ([b3bae1b](https://github.com/GoogleCloudPlatform/pgadapter/commit/b3bae1b582e319d8563596d87abcbfadcfa5c838))
* update dependency testcontainers to v4.5.0 ([#1869](https://github.com/GoogleCloudPlatform/pgadapter/issues/1869)) ([cac69d1](https://github.com/GoogleCloudPlatform/pgadapter/commit/cac69d11e4d726ebd3ba001f3ae6142a17281516))
* update github.com/googlecloudplatform/pgadapter/wrappers/golang digest to ef04d3b ([#1840](https://github.com/GoogleCloudPlatform/pgadapter/issues/1840)) ([a305a6b](https://github.com/GoogleCloudPlatform/pgadapter/commit/a305a6b2632e7a2bd6439f0eede4450c9711adb7))
* update module cloud.google.com/go/spanner to v1.63.0 ([#1862](https://github.com/GoogleCloudPlatform/pgadapter/issues/1862)) ([a40a88e](https://github.com/GoogleCloudPlatform/pgadapter/commit/a40a88e5aafd00010a38945b1436917ecbb0d7ba))
* update module github.com/jackc/pgx/v5 to v5.6.0 ([#1870](https://github.com/GoogleCloudPlatform/pgadapter/issues/1870)) ([5fd62de](https://github.com/GoogleCloudPlatform/pgadapter/commit/5fd62debcae24ae6ce0a8798304c6b679b260d4b))
* update spring-boot.version to v3.3.0 ([#1851](https://github.com/GoogleCloudPlatform/pgadapter/issues/1851)) ([f789874](https://github.com/GoogleCloudPlatform/pgadapter/commit/f789874a71522391d80c414ebf1197c35767a793))

## [0.33.2](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.33.1...v0.33.2) (2024-05-22)


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ Use the `-s` option to specify a different local port than the default 5432 if y
PostgreSQL running on your local system.

<!--- {x-version-update-start:google-cloud-spanner-pgadapter:released} -->
You can also download a specific version of the jar. Example (replace `v0.33.2` with the version you want to download):
You can also download a specific version of the jar. Example (replace `v0.33.3` with the version you want to download):
```shell
VERSION=v0.33.2
VERSION=v0.33.3
wget https://storage.googleapis.com/pgadapter-jar-releases/pgadapter-${VERSION}.tar.gz \
&& tar -xzvf pgadapter-${VERSION}.tar.gz
java -jar pgadapter.jar -p my-project -i my-instance -d my-database
Expand Down Expand Up @@ -150,7 +150,7 @@ This option is only available for Java/JVM-based applications.
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-spanner-pgadapter</artifactId>
<version>0.33.2</version>
<version>0.33.3</version>
</dependency>
<!-- [END pgadapter_dependency] -->
```
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

<modelVersion>4.0.0</modelVersion>
<artifactId>google-cloud-spanner-pgadapter</artifactId>
<version>0.33.3-SNAPSHOT</version><!-- {x-version-update:google-cloud-spanner-pgadapter:current} -->
<version>0.33.3</version><!-- {x-version-update:google-cloud-spanner-pgadapter:current} -->
<name>Google Cloud Spanner PostgreSQL Adapter</name>
<packaging>jar</packaging>
<description>
Expand Down
4 changes: 2 additions & 2 deletions samples/java/jdbc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ The sample application adds the following dependencies:
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>0.33.2</version>
<version>0.33.3</version>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-spanner-pgadapter</artifactId>
<version>0.33.2</version>
<version>0.33.3</version>
</dependency>
<!-- [END pgadapter_and_jdbc_dependency] -->
```
Expand Down
2 changes: 1 addition & 1 deletion versions.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Format:
# module:released-version:current-version

google-cloud-spanner-pgadapter:0.33.2:0.33.3-SNAPSHOT
google-cloud-spanner-pgadapter:0.33.3:0.33.3

0 comments on commit bff21dc

Please sign in to comment.