Skip to content

Commit

Permalink
update changelog and docs for release (#2751)
Browse files Browse the repository at this point in the history
* update changelog and docs for release

* make it clear this is a regression release

* note that 42.5.2 has 2 regressions
  • Loading branch information
davecramer committed Feb 3, 2023
1 parent 4bc9c22 commit d2f77a2
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 765 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

### Fixed

## [42.5.3] (2023-02-03 08:24:50 -0500)

### Fixed
fix: Add box to TypeInfoCache, fixes [Issue #2746](https://github.com/pgjdbc/pgjdbc/issues/2746) [PR #2747](https://github.com/pgjdbc/pgjdbc/pull/2747)
fix: regression in PgResultSet LONG_MIN copy and paste error fixes [Issue #2748](https://github.com/pgjdbc/pgjdbc/issues/2748) [PR#2749](https://github.com/pgjdbc/pgjdbc/pull/2749)

## [42.5.2] (2023-01-31 14:30:46 -0500)

### Changed
regression: This release has 2 known regressions which make it unusable see the notes above. We advise people to use 42.5.3 instead.
docs: specify that timeouts are in seconds and there is a maximum. Housekeeping on some tests fixes [#Issue 2671](https://github.com/pgjdbc/pgjdbc/issues/2671) [PR #2686](https://github.com/pgjdbc/pgjdbc/pull/2686)
docs: clarify binaryTransfer and add it to README [PR# 2698](https://github.com/pgjdbc/pgjdbc/pull/2698)
docs: Document the need to encode reserved characters in the connection URL [PR #2700](https://github.com/pgjdbc/pgjdbc/pull/2700)
Expand Down
777 changes: 20 additions & 757 deletions docs/content/changelogs/2023-01-31-42.5.2-release.md

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions docs/content/changelogs/2023-02-03-42.5.3-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: PostgreSQL JDBC Driver 42.5.3 Released
date: 2023-02-03 08:24:49 -0500
categories:
- new_release
version: 42.5.3
---

### Fixed
fix: Add box to TypeInfoCache, fixes [Issue #2746](https://github.com/pgjdbc/pgjdbc/issues/2746) [PR #2747](https://github.com/pgjdbc/pgjdbc/pull/2747)
fix: regression in PgResultSet LONG_MIN copy and paste error fixes [Issue #2748](https://github.com/pgjdbc/pgjdbc/issues/2748) [PR#2749](https://github.com/pgjdbc/pgjdbc/pull/2749)

<!--more-->

**Commits by author**

Dave Cramer (2):
Fix: regression in PgResultSet LONG_MIN copy and paste error fixes Issue (#2749) [PR 2748](https://github.com/pgjdbc/pgjdbc/pull/2748)
Add box to TypeInfoCache, fixes Issue (#2747) [PR 2746](https://github.com/pgjdbc/pgjdbc/pull/2746)



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 = "31 January 2023"
url = "/changelogs/2023-01-31-42.5.2-release/"
version = "42.5.2"
date = "3 February 2023"
url = "/changelogs/2023-01-31-42.5.3-release/"
version = "42.5.3"

[[info]]
date = "23 October 2022"
Expand Down
4 changes: 2 additions & 2 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.2"
version= "42.5.3"
suffix=""
description= "If you are using Java 8 or newer then you should use the JDBC 4.2 version."
url= "/download/postgresql-42.5.2.jar"
url= "/download/postgresql-42.5.3.jar"

[[recent]]
j_name= "Java 7"
Expand Down
3 changes: 1 addition & 2 deletions docs/layouts/partials/home/info.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ <h2>
Latest Releases
</h2>
<p>
pgJDBC has released v42.5.2 on 31 January, 2023. This is a maintenance release see notes below
for details
pgJDBC has released v42.5.3 on 3 February, 2023. This release fixes a regression in 42.5.2
</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.2
pgjdbc.version=42.5.3

# 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 d2f77a2

Please sign in to comment.