From d93d0136bef6c4893a97e683d1c563d141491f0b Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Wed, 8 Jun 2022 12:18:31 -0400 Subject: [PATCH 1/6] bump version number to 42.4.0 --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index d572249035..3adc869bfe 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,7 +14,7 @@ kotlin.parallel.tasks.in.project=true # 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= arguments -pgjdbc.version=42.3.7 +pgjdbc.version=42.4.0 # 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= From 64888fa4182f9d5694cc8daebbcfe25b47999f8f Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Wed, 8 Jun 2022 15:51:58 -0400 Subject: [PATCH 2/6] Release notes for 42.4.0 --- CHANGELOG.md | 44 +++++++++++++-- contributors.json | 4 +- docs/_posts/2022-06-08-42.4.0-release.md | 69 ++++++++++++++++++++++++ 3 files changed, 113 insertions(+), 4 deletions(-) create mode 100644 docs/_posts/2022-06-08-42.4.0-release.md diff --git a/CHANGELOG.md b/CHANGELOG.md index b4deff2e4e..3c20620fc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,45 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Added ### Fixed -- fix: queries with up to 65535 (inclusive) parameters are supported now (previous limit was 32767) [PR #2525](https://github.com/pgjdbc/pgjdbc/pull/2525) -- fix: workaround JarIndex parsing issue by using groupId/artifactId-version directory namings. Regression since 42.2.13. [PR #2531](https://github.com/pgjdbc/pgjdbc/pull/2531), [issue #2527](https://github.com/pgjdbc/pgjdbc/issues/2527) + +[42.4.0] (2022-06-08 15:39:02 -0400) +### Changed +- fix: added GROUP_STARTUP_PARAMETERS boolean property to determine whether or not to group +startup parameters in a transaction or not fixes [Issue #2425](https://github.com/pgjdbc/pgjdbc/issues/2497) +pgbouncer cannot deal with transactions in statement pooling mode [PR #2425](https://github.com/pgjdbc/pgjdbc/pull/2425) + +### Added + +### Fixed +- chore: Make the readme version agnostic [PR #2540](https://github.com/pgjdbc/pgjdbc/pull/2540) +- fix: queries with up to 65535 (inclusive) parameters are supported now (previous limit was 32767) +[PR #2525](https://github.com/pgjdbc/pgjdbc/pull/2525), [Issue #1311](https://github.com/pgjdbc/pgjdbc/issues/1311) +- fix: workaround JarIndex parsing issue by using groupId/artifactId-version directory namings. +Regression since 42.2.13. [PR #2531](https://github.com/pgjdbc/pgjdbc/pull/2531), [issue #2527](https://github.com/pgjdbc/pgjdbc/issues/2527) +- chore: skip running publishToNexus on forks if NEXUS_* secrets are not set +- test: remove SlowTests from tests that are fast +- test: fix failure in SetObject310Test in simple query mode in certain time zones +- chore: use password_encryption=md5 instead of deprecated on for PostgreSQL 10+ +- test: fix assertions for simple query mode in BatchedInsertReWriteEnabledTest +- test: avoid calling getParameterMetaData in PreparedStatementTest in simple query mode +- test: expect English text when the current language is English only in CopyTest#testCopyInAsOutputStreamFailsOnFlushAfterEndCopy +- test: use assertNotSame for verifying object identity instead of .toString() in testNotPooledConnection +- test: avoid locale-dependent comparison in CloseOnCompletionTest#testCloseOnCompletionExecuteTwice +- test: remove locale-dependent comparison from ConnectionTes.testReadOnly_always +- test: avoid comparing locale-dependent text in LogServerMessagePropertyTest +- test: make PgSQLXMLTest locale-independent fixes [Issue #2533](https://github.com/pgjdbc/pgjdbc/issues/2533) +- fix: use Locale.ROOT for toUpperCase() toLowerCase() calls +- doc: add Vladimir Sitnikov's PGP key +- test: increase timeout for NotifyTest#testAsyncNotify since 2s was not always enough +- style: fix blank line in ParameterMetaDataTest +- style: remove unused import from ParameterMetaDataTest +- tests: add more tests for PreparedStatement.getParameterMetaData +- chore: update S3 build cache region +- test: avoid modifying global sendBufferSize and receiveBufferSize in SendRecvBufferSizeTest +- test: shorten test description in UTF8EncodingTest +- fix: return correct base type for domain from getUDTs [PR #2520](https://github.com/pgjdbc/pgjdbc/pull/2520) [Issue #2522](https://github.com/pgjdbc/pgjdbc/issues/2522) +- fix utcTz static and renamed to UTC_TIMEZONE [PR #2519](https://github.com/pgjdbc/pgjdbc/pull/2520) +- doc: fix release version for #2377 (it should be 42.3.6, not 42.3.5) ## [42.3.6] (2022-05-24 08:52:27 -0400) ### Changed @@ -686,4 +723,5 @@ thrown to caller to be dealt with so no need to log at this verbosity by pgjdbc [42.3.4]: https://github.com/pgjdbc/pgjdbc/compare/REL42.3.3...REL42.3.4 [42.3.4]: https://github.com/pgjdbc/pgjdbc/compare/REL42.3.4...REL42.3.5 [42.3.5]: https://github.com/pgjdbc/pgjdbc/compare/REL42.3.5...REL42.3.6 -[Unreleased]: https://github.com/pgjdbc/pgjdbc/compare/REL42.3.6...HEAD +[42.3.6]: https://github.com/pgjdbc/pgjdbc/compare/REL42.3.6...REL42.4.0 +[Unreleased]: https://github.com/pgjdbc/pgjdbc/compare/REL42.4.0...HEAD diff --git a/contributors.json b/contributors.json index 12bcfd7d6e..f081201499 100644 --- a/contributors.json +++ b/contributors.json @@ -195,5 +195,7 @@ "Wei Su" : "suwei19870312@gmail.com", "paulo-kluh" : "80355988+paulo-kluh@users.noreply.github.com", "Dmitriy Mukhin" : "mitya555@users.noreply.github.com", - "Olivier Bourgain" : "olivierbourgain02@gmail.com" + "Olivier Bourgain" : "olivierbourgain02@gmail.com", + "Andrei Lurie" : "alurie@users.noreply.github.com", + "Sven Diedrichsen" : "sven.diedrichsen@gmail.com" } diff --git a/docs/_posts/2022-06-08-42.4.0-release.md b/docs/_posts/2022-06-08-42.4.0-release.md new file mode 100644 index 0000000000..f99c36ea2e --- /dev/null +++ b/docs/_posts/2022-06-08-42.4.0-release.md @@ -0,0 +1,69 @@ +--- +title: PostgreSQL JDBC Driver 42.4.0 Released +date: 2022-06-08 15:38:50 -0400 +categories: + - new_release +version: 42.4.0 +--- +**Notable changes** + +### Changed +- fix: added GROUP_STARTUP_PARAMETERS boolean property to determine whether or not to group +startup parameters in a transaction or not fixes [Issue #2425](https://github.com/pgjdbc/pgjdbc/issues/2497) +pgbouncer cannot deal with transactions in statement pooling mode [PR #2425](https://github.com/pgjdbc/pgjdbc/pull/2425) + +### Added + +### Fixed +- chore: Make the readme version agnostic [PR #2540](https://github.com/pgjdbc/pgjdbc/pull/2540) +- fix: queries with up to 65535 (inclusive) parameters are supported now (previous limit was 32767) +[PR #2525](https://github.com/pgjdbc/pgjdbc/pull/2525), [Issue #1311](https://github.com/pgjdbc/pgjdbc/issues/1311) +- fix: workaround JarIndex parsing issue by using groupId/artifactId-version directory namings. +Regression since 42.2.13. [PR #2531](https://github.com/pgjdbc/pgjdbc/pull/2531), [issue #2527](https://github.com/pgjdbc/pgjdbc/issues/2527) +- chore: skip running publishToNexus on forks if NEXUS_* secrets are not set +- test: remove SlowTests from tests that are fast +- test: fix failure in SetObject310Test in simple query mode in certain time zones +- chore: use password_encryption=md5 instead of deprecated on for PostgreSQL 10+ +- test: fix assertions for simple query mode in BatchedInsertReWriteEnabledTest +- test: avoid calling getParameterMetaData in PreparedStatementTest in simple query mode +- test: expect English text when the current language is English only in CopyTest#testCopyInAsOutputStreamFailsOnFlushAfterEndCopy +- test: use assertNotSame for verifying object identity instead of .toString() in testNotPooledConnection +- test: avoid locale-dependent comparison in CloseOnCompletionTest#testCloseOnCompletionExecuteTwice +- test: remove locale-dependent comparison from ConnectionTes.testReadOnly_always +- test: avoid comparing locale-dependent text in LogServerMessagePropertyTest +- test: make PgSQLXMLTest locale-independent fixes [Issue #2533](https://github.com/pgjdbc/pgjdbc/issues/2533) +- fix: use Locale.ROOT for toUpperCase() toLowerCase() calls +- doc: add Vladimir Sitnikov's PGP key +- test: increase timeout for NotifyTest#testAsyncNotify since 2s was not always enough +- style: fix blank line in ParameterMetaDataTest +- style: remove unused import from ParameterMetaDataTest +- tests: add more tests for PreparedStatement.getParameterMetaData +- chore: update S3 build cache region +- test: avoid modifying global sendBufferSize and receiveBufferSize in SendRecvBufferSizeTest +- test: shorten test description in UTF8EncodingTest +- fix: return correct base type for domain from getUDTs [PR #2520](https://github.com/pgjdbc/pgjdbc/pull/2520) [Issue #2522](https://github.com/pgjdbc/pgjdbc/issues/2522) +- fix utcTz static and renamed to UTC_TIMEZONE [PR #2519](https://github.com/pgjdbc/pgjdbc/pull/2520) +- doc: fix release version for #2377 (it should be 42.3.6, not 42.3.5) + + + + +**Commits by author** + +Andrei Lurie (1): + fix: return correct base type for domain from getUDTs [PR 2520](https://github.com/pgjdbc/pgjdbc/pull/2520) (#2522) + +Dave Cramer (3): + fix: added GROUP_STARTUP_PARAMETERS boolean property to determine whether or not to group startup parameters in a transaction or not fixes Issue 2423 pgbouncer cannot deal with transactions in statement pooling mode [PR 2425](https://github.com/pgjdbc/pgjdbc/pull/2425) + +Jorge Solórzano (1): + chore: Make the readme version agnostic [PR 2540](https://github.com/pgjdbc/pgjdbc/pull/2540) + +Sven Diedrichsen (1): + Made utcTz static and renamed to UTC_TIMEZONE [PR 2519](https://github.com/pgjdbc/pgjdbc/pull/2519) + +Vladimir Sitnikov (24): + doc: fix release version for [PR 2377](https://github.com/pgjdbc/pgjdbc/pull/2377) (it should be 42.3.6, not 42.3.5) + + + \ No newline at end of file From bcc72e4ab5231e73390fd7446fea98258b70e913 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Thu, 9 Jun 2022 08:16:45 -0400 Subject: [PATCH 3/6] remove unimportant entries, change date to 2022 06-09 --- CHANGELOG.md | 22 ++----------- ...elease.md => 2022-06-09-42.4.0-release.md} | 32 +++++-------------- 2 files changed, 11 insertions(+), 43 deletions(-) rename docs/_posts/{2022-06-08-42.4.0-release.md => 2022-06-09-42.4.0-release.md} (57%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c20620fc1..4f1f02fd24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,43 +10,27 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Fixed -[42.4.0] (2022-06-08 15:39:02 -0400) +[42.4.0] (2022-06-09 08:14:02 -0400) ### Changed - fix: added GROUP_STARTUP_PARAMETERS boolean property to determine whether or not to group startup parameters in a transaction or not fixes [Issue #2425](https://github.com/pgjdbc/pgjdbc/issues/2497) pgbouncer cannot deal with transactions in statement pooling mode [PR #2425](https://github.com/pgjdbc/pgjdbc/pull/2425) -### Added - ### Fixed -- chore: Make the readme version agnostic [PR #2540](https://github.com/pgjdbc/pgjdbc/pull/2540) - fix: queries with up to 65535 (inclusive) parameters are supported now (previous limit was 32767) [PR #2525](https://github.com/pgjdbc/pgjdbc/pull/2525), [Issue #1311](https://github.com/pgjdbc/pgjdbc/issues/1311) - fix: workaround JarIndex parsing issue by using groupId/artifactId-version directory namings. Regression since 42.2.13. [PR #2531](https://github.com/pgjdbc/pgjdbc/pull/2531), [issue #2527](https://github.com/pgjdbc/pgjdbc/issues/2527) -- chore: skip running publishToNexus on forks if NEXUS_* secrets are not set -- test: remove SlowTests from tests that are fast - test: fix failure in SetObject310Test in simple query mode in certain time zones - chore: use password_encryption=md5 instead of deprecated on for PostgreSQL 10+ - test: fix assertions for simple query mode in BatchedInsertReWriteEnabledTest - test: avoid calling getParameterMetaData in PreparedStatementTest in simple query mode -- test: expect English text when the current language is English only in CopyTest#testCopyInAsOutputStreamFailsOnFlushAfterEndCopy -- test: use assertNotSame for verifying object identity instead of .toString() in testNotPooledConnection -- test: avoid locale-dependent comparison in CloseOnCompletionTest#testCloseOnCompletionExecuteTwice -- test: remove locale-dependent comparison from ConnectionTes.testReadOnly_always -- test: avoid comparing locale-dependent text in LogServerMessagePropertyTest +- test: improve test code robustness in various locales, JDKs - test: make PgSQLXMLTest locale-independent fixes [Issue #2533](https://github.com/pgjdbc/pgjdbc/issues/2533) - fix: use Locale.ROOT for toUpperCase() toLowerCase() calls - doc: add Vladimir Sitnikov's PGP key -- test: increase timeout for NotifyTest#testAsyncNotify since 2s was not always enough -- style: fix blank line in ParameterMetaDataTest -- style: remove unused import from ParameterMetaDataTest -- tests: add more tests for PreparedStatement.getParameterMetaData -- chore: update S3 build cache region -- test: avoid modifying global sendBufferSize and receiveBufferSize in SendRecvBufferSizeTest -- test: shorten test description in UTF8EncodingTest - fix: return correct base type for domain from getUDTs [PR #2520](https://github.com/pgjdbc/pgjdbc/pull/2520) [Issue #2522](https://github.com/pgjdbc/pgjdbc/issues/2522) -- fix utcTz static and renamed to UTC_TIMEZONE [PR #2519](https://github.com/pgjdbc/pgjdbc/pull/2520) +- perf: utcTz static and renamed to UTC_TIMEZONE [PR #2519](https://github.com/pgjdbc/pgjdbc/pull/2520) - doc: fix release version for #2377 (it should be 42.3.6, not 42.3.5) ## [42.3.6] (2022-05-24 08:52:27 -0400) diff --git a/docs/_posts/2022-06-08-42.4.0-release.md b/docs/_posts/2022-06-09-42.4.0-release.md similarity index 57% rename from docs/_posts/2022-06-08-42.4.0-release.md rename to docs/_posts/2022-06-09-42.4.0-release.md index f99c36ea2e..63ce50ddf6 100644 --- a/docs/_posts/2022-06-08-42.4.0-release.md +++ b/docs/_posts/2022-06-09-42.4.0-release.md @@ -1,6 +1,6 @@ --- title: PostgreSQL JDBC Driver 42.4.0 Released -date: 2022-06-08 15:38:50 -0400 +date: 2022-06-09 08:14:50 -0400 categories: - new_release version: 42.4.0 @@ -12,37 +12,21 @@ version: 42.4.0 startup parameters in a transaction or not fixes [Issue #2425](https://github.com/pgjdbc/pgjdbc/issues/2497) pgbouncer cannot deal with transactions in statement pooling mode [PR #2425](https://github.com/pgjdbc/pgjdbc/pull/2425) -### Added - ### Fixed -- chore: Make the readme version agnostic [PR #2540](https://github.com/pgjdbc/pgjdbc/pull/2540) -- fix: queries with up to 65535 (inclusive) parameters are supported now (previous limit was 32767) -[PR #2525](https://github.com/pgjdbc/pgjdbc/pull/2525), [Issue #1311](https://github.com/pgjdbc/pgjdbc/issues/1311) -- fix: workaround JarIndex parsing issue by using groupId/artifactId-version directory namings. -Regression since 42.2.13. [PR #2531](https://github.com/pgjdbc/pgjdbc/pull/2531), [issue #2527](https://github.com/pgjdbc/pgjdbc/issues/2527) -- chore: skip running publishToNexus on forks if NEXUS_* secrets are not set -- test: remove SlowTests from tests that are fast +- fix: queries with up to 65535 (inclusive) parameters are supported now (previous limit was 32767) + [PR #2525](https://github.com/pgjdbc/pgjdbc/pull/2525), [Issue #1311](https://github.com/pgjdbc/pgjdbc/issues/1311) +- fix: workaround JarIndex parsing issue by using groupId/artifactId-version directory namings. + Regression since 42.2.13. [PR #2531](https://github.com/pgjdbc/pgjdbc/pull/2531), [issue #2527](https://github.com/pgjdbc/pgjdbc/issues/2527) - test: fix failure in SetObject310Test in simple query mode in certain time zones - chore: use password_encryption=md5 instead of deprecated on for PostgreSQL 10+ - test: fix assertions for simple query mode in BatchedInsertReWriteEnabledTest - test: avoid calling getParameterMetaData in PreparedStatementTest in simple query mode -- test: expect English text when the current language is English only in CopyTest#testCopyInAsOutputStreamFailsOnFlushAfterEndCopy -- test: use assertNotSame for verifying object identity instead of .toString() in testNotPooledConnection -- test: avoid locale-dependent comparison in CloseOnCompletionTest#testCloseOnCompletionExecuteTwice -- test: remove locale-dependent comparison from ConnectionTes.testReadOnly_always -- test: avoid comparing locale-dependent text in LogServerMessagePropertyTest +- test: improve test code robustness in various locales, JDKs - test: make PgSQLXMLTest locale-independent fixes [Issue #2533](https://github.com/pgjdbc/pgjdbc/issues/2533) - fix: use Locale.ROOT for toUpperCase() toLowerCase() calls - doc: add Vladimir Sitnikov's PGP key -- test: increase timeout for NotifyTest#testAsyncNotify since 2s was not always enough -- style: fix blank line in ParameterMetaDataTest -- style: remove unused import from ParameterMetaDataTest -- tests: add more tests for PreparedStatement.getParameterMetaData -- chore: update S3 build cache region -- test: avoid modifying global sendBufferSize and receiveBufferSize in SendRecvBufferSizeTest -- test: shorten test description in UTF8EncodingTest - fix: return correct base type for domain from getUDTs [PR #2520](https://github.com/pgjdbc/pgjdbc/pull/2520) [Issue #2522](https://github.com/pgjdbc/pgjdbc/issues/2522) -- fix utcTz static and renamed to UTC_TIMEZONE [PR #2519](https://github.com/pgjdbc/pgjdbc/pull/2520) +- perf: utcTz static and renamed to UTC_TIMEZONE [PR #2519](https://github.com/pgjdbc/pgjdbc/pull/2520) - doc: fix release version for #2377 (it should be 42.3.6, not 42.3.5) @@ -66,4 +50,4 @@ Vladimir Sitnikov (24): doc: fix release version for [PR 2377](https://github.com/pgjdbc/pgjdbc/pull/2377) (it should be 42.3.6, not 42.3.5) - \ No newline at end of file + From a369b1844a90dc76f4d05687ecb3748dc1c8e926 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Thu, 9 Jun 2022 09:02:27 -0400 Subject: [PATCH 4/6] call out default for GROUP_STARTUP_PARAMETERS --- CHANGELOG.md | 2 +- docs/_posts/2022-06-09-42.4.0-release.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f1f02fd24..32a065fd5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). [42.4.0] (2022-06-09 08:14:02 -0400) ### Changed - fix: added GROUP_STARTUP_PARAMETERS boolean property to determine whether or not to group -startup parameters in a transaction or not fixes [Issue #2425](https://github.com/pgjdbc/pgjdbc/issues/2497) +startup parameters in a transaction (default=false like 42.2.x) fixes [Issue #2425](https://github.com/pgjdbc/pgjdbc/issues/2497) pgbouncer cannot deal with transactions in statement pooling mode [PR #2425](https://github.com/pgjdbc/pgjdbc/pull/2425) ### Fixed diff --git a/docs/_posts/2022-06-09-42.4.0-release.md b/docs/_posts/2022-06-09-42.4.0-release.md index 63ce50ddf6..0b37e4b819 100644 --- a/docs/_posts/2022-06-09-42.4.0-release.md +++ b/docs/_posts/2022-06-09-42.4.0-release.md @@ -9,7 +9,7 @@ version: 42.4.0 ### Changed - fix: added GROUP_STARTUP_PARAMETERS boolean property to determine whether or not to group -startup parameters in a transaction or not fixes [Issue #2425](https://github.com/pgjdbc/pgjdbc/issues/2497) +startup parameters in a transaction (default=false like 42.2.x) fixes [Issue #2425](https://github.com/pgjdbc/pgjdbc/issues/2497) pgbouncer cannot deal with transactions in statement pooling mode [PR #2425](https://github.com/pgjdbc/pgjdbc/pull/2425) ### Fixed From cca79eb542cee6f3fc3806c5f7ffc2030979835c Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Thu, 9 Jun 2022 09:05:52 -0400 Subject: [PATCH 5/6] fix formatting --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32a065fd5f..1a553294a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Fixed -[42.4.0] (2022-06-09 08:14:02 -0400) +## [42.4.0] (2022-06-09 08:14:02 -0400) ### Changed - fix: added GROUP_STARTUP_PARAMETERS boolean property to determine whether or not to group startup parameters in a transaction (default=false like 42.2.x) fixes [Issue #2425](https://github.com/pgjdbc/pgjdbc/issues/2497) From 2b67dd6d651ca3560034af1f34a2b563a2b375a5 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Thu, 9 Jun 2022 09:10:39 -0400 Subject: [PATCH 6/6] removed more unimportant changes --- CHANGELOG.md | 6 ------ docs/_posts/2022-06-09-42.4.0-release.md | 7 ------- 2 files changed, 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a553294a5..ff51b31e01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,12 +21,6 @@ pgbouncer cannot deal with transactions in statement pooling mode [PR #2425](htt [PR #2525](https://github.com/pgjdbc/pgjdbc/pull/2525), [Issue #1311](https://github.com/pgjdbc/pgjdbc/issues/1311) - fix: workaround JarIndex parsing issue by using groupId/artifactId-version directory namings. Regression since 42.2.13. [PR #2531](https://github.com/pgjdbc/pgjdbc/pull/2531), [issue #2527](https://github.com/pgjdbc/pgjdbc/issues/2527) -- test: fix failure in SetObject310Test in simple query mode in certain time zones -- chore: use password_encryption=md5 instead of deprecated on for PostgreSQL 10+ -- test: fix assertions for simple query mode in BatchedInsertReWriteEnabledTest -- test: avoid calling getParameterMetaData in PreparedStatementTest in simple query mode -- test: improve test code robustness in various locales, JDKs -- test: make PgSQLXMLTest locale-independent fixes [Issue #2533](https://github.com/pgjdbc/pgjdbc/issues/2533) - fix: use Locale.ROOT for toUpperCase() toLowerCase() calls - doc: add Vladimir Sitnikov's PGP key - fix: return correct base type for domain from getUDTs [PR #2520](https://github.com/pgjdbc/pgjdbc/pull/2520) [Issue #2522](https://github.com/pgjdbc/pgjdbc/issues/2522) diff --git a/docs/_posts/2022-06-09-42.4.0-release.md b/docs/_posts/2022-06-09-42.4.0-release.md index 0b37e4b819..bbdc5ea4df 100644 --- a/docs/_posts/2022-06-09-42.4.0-release.md +++ b/docs/_posts/2022-06-09-42.4.0-release.md @@ -17,19 +17,12 @@ pgbouncer cannot deal with transactions in statement pooling mode [PR #2425](htt [PR #2525](https://github.com/pgjdbc/pgjdbc/pull/2525), [Issue #1311](https://github.com/pgjdbc/pgjdbc/issues/1311) - fix: workaround JarIndex parsing issue by using groupId/artifactId-version directory namings. Regression since 42.2.13. [PR #2531](https://github.com/pgjdbc/pgjdbc/pull/2531), [issue #2527](https://github.com/pgjdbc/pgjdbc/issues/2527) -- test: fix failure in SetObject310Test in simple query mode in certain time zones -- chore: use password_encryption=md5 instead of deprecated on for PostgreSQL 10+ -- test: fix assertions for simple query mode in BatchedInsertReWriteEnabledTest -- test: avoid calling getParameterMetaData in PreparedStatementTest in simple query mode -- test: improve test code robustness in various locales, JDKs -- test: make PgSQLXMLTest locale-independent fixes [Issue #2533](https://github.com/pgjdbc/pgjdbc/issues/2533) - fix: use Locale.ROOT for toUpperCase() toLowerCase() calls - doc: add Vladimir Sitnikov's PGP key - fix: return correct base type for domain from getUDTs [PR #2520](https://github.com/pgjdbc/pgjdbc/pull/2520) [Issue #2522](https://github.com/pgjdbc/pgjdbc/issues/2522) - perf: utcTz static and renamed to UTC_TIMEZONE [PR #2519](https://github.com/pgjdbc/pgjdbc/pull/2520) - doc: fix release version for #2377 (it should be 42.3.6, not 42.3.5) - **Commits by author**