Skip to content

Commit

Permalink
Update docs for Release 42.5.4 (#2812)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
davecramer committed Feb 16, 2023
1 parent 3d13b43 commit 051ae1b
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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
Expand Down
27 changes: 27 additions & 0 deletions 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)).


<!--more-->

**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)



6 changes: 3 additions & 3 deletions docs/data/homepagedata.toml
Expand Up @@ -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"
Expand Down
18 changes: 15 additions & 3 deletions docs/data/versions.toml
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion docs/layouts/partials/home/info.html
Expand Up @@ -15,7 +15,8 @@ <h2>
Latest Releases
</h2>
<p>
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.
</p>
<ul role="list">
{{ range $.Site.Data.homepagedata.info }}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -13,7 +13,7 @@ kotlin.code.style=official
# This is version for PgJdbc itself
# Note: it should not include "-SNAPSHOT" as it is automatically added by build.gradle.kts
# Release version can be generated by using -Prelease or -Prc=<int> arguments
pgjdbc.version=42.5.3
pgjdbc.version=42.5.4

# The options below configures the use of local clone (e.g. testing development versions)
# You can pass un-comment it, or pass option -PlocalReleasePlugins, or -PlocalReleasePlugins=<path>
Expand Down

0 comments on commit 051ae1b

Please sign in to comment.