Skip to content

Commit 2bd774e

Browse files
authored
Releasenotes 42.3.5 (#2502)
* Updated changelog for 42.3.5 * release notes for 42.3.5 * removed details from changelog items * update to May 4
1 parent c04582e commit 2bd774e

4 files changed

Lines changed: 65 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
1010

1111
### Fixed
1212

13+
[42.3.5] (2022-05-04 08:48:35 -0400)
14+
### Changed
15+
- test: polish TimestampUtilsTest
16+
17+
### Added
18+
- Added KEYS file to allow for verifying artifacts [PR 2499](https://github.com/pgjdbc/pgjdbc/pull/2499)
19+
20+
### Fixed
21+
- perf: enable tcpNoDelay by default [PR 2495](https://github.com/pgjdbc/pgjdbc/pull/2495).
22+
This is a regression from 42.2.x versions where tcpNoDelay defaulted to true
23+
- docs: fix readme.md after [PR 2495](https://github.com/pgjdbc/pgjdbc/pull/2495) [PR 2496](https://github.com/pgjdbc/pgjdbc/pull/249)
24+
- feat: targetServerType=preferPrimary connection parameter [PR 2483](https://github.com/pgjdbc/pgjdbc/pull/2483)
25+
- fix: revert removal of toOffsetDateTime(String timestamp) fixes [Issue #2497](https://github.com/pgjdbc/pgjdbc/issues/2497) [PR 2501](https://github.com/pgjdbc/pgjdbc/pull/2501)
26+
1327
[42.3.4] (2022-04-01 14:16:28 -0400)
1428
### Changed
1529
- fix: change name of build cache [PR 2471](https://github.com/pgjdbc/pgjdbc/pull/2471)
@@ -24,7 +38,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
2438

2539
### Fixed
2640
- docs: Update testing documentation [PR 2446](https://github.com/pgjdbc/pgjdbc/pull/2446)
27-
- fix: Throw an exception if the driver cannot parse the URL instead of returning NULL fixes Issue [PR 2421](https://github.com/pgjdbc/pgjdbc/pull/2421) (#2441)
41+
- fix: Throw an exception if the driver cannot parse the URL instead of returning NULL fixes [Issue #2421](https://github.com/pgjdbc/pgjdbc/issues/2421) [PR 2441](https://github.com/pgjdbc/pgjdbc/pull/2441)
2842
- fix: Use PGProperty instead of the property names directly [PR 2444](https://github.com/pgjdbc/pgjdbc/pull/2444)
2943
- docs: update changelog, missing links at bottom and formatting [PR 2460](https://github.com/pgjdbc/pgjdbc/pull/2460)
3044
- fix: Remove isDeprecated from PGProperty. It was originally intended to help produce automated docs. Fixes Issue #2479 [PR 2480](https://github.com/pgjdbc/pgjdbc/pull/2480)
@@ -659,4 +673,5 @@ thrown to caller to be dealt with so no need to log at this verbosity by pgjdbc
659673
[42.3.2]: https://github.com/pgjdbc/pgjdbc/compare/REL42.3.1...REL42.3.2
660674
[42.3.3]: https://github.com/pgjdbc/pgjdbc/compare/REL42.3.2...REL42.3.3
661675
[42.3.4]: https://github.com/pgjdbc/pgjdbc/compare/REL42.3.3...REL42.3.4
662-
[Unreleased]: https://github.com/pgjdbc/pgjdbc/compare/REL42.3.4...HEAD
676+
[42.3.4]: https://github.com/pgjdbc/pgjdbc/compare/REL42.3.4...REL42.3.5
677+
[Unreleased]: https://github.com/pgjdbc/pgjdbc/compare/REL42.3.5...HEAD

contributors.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,5 +193,7 @@
193193
"Fabio Cechinel Veronez" : "fabio.veronez@gmail.com",
194194
"Uwe Schindler" : "uwe@thetaphi.de",
195195
"Wei Su" : "suwei19870312@gmail.com",
196-
"paulo-kluh" : "80355988+paulo-kluh@users.noreply.github.com"
196+
"paulo-kluh" : "80355988+paulo-kluh@users.noreply.github.com",
197+
"Dmitriy Mukhin" : "mitya555@users.noreply.github.com",
198+
"Olivier Bourgain" : "olivierbourgain02@gmail.com"
197199
}

docs/_posts/2022-04-15-42.3.4-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ version: 42.3.4
2121

2222
### Fixed
2323
- docs: Update testing documentation [PR 2446](https://github.com/pgjdbc/pgjdbc/pull/2446)
24-
- fix: Throw an exception if the driver cannot parse the URL instead of returning NULL fixes Issue [PR 2421](https://github.com/pgjdbc/pgjdbc/pull/2421) (#2441)
24+
- fix: Throw an exception if the driver cannot parse the URL instead of returning NULL fixes [Issue #2421](https://github.com/pgjdbc/pgjdbc/issues/2421) [PR 2441](https://github.com/pgjdbc/pgjdbc/pull/2441)
2525
- fix: Use PGProperty instead of the property names directly [PR 2444](https://github.com/pgjdbc/pgjdbc/pull/2444)
2626
- docs: update changelog, missing links at bottom and formatting [PR 2460](https://github.com/pgjdbc/pgjdbc/pull/2460)
2727
- fix: Remove isDeprecated from PGProperty. It was originally intended to help produce automated docs. Fixes #Issue 2479 [PR 2480](https://github.com/pgjdbc/pgjdbc/pull/2480)
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
title: PostgreSQL JDBC Driver 42.3.5 Released
3+
date: 2022-05-04 08:48:32 -0400
4+
categories:
5+
- new_release
6+
version: 42.3.5
7+
---
8+
**Notable changes**
9+
10+
### Changed
11+
- test: polish TimestampUtilsTest
12+
13+
### Added
14+
- Added KEYS file to allow for verifying artifacts [PR 2499](https://github.com/pgjdbc/pgjdbc/pull/2499)
15+
16+
### Fixed
17+
- perf: enable tcpNoDelay by default [PR 2495](https://github.com/pgjdbc/pgjdbc/pull/2495).
18+
This is a regression from 42.2.x versions where tcpNoDelay defaulted to true
19+
- docs: fix readme.md after [PR 2495](https://github.com/pgjdbc/pgjdbc/pull/2495) [PR 2496](https://github.com/pgjdbc/pgjdbc/pull/249)
20+
- feat: targetServerType=preferPrimary connection parameter [PR 2483](https://github.com/pgjdbc/pgjdbc/pull/2483)
21+
- fix: revert removal of toOffsetDateTime(String timestamp) fixes [Issue #2497](https://github.com/pgjdbc/pgjdbc/issues/2497) [PR 2501](https://github.com/pgjdbc/pgjdbc/pull/2501)
22+
23+
24+
25+
<!--more-->
26+
27+
**Commits by author**
28+
29+
Dave Cramer (4):
30+
move version to 42.3.5 [PR 2493](https://github.com/pgjdbc/pgjdbc/pull/2493)
31+
Added KEYS file to allow for verifying artifacts [PR 2499](https://github.com/pgjdbc/pgjdbc/pull/2499)
32+
fix: revert removal of toOffsetDateTime(String timestamp) fixes #Issue 2497 [PR 2501](https://github.com/pgjdbc/pgjdbc/pull/2501)
33+
34+
Dmitriy Mukhin (1):
35+
feat: targetServerType=preferPrimary connection parameter [PR 2483](https://github.com/pgjdbc/pgjdbc/pull/2483)
36+
37+
Olivier Bourgain (2):
38+
perf: enable tcpNoDelay by default [PR 2495](https://github.com/pgjdbc/pgjdbc/pull/2495)
39+
docs: fix readme.md after [PR 2495](https://github.com/pgjdbc/pgjdbc/pull/2495) (#2496)
40+
41+
Vladimir Sitnikov (1):
42+
test: polish TimestampUtilsTest
43+
44+

0 commit comments

Comments
 (0)