Skip to content

Commit

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

## [0.35.0](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.34.0...v0.35.0) (2024-06-13)


### Features

* support RESET ALL for the Spanner connection ([#1904](https://github.com/GoogleCloudPlatform/pgadapter/issues/1904)) ([1056075](https://github.com/GoogleCloudPlatform/pgadapter/commit/105607572d790af689c13c0ebed1a7aa53b3d565))


### Dependencies

* update module google.golang.org/api to v0.184.0 ([#1959](https://github.com/GoogleCloudPlatform/pgadapter/issues/1959)) ([5b883e4](https://github.com/GoogleCloudPlatform/pgadapter/commit/5b883e445c8a93a1bae6b40607163ba05f350cca))
* update module gorm.io/datatypes to v1.2.1 ([#1952](https://github.com/GoogleCloudPlatform/pgadapter/issues/1952)) ([2ce76e9](https://github.com/GoogleCloudPlatform/pgadapter/commit/2ce76e92ab4441fcbade6d7878118c5086c8b878))
* update module gorm.io/driver/postgres to v1.5.8 ([#1950](https://github.com/GoogleCloudPlatform/pgadapter/issues/1950)) ([ab31da1](https://github.com/GoogleCloudPlatform/pgadapter/commit/ab31da10238fc42e1e81f66d988c42e186c3b0ce))
* update module gorm.io/driver/postgres to v1.5.9 ([#1951](https://github.com/GoogleCloudPlatform/pgadapter/issues/1951)) ([86d1498](https://github.com/GoogleCloudPlatform/pgadapter/commit/86d1498088bccbddcc9be8fbe9f76be2ce1f939d))


### Documentation

* add sample for PHP PDO ([#1945](https://github.com/GoogleCloudPlatform/pgadapter/issues/1945)) ([7844869](https://github.com/GoogleCloudPlatform/pgadapter/commit/78448690198b7f69e4e45bac4d5bd36f4d0405a3))
* enable pooling for dotnet samples ([#1941](https://github.com/GoogleCloudPlatform/pgadapter/issues/1941)) ([b67b03d](https://github.com/GoogleCloudPlatform/pgadapter/commit/b67b03d4f05a48193c600c541683d3f716f62916))
* update Sequelize tests and sample ([#1949](https://github.com/GoogleCloudPlatform/pgadapter/issues/1949)) ([5342ff8](https://github.com/GoogleCloudPlatform/pgadapter/commit/5342ff80fd3f248d64a6025f3a6dbd77ba773e37))

## [0.34.0](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.33.2...v0.34.0) (2024-06-07)


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.34.0` with the version you want to download):
You can also download a specific version of the jar. Example (replace `v0.35.0` with the version you want to download):
```shell
VERSION=v0.34.0
VERSION=v0.35.0
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.34.0</version>
<version>0.35.0</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.34.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-spanner-pgadapter:current} -->
<version>0.35.0</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.34.0</version>
<version>0.35.0</version>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-spanner-pgadapter</artifactId>
<version>0.34.0</version>
<version>0.35.0</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.34.0:0.34.1-SNAPSHOT
google-cloud-spanner-pgadapter:0.35.0:0.35.0

0 comments on commit 70859d6

Please sign in to comment.