Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 2.73 KB

2022-06-09-42.4.0-release.md

File metadata and controls

53 lines (40 loc) · 2.73 KB
title date categories version
PostgreSQL JDBC Driver 42.4.0 Released
2022-06-09 08:14:50 -0400
new_release
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
    pgbouncer cannot deal with transactions in statement pooling mode PR #2425

Fixed

  • fix: queries with up to 65535 (inclusive) parameters are supported now (previous limit was 32767) PR #2525, Issue #1311
  • fix: workaround JarIndex parsing issue by using groupId/artifactId-version directory namings. Regression since 42.2.13. PR #2531, issue #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
  • 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 Issue #2522
  • perf: utcTz static and renamed to UTC_TIMEZONE PR #2519
  • 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 (#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

Jorge Solórzano (1): chore: Make the readme version agnostic PR 2540

Sven Diedrichsen (1): Made utcTz static and renamed to UTC_TIMEZONE PR 2519

Vladimir Sitnikov (24): doc: fix release version for PR 2377 (it should be 42.3.6, not 42.3.5)