From 051ae1b75a08a695ce1f96bcea7ce7ca49f798c9 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Thu, 16 Feb 2023 09:21:18 -0500 Subject: [PATCH] Update docs for Release 42.5.4 (#2812) * Update docs and add changelog for release 42.5.4 * increment version to 42.5.4 * Include previous 3 versions in older versions * move release to Feb 16 --- CHANGELOG.md | 8 ++++++ .../changelogs/2023-02-16-42.5.4-release.md | 27 +++++++++++++++++++ docs/data/homepagedata.toml | 6 ++--- docs/data/versions.toml | 18 ++++++++++--- docs/layouts/partials/home/info.html | 3 ++- gradle.properties | 2 +- 6 files changed, 56 insertions(+), 8 deletions(-) create mode 100644 docs/content/changelogs/2023-02-16-42.5.4-release.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 3817ccd54f..f2c2670f62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Fixed +## [42.5.4] (2023-02-15 10:21:04 -0500) + +### Fixed +fix: fix testGetSQLTypeQueryCache by searching for xid type. We used to search for box type but it is now cached. xid is not cached, this nuance is required for the test. +fix OidValueCorrectnessTest BOX_ARRAY OID, by adding BOX_ARRAY to the oidTypeName map [PR #2810]((https://github.com/pgjdbc/pgjdbc/pull/2810). +fixes [Issue #2804](https://github.com/pgjdbc/pgjdbc/issues/2804). +fix: Make sure that github CI runs tests on all [PRs #2809]((https://github.com/pgjdbc/pgjdbc/pull/2809)). + ## [42.5.3] (2023-02-03 08:24:50 -0500) ### Fixed diff --git a/docs/content/changelogs/2023-02-16-42.5.4-release.md b/docs/content/changelogs/2023-02-16-42.5.4-release.md new file mode 100644 index 0000000000..17c8e7ca2c --- /dev/null +++ b/docs/content/changelogs/2023-02-16-42.5.4-release.md @@ -0,0 +1,27 @@ +--- +title: PostgreSQL JDBC Driver 42.5.4 Released +date: 2023-02-16 08:21:02 -0500 +categories: + - new_release +version: 42.5.4 +--- +**Notable changes** + + +### Fixed +fix: fix `testGetSQLTypeQueryCache` by searching for xid type. We used to search for box type but it is now cached. xid is not cached, this nuance is required for the test.\ +fix `OidValueCorrectnessTest` BOX_ARRAY OID, by adding BOX_ARRAY to the `oidTypeName` map [PR #2810]((https://github.com/pgjdbc/pgjdbc/pull/2810) +fixes [Issue #2804](https://github.com/pgjdbc/pgjdbc/issues/2804).\ +fix: Make sure that github CI runs tests on all [PRs #2809]((https://github.com/pgjdbc/pgjdbc/pull/2809)). + + + + +**Commits by author** + +Dave Cramer (5): + Make sure that github CI runs tests on all PRs [PR 2809](https://github.com/pgjdbc/pgjdbc/pull/2809)\ + fix: fix testGetSQLTypeQueryCache by searching for xid type. We used to search for box type but it is now cached [PR 2810](https://github.com/pgjdbc/pgjdbc/pull/2810) + + + \ No newline at end of file diff --git a/docs/data/homepagedata.toml b/docs/data/homepagedata.toml index 25ffaa27ca..d22876cfb2 100644 --- a/docs/data/homepagedata.toml +++ b/docs/data/homepagedata.toml @@ -15,9 +15,9 @@ path = "/icons/driver-icon.svg" # Releases Info [[info]] -date = "3 February 2023" -url = "/changelogs/2023-02-03-42.5.3-release/" -version = "42.5.3" +date = "16 February 2023" +url = "/changelogs/2023-02-16-42.5.4-release/" +version = "42.5.4" [[info]] date = "23 October 2022" diff --git a/docs/data/versions.toml b/docs/data/versions.toml index ad44dacf19..5ba2e9e154 100644 --- a/docs/data/versions.toml +++ b/docs/data/versions.toml @@ -2,10 +2,10 @@ [[recent]] j_name= "Java 8" -version= "42.5.3" +version= "42.5.4" suffix="" -description= "If you are using Java 8 or newer then you should use the JDBC 4.2 version." -url= "/download/postgresql-42.5.3.jar" +description= "If you are using Java 8 or newer then you should use the JDBC 4.2 version." +url= "/download/postgresql-42.5.4.jar" [[recent]] j_name= "Java 7" @@ -23,6 +23,18 @@ url= "/download/postgresql-42.2.27.jre6.jar" # Past Versions +[[past]] +v_name= "Postgresql JDBC 42.5.3" +version= "42.5.3" +suffix="" +url= "/download/postgresql-42.5.3.jar" + +[[past]] +v_name= "Postgresql JDBC 42.5.2" +version= "42.5.2" +suffix="" +url= "/download/postgresql-42.5.2.jar" + [[past]] v_name= "Postgresql JDBC 42.5.1" version= "42.5.1" diff --git a/docs/layouts/partials/home/info.html b/docs/layouts/partials/home/info.html index 46a0af490e..b128ec81ae 100644 --- a/docs/layouts/partials/home/info.html +++ b/docs/layouts/partials/home/info.html @@ -15,7 +15,8 @@

Latest Releases

- pgJDBC has released v42.5.3 on 3 February, 2023. This release fixes a regression in 42.5.2 + pgJDBC has released v42.5.4 on 16 February, 2023. This release fixes some tests that were failing in 42.5.3. + There are no changes to functionality.