Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs for Release 42.5.4 #2812

Merged
merged 4 commits into from
Feb 16, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
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-15-42.5.4-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
title: PostgreSQL JDBC Driver 42.5.4 Released
date: 2023-02-15 10: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
Original file line number Diff line number Diff line change
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 = "15 February 2023"
url = "/changelogs/2023-02-15-42.5.4-release/"
version = "42.5.4"

[[info]]
date = "23 October 2022"
Expand Down
12 changes: 6 additions & 6 deletions docs/data/versions.toml
Original file line number Diff line number Diff line change
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 @@ -24,10 +24,10 @@ url= "/download/postgresql-42.2.27.jre6.jar"
# Past Versions

[[past]]
v_name= "Postgresql JDBC 42.5.1"
version= "42.5.1"
v_name= "Postgresql JDBC 42.5.3"
version= "42.5.3"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it intentional that you hide 42.5.1 and 42.5.2 versions?
Should we add entries rather than update old ones?

suffix=""
url= "/download/postgresql-42.5.1.jar"
url= "/download/postgresql-42.5.3.jar"

[[past]]
v_name= "Postgresql JDBC 42.4.2"
Expand Down
3 changes: 2 additions & 1 deletion docs/layouts/partials/home/info.html
Original file line number Diff line number Diff line change
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 15 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
Original file line number Diff line number Diff line change
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