You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by GitBox <gi...@apache.org> on 2022/03/06 12:00:29 UTC

[GitHub] [fineract] renovate-bot opened a new pull request #2104: chore(deps): update dependency org.postgresql:postgresql to v42.3.3

renovate-bot opened a new pull request #2104:
URL: https://github.com/apache/fineract/pull/2104


   [![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)
   
   This PR contains the following updates:
   
   | Package | Change | Age | Adoption | Passing | Confidence |
   |---|---|---|---|---|---|
   | [org.postgresql:postgresql](https://jdbc.postgresql.org) ([source](https://togithub.com/pgjdbc/pgjdbc)) | `42.1.4` -> `42.3.3` | [![age](https://badges.renovateapi.com/packages/maven/org.postgresql:postgresql/42.3.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.postgresql:postgresql/42.3.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.postgresql:postgresql/42.3.3/compatibility-slim/42.1.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.postgresql:postgresql/42.3.3/confidence-slim/42.1.4)](https://docs.renovatebot.com/merge-confidence/) |
   
   ---
   
   ### Release Notes
   
   <details>
   <summary>pgjdbc/pgjdbc</summary>
   
   ### [`v42.3.3`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;4233-2022-02-15-113224--0500)
   
   ##### Changed
   
   -   fix: Removed loggerFile and loggerLevel configuration. While the properties still exist.
       They can no longer be used to configure the driver logging. Instead use java.util.logging
       configuration mechanisms such as `logging.properties`.
   
   ##### Added
   
   ##### Fixed
   
   ### [`v42.3.2`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;4232-2022-02-01-073541--0500)
   
   ##### Security
   
   -   CVE-2022-21724 pgjdbc instantiates plugin instances based on class names provided via authenticationPluginClassName,
       sslhostnameverifier, socketFactory, sslfactory, sslpasswordcallback connection properties.
       However, the driver did not verify if the class implements the expected interface before instantiating the class. This
       would allow a malicious class to be instantiated that could execute arbitrary code from the JVM. Fixed in [commit](https://togithub.com/pgjdbc/pgjdbc/commit/f4d0ed69c0b3aae8531d83d6af4c57f22312c813)
   
   ##### Changed
   
   -   perf: read in_hot_standby GUC on connection [PR #&#8203;2334](https://togithub.com/pgjdbc/pgjdbc/pull/2334)
   -   test: materialized view privileges [PR #&#8203;2209](https://togithub.com/pgjdbc/pgjdbc/pull/2209) fixes [Issue #&#8203;2060](https://togithub.com/pgjdbc/pgjdbc/issues/2060)
   -   docs: add info about convenience maven project [PR #&#8203;2407](https://togithub.com/pgjdbc/pgjdbc/pull/2407)
   -   docs: Document timezone reversal from POSIX to ISO [PR #&#8203;2413](https://togithub.com/pgjdbc/pgjdbc/pull/2413)
   -   fix: we will ask the server if it supports GSS Encryption if gssEncryption
       is prefer or require [PR #&#8203;2396](https://togithub.com/pgjdbc/pgjdbc/pull/2396) remove the need to have a ticket in the cache before asking the server if gss encryptions are supported
   -   docs: remove Java 6 and 7 references from contributing [PR #&#8203;2385](https://togithub.com/pgjdbc/pgjdbc/pull/2385)
   -   style: remove Java 8 / JDBC 4.2 checks [PR #&#8203;2383](https://togithub.com/pgjdbc/pgjdbc/pull/2383) Remove all remaining checks whether the source is lower than Java 8
       or JDBC 4.2.
   -   fix: throw SQLException for #getBoolean BIT(>1) [PR #&#8203;2386](https://togithub.com/pgjdbc/pgjdbc/pull/2386) Throw SQLException instead of ClassCastException when calling
       CallableStatement#getBoolean(int) on BIT(>1).
   -   style: import java.time types in more classes [PR #&#8203;2382](https://togithub.com/pgjdbc/pgjdbc/pull/2382) Use imports for java.time types in all remaining classes.
   -   style: import java.time types in TimestampUtils [PR #&#8203;2380](https://togithub.com/pgjdbc/pgjdbc/pull/2380) Use imports for java.time types in TimestampUtils.
   -   refactor: Change internal constructors to pass only connection Properties
       Changes internal constructors for PgConnection and related classes to only accept the connection properties object and
       remove the user and password arguments. Any locations that required those fields can retrieve them from the properties map.
   -   test: Fix DatabaseMetadataTest to perform mview tests only on 9.3+
   -   perf: read in_hot_standby GUC on connection [PR #&#8203;2334](https://togithub.com/pgjdbc/pgjdbc/pull/2334)
   -   doc: improv doc around binary decoding of numeric data [#&#8203;2331](https://togithub.com/pgjdbc/pgjdbc/pull/2331)
   -   Add cert key type checking to chooseClientAlias [PR #&#8203;2417](https://togithub.com/pgjdbc/pgjdbc/pull/2417)
   
   ##### Added
   
   -   feat: Add authenticationPluginClassName option to provide passwords at runtime
       Adds authenticationPluginClassName connection property that allows end users to specify a class
       that will provide the connection passwords at runtime. Users implementing that interface must
       ensure that each invocation of the method provides a new char\[] array as the contents
       will be filled with zeroes by the driver after use.Call sites within the driver have been updated to use the char\[] directly wherever possible.
       This includes direct usage in the GSS authentication code paths that internally were already converting the String password into a char\[] for internal usage.
       This allows configuring a connection with a password that must be generated on the fly or periodically changes. [PR #&#8203;2369](https://togithub.com/pgjdbc/pgjdbc/pull/2369) original issue [Issue #&#8203;2102](https://togithub.com/pgjdbc/pgjdbc/issues/2102)
   -   feat: add tcpNoDelay option [PR #&#8203;2341](https://togithub.com/pgjdbc/pgjdbc/pull/2341) fixes [Issue #&#8203;2324](https://togithub.com/pgjdbc/pgjdbc/issues/2324)
   -   feat: pg_service.conf and .pgpass support (jdbc:postgresql://?service=my-service) [PR #&#8203;2260](https://togithub.com/pgjdbc/pgjdbc/pull/2260) fixes [Issue #&#8203;2278](https://togithub.com/pgjdbc/pgjdbc/issues/2278)
   
   ##### Fixed
   
   -   Use local TimestampUtil in PgStatement and PgResultset for thread safety [PR #&#8203;2291](https://togithub.com/pgjdbc/pgjdbc/pull/2291)
       fixes [Issue #&#8203;921](https://togithub.com/pgjdbc/pgjdbc/issues/921) synchronize modification of shared calendar
   -   fix: PgObject isNull() was reporting the opposite fixes [Issue #&#8203;2411](https://togithub.com/pgjdbc/pgjdbc/issues/2411) [PR #&#8203;2414](https://togithub.com/pgjdbc/pgjdbc/pull/2414)
   -   fix: default file name is ".pg_service.conf" on Windows (not "pg_service.conf") [PR #&#8203;2398](https://togithub.com/pgjdbc/pgjdbc/pull/2398) fixes [Issue #&#8203;2278](https://togithub.com/pgjdbc/pgjdbc/issues/2278)
   -   test: Fix RefCursorFetchTest on older platforms
   -   fix: do not close refcursor after reading if fetchsize has been set fixes [Issue #&#8203;2227](https://togithub.com/pgjdbc/pgjdbc/issues/2227) [PR #&#8203;2371](https://togithub.com/pgjdbc/pgjdbc/pull/2371)
   -   fix: rework gss authentication to use the principal name to get the credentials fixes [Issue #&#8203;2235](https://togithub.com/pgjdbc/pgjdbc/issues/2235) [PR #&#8203;2352](https://togithub.com/pgjdbc/pgjdbc/pull/2352)
   -   fix: return getIndexInfo metadata columns in UPPER CASE [PR #&#8203;2368](https://togithub.com/pgjdbc/pgjdbc/pull/2368)
   -   fix: Connection leak in ConnectionFactoryImpl#tryConnect [PR #&#8203;2350](https://togithub.com/pgjdbc/pgjdbc/pull/2350) [Issue #&#8203;2351](https://togithub.com/pgjdbc/pgjdbc/issues/2351)
   -   fix: Fix For IS_AUTOGENERATED Flag [PR #&#8203;2348](https://togithub.com/pgjdbc/pgjdbc/pull/2348)
   -   fix: parsing service file tests for windows [PR #&#8203;2347](https://togithub.com/pgjdbc/pgjdbc/pull/2347)
   -   fix: The spec says that calling close() on a closed connection is a noop. [PR #&#8203;2345](https://togithub.com/pgjdbc/pgjdbc/pull/2345) fixes [Issue #&#8203;2300](https://togithub.com/pgjdbc/pgjdbc/issues/2300)
   -   fix: add microsecond precision to getTimestamp() called on sql TIME(6) Currently, "when fetching a value of type TIME(6) through
       resultSet.getTimestamp() only ms precision is retained, the microsecond fractional digits are lost." This change will retain the microsecond
       precision when .getTimestamp() is called on TIME(6). [PR #&#8203;2181](https://togithub.com/pgjdbc/pgjdbc/pull/2181) Closes [Issue #&#8203;1537](https://togithub.com/pgjdbc/pgjdbc/issues/1537)
   -   test: materialized view privileges [PR #&#8203;2209](https://togithub.com/pgjdbc/pgjdbc/pull/2209) add and drop a materialized view
       Add to TestUtil and also to DatabaseMetaData setup and teardown fixes [Issue #&#8203;2060](https://togithub.com/pgjdbc/pgjdbc/issues/2060)
   -   fix: typo in connect.md [PR #&#8203;2338](https://togithub.com/pgjdbc/pgjdbc/pull/2238) `OutOfMemoryException` => `OutOfMemoryError`
   -   fix: use local TimestampUtil in PgStatement and PgResultset for thread
       safety TimestampUtil is not thread safe. It raises exceptions when multiple threads use ResultSets of one connection. [PR #&#8203;2291](https://togithub.com/pgjdbc/pgjdbc/pull/2291)
       fixes [Issue #&#8203;921](https://togithub.com/pgjdbc/pgjdbc/issues/921)
       If PgStatement and PgResultSet use their own TimestampUtil no synchronize is needed.
   -   fix: typo in CONTRIBUTING.md [PR #&#8203;2332](https://togithub.com/pgjdbc/pgjdbc/pull/2332) seccion => section
   
   ### [`v42.3.1`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;4231-2021-10-29)
   
   ##### Changed
   
   -   improv: Arrays in Object\[] [PR 2330](https://togithub.com/pgjdbc/pgjdbc/pull/2330) when an Object\[] contains other arrays, treat as though it were a
       multi-dimensional array the one exception is byte\[], which is not supported.
   -   improv: Use jre utf-8 decoding [PR 2317](https://togithub.com/pgjdbc/pgjdbc/pull/2317) Remove use of custom utf-8 decoding.
   -   perf: improve performance of bytea string decoding [PR 2320](https://togithub.com/pgjdbc/pgjdbc/pull/2320)
       improve the parsing of bytea hex encoded string by making a lookup table for each of the valid ascii code points to the 4 bit numeric value
   -   feat: intern/canonicalize common strings [PR 2234](https://togithub.com/pgjdbc/pgjdbc/pull/2234)
   
   ##### Added
   
   ##### Fixed
   
   -   numeric binary decode for even 10 thousands [PR #&#8203;2327](https://togithub.com/pgjdbc/pgjdbc/pull/2327) fixes  [Issue 2326](https://togithub.com/pgjdbc/pgjdbc/issues/2326)
       binary numeric values which represented integers multiples of 10,000 from 10,000-9,990,000 were not decoded correctly
   -   \[typo] typo in certdir/README.md [PR #&#8203;2309](https://togithub.com/pgjdbc/pgjdbc/pull/2309) certificatess => certificates
   -   \[typo] typo in TimestampUtils.java [PR #&#8203;2314](https://togithub.com/pgjdbc/pgjdbc/pull/2314) Change `Greagorian` to `Gregorian`.
   -   remove check for negative pid in cancel request. Apparently pgbouncer can send one fixes [Issue 2317](https://togithub.com/pgjdbc/pgjdbc/issues/2317) [PR #&#8203;2319](https://togithub.com/pgjdbc/pgjdbc/pull/2319)
   
   ### [`v42.3.0`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;4230-2021-10-18)
   
   ##### Changed
   
   -   No longer build for Java 6 or Java 7
   -   If assumeMinServerVersion is not defined and server is at least 9.0, group startup statements into a single transaction PR [#&#8203;1977](https://togithub.com/pgjdbc/pgjdbc/pull/1977)
   
   ##### Added
   
   -   Support for pg_service.conf file and jdbc URL syntax: "jdbc:postgresql://?service=service1".
       Resource can be provided using 1) property "-Dorg.postgresql.pgservicefile=file1" 2) environment variable PGSERVICEFILE=file2 3) default location "$HOME/.pg_service.conf" 4) environment variable PGSYSCONFDIR=dir1 looks for file "dir1/pg_service.conf".
   -   Support for .pgpass file. Resource can be provided using 1) property "-Dorg.postgresql.pgpassfile=file1" 2) environment variable PGPASSFILE=file2 3) default location "$HOME/.pgpass"
   
   ##### Fixed
   
   -   Rework OSGi bundle activator so it does not rely on exception message to check DataSourceFactory presence PR [#&#8203;507](https://togithub.com/pgjdbc/pgjdbc/pull/507)
   -   Fix database metadata getFunctions() and getProcedures() to ignore search_path when no schema pattern is specified [PR #&#8203;2174](https://togithub.com/pgjdbc/pgjdbc/pull/2174)
   -   Fix refreshRow made the row readOnly. \[PR [#&#8203;2195](https://togithub.com/pgjdbc/pgjdbc/issues/2195)]\[https://github.com/pgjdbc/pgjdbc/pull/2195](https://togithub.com/pgjdbc/pgjdbc/pull/2195)5 Fixes [Issue #&#8203;2193](https://togithub.com/pgjdbc/pgjdbc/issues/2193)
   -   Fix do not add double quotes to identifiers already double quoted [PR #&#8203;2224](https://togithub.com/pgjdbc/pgjdbc/pull/2224) Fixes [Issue #&#8203;2223](https://togithub.com/pgjdbc/pgjdbc/issues/2223)
       Add a property `QUOTE_RETURNING_IDENTIFIERS` which determines if we put double quotes
       around identifiers that are provided in the returning array.
   -   Fix Provide useful error message for empty or missing passwords for SCRAM auth [PR #&#8203;2290](https://togithub.com/pgjdbc/pgjdbc/pull/2290) fixes [Issue #&#8203;2288](https://togithub.com/pgjdbc/pgjdbc/issues/2288)
   
   ### [`v42.2.24`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42224-2021-09-23)
   
   ##### Fixed
   
   -   Fix startup regressions caused by [PR #&#8203;1949](https://togithub.com/pgjdbc/pgjdbc/pull/1949). Instead of checking all types by OID, we can return types for well known types [PR #&#8203;2257](https://togithub.com/pgjdbc/pgjdbc/pull/2257)
   -   Backport [PR #&#8203;2148](https://togithub.com/pgjdbc/pgjdbc/pull/2148)
       Avoid leaking server error details through BatchUpdateException when logServerErrorDetail [PR #&#8203;2254](https://togithub.com/pgjdbc/pgjdbc/pull/2254)
   -   Backpatch [PR #&#8203;2247](https://togithub.com/pgjdbc/pgjdbc/pull/2247)
       QueryExecutorImpl.receiveFastpathResult did not properly handle ParameterStatus messages.
       This in turn caused failures for some LargeObjectManager operations. Closes [Issue #&#8203;2237](https://togithub.com/pgjdbc/pgjdbc/issues/2237)
       Fixed by adding the missing code path, based on the existing handling in processResults. [PR #&#8203;2253](https://togithub.com/pgjdbc/pgjdbc/pull/2253)
   -   Backpatch [PR #&#8203;2242](https://togithub.com/pgjdbc/pgjdbc/pull/2242) PgDatabaseMetaData.getIndexInfo() cast operands to smallint  [PR#&#8203;2253](https://togithub.com/pgjdbc/pgjdbc/pull/2253)
       It is possible to break method PgDatabaseMetaData.getIndexInfo() by adding certain custom operators. This PR fixes it.
   -   Backpatching [PR #&#8203;2251](https://togithub.com/pgjdbc/pgjdbc/pull/2251) into 42.2 Clean up open connections to fix test failures on omni and appveyor
       use older syntax for COMMENT ON FUNCTION with explicit no-arg parameter parentheses as it is required on server versions before v10.
       Handle cleanup of connection creation in StatementTest, handle cleanup of privileged connection in DatabaseMetaDataTest
   -   Backpatch [PR #&#8203;2245](https://togithub.com/pgjdbc/pgjdbc/pull/2245) fixes case where duplicate tables are returned if there are duplicate descriptions oids are not guaranteed to be unique in the catalog [PR #&#8203;2248](https://togithub.com/pgjdbc/pgjdbc/pull/2248)
   -   Change to updatable result set to use correctly primary or unique keys [PR #&#8203;2228](https://togithub.com/pgjdbc/pgjdbc/pull/2228)
       fixes issues introduced in [PR #&#8203;2199](https://togithub.com/pgjdbc/pgjdbc/pull/2199) closes [Issue #&#8203;2196](https://togithub.com/pgjdbc/pgjdbc/issues/2196)
   -   Fix NPE calling getTypeInfo when alias is null [PR #&#8203;2220](https://togithub.com/pgjdbc/pgjdbc/pull/2220)
   -   Backpatch [PR #&#8203;2217](https://togithub.com/pgjdbc/pgjdbc/pull/2217) to fix [Issue #&#8203;2215](https://togithub.com/pgjdbc/pgjdbc/issues/2215). OIDs are unsigned integers and were not being handled correctly when they exceeded the size of signed integers
   
   ### [`v42.2.23`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42223-2021-07-06)
   
   ##### Changed
   
   -   Renewed the SSL keys for testing
   
   ##### Fixed
   
   -   getColumnPrecision for Numeric when scale and precision not specified now returns 0 instead of 131089 fixes: Issue [#&#8203;2188](https://togithub.com/pgjdbc/pgjdbc/issues/2188)
   -   Calling refreshRow on an updateable resultset made the row readOnly. Fixes Issue [#&#8203;2193](https://togithub.com/pgjdbc/pgjdbc/issues/2193)
   -   results should be updateable if there is a unique index available [PR#&#8203;2199](https://togithub.com/PR/pgjdbc/issues/2199) Fixes Issue [#&#8203;2196](https://togithub.com/pgjdbc/pgjdbc/issues/2196)
   -   Rework sql type gathering to use OID instead of typname.
       This does not have the issue of name shadowing / qual-names, and has the added benefit of fixing [#&#8203;1948](https://togithub.com/pgjdbc/pgjdbc/issues/1948).
   
   ### [`v42.2.22`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42222-2021-06-16)
   
   ##### Fixed
   
   -   Regression caused by https://github.com/pgjdbc/pgjdbc/commit/4fa2d5bc1ed8c0086a3a197fc1c28f7173d53cac. Unfortunately
       due to the blocking nature of the driver and issues with seeing if there is a byte available on a blocking stream when it is encrypted
       this introduces unacceptable delays in returning from peek(). At this time there is no simple solution to this.
   
   ### [`v42.2.21`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42221-2021-06-10)
   
   ##### Changed
   
   -   Update docs to reflect deprecated DataSource API setServerName backpatch [PR#&#8203;2057](https://togithub.com/pgjdbc/pgjdbc/pull/2057) [PR #&#8203;2105](https://togithub.com/pgjdbc/pgjdbc/pull/2105)
   
   ##### Fixed
   
   -   make sure the table has defined primary keys when using updateable resultset backpatch [PR#&#8203;2101](https://togithub.com/pgjdbc/pgjdbc/pull/2101) fixes [Issue 1975](https://togithub.com/pgjdbc/pgjdbc/issues/1975) [PR #&#8203;2106](https://togithub.com/pgjdbc/pgjdbc/pull/2106)
   -   backpatch [PR #&#8203;2143](https://togithub.com/pgjdbc/pgjdbc/pull/2143) read notifies or errors that come in asynchronously after the ready for query [PR #&#8203;2168](https://togithub.com/pgjdbc/pgjdbc/pull/2168)
   -   backpatch [PR #&#8203;507](https://togithub.com/pgjdbc/pgjdbc/pull/507) which reworks OSGI bundle activator fixes [ISSUE #&#8203;2133](https://togithub.com/pgjdbc/pgjdbc/issues/2133)
   -   Fix database metadata getFunctions() and getProcedures() to ignore search_path when no schema pattern is specified. backpatch [PR #&#8203;2174](https://togithub.com/pgjdbc/pgjdbc/pull/2174)
       fixes [Issue 2173](https://togithub.com/pgjdbc/pgjdbc/issues/2173)
   
   ### [`v42.2.20`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42220-2021-04-19)
   
   ##### Fixed
   
   -   Partitioned indexes were not found fixes [#&#8203;2078](https://togithub.com/pgjdbc/pgjdbc/issues/2078) PR [#&#8203;2087](https://togithub.com/pgjdbc/pgjdbc/pull/2087)
   -   isValid() timeout should not be blocked [#&#8203;1943](https://togithub.com/pgjdbc/pgjdbc/pull/1943) Cherry-picked [#&#8203;2076](https://togithub.com/pgjdbc/pgjdbc/pull/2076)
       The usage of `setQueryTimeout();` with the same value as the `setNetworkTimeout();` is blocking the current transaction timeout.
       The timeouts are blocking each other with this approach.
   -   DatabaseMetaData.getTables returns columns in UPPER case as per the spec [PR #&#8203;2092](https://togithub.com/pgjdbc/pgjdbc/pull/2092) fixes [Issue #&#8203;830](https://togithub.com/pgjdbc/pgjdbc/issues/830)
   
   ### [`v42.2.19`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42219-2021-02-18)
   
   **Notable Changes**
   
   -   Now the driver uses SASLprep normalization for SCRAM authentication fixing some issues with spaces in passwords.
   -   If closeOnCompletion is called on an existing statement and the statement is executed a second time it will fail.
   
   ##### Changed
   
   -   Perf: avoid duplicate PGStream#changeSocket calls
   -   Fix: Actually close unclosed results. Previously was not closing the first unclosed result fixes [#&#8203;1903](https://togithub.com/pgjdbc/pgjdbc/issues/1903) ([#&#8203;1905](https://togithub.com/pgjdbc/pgjdbc/issues/1905)).
       There is a small behaviour change here as a result. If closeOnCompletion is called on an existing statement and the statement
       is executed a second time it will fail.
   
   ##### Added
   
   -   Verify code via forbidden-apis (jdk-internal and jdk-non-portable signatures) [PR #&#8203;2012](https://togithub.com/pgjdbc/pgjdbc/pull/2012)
   
   ##### Fixed
   
   -   Fix Binary transfer for numeric fixes [#&#8203;1935](https://togithub.com/pgjdbc/pgjdbc/issues/1935)
   -   Fix Allow specifying binaryTransferEnable even for those types that are not enabled by default
   -   Fix: properly set cancel socket timeout ([#&#8203;2044](https://togithub.com/pgjdbc/pgjdbc/issues/2044))
   -   Fix "Required class information missing" when old org.jboss:jandex parses pgjdbc classes \[issue 2008][https://github.com/pgjdbc/pgjdbc/issues/2008](https://togithub.com/pgjdbc/pgjdbc/issues/2008)08]
   -   Fix PGCopyInputStream returning the last row twice when reading with CopyOut API \[issue 2016][https://github.com/pgjdbc/pgjdbc/issues/2016](https://togithub.com/pgjdbc/pgjdbc/issues/2016)16]
   -   Fix Connnection.isValid() to not wait longer than existing network timeout [PR #&#8203;2040](https://togithub.com/pgjdbc/pgjdbc/pull/2040)
   -   Fix Passwords with spaces (ASCII and non-ASCII) now work with SCRAM authentication (driver now uses SASLprep normalization) [PR #&#8203;2052](https://togithub.com/pgjdbc/pgjdbc/pull/2052)
   -   Fix DatabaseMetaData.getTablePrivileges() to include views, materialized views, and foreign tables [PR #&#8203;2049](https://togithub.com/pgjdbc/pgjdbc/pull/2049)
   -   Fix Resolve ParseError in PGtokenizer fixes [#&#8203;2050](https://togithub.com/pgjdbc/pgjdbc/issues/2050)
   -   Fix return metadata privileges for views and foreign tables
   
   ### [`v42.2.18`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42218-2020-10-15)
   
   ##### Fixed
   
   -   Unfortunately changing the default of gssEncMode to ALLOW was not enough. The GSSEncMode Enum was not changed as well
       fixed in [#&#8203;1920](https://togithub.com/pgjdbc/pgjdbc/issues/1920)
   
   ### [`v42.2.17`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42217-2020-10-09)
   
   ##### Changed
   
   -   Change default of gssEncMode to ALLOW. PostgreSQL can deal with PREFER but there are cloud providers that did not implement the protocol properly. Libpq gets around this by checking for a GSS credential cache before attempting the connection. This is possible in JDK 8 and up, but not JDK6, or JDK7 fixes Issue [#&#8203;1868](https://togithub.com/pgjdbc/pgjdbc/issues/1868) [PR #&#8203;1913](https://togithub.com/pgjdbc/pgjdbc/pull/1913)
   
   ##### Added
   
   -   Add smallserial metadata \[PR [#&#8203;899](https://togithub.com/pgjdbc/pgjdbc/issues/899)([https://github.com/pgjdbc/pgjdbc/pull/899](https://togithub.com/pgjdbc/pgjdbc/pull/899))
   
   ##### Fixed
   
   -   Avoid NullPointerException when receiving PGbox, PGcircle, PGline, PGlseg, PGpath, PGpoint, PGpolygon, and PGmoney \[PR 1873] [https://github.com/pgjdbc/pgjdbc/pull/1873](https://togithub.com/pgjdbc/pgjdbc/pull/1873)3).
   -   The driver returns enum and jsonb arrays elements as String objects (like in 42.2.14 and earlier versions) [PR 1879](https://togithub.com/pgjdbc/pgjdbc/pull/1879).
   -   PgTokenizer was ignoring last empty token [PR #&#8203;1882](https://togithub.com/pgjdbc/pgjdbc/pull/1882)
   -   Remove osgi from karaf fixes Issue [#&#8203;1891](https://togithub.com/pgjdbc/pgjdbc/issues/1891) [PR #&#8203;1902](https://togithub.com/pgjdbc/pgjdbc/pull/1902)
   -   Handle nulls when the following clasess are used: PGbox, PGcircle, PGline, PGlseg, PGpath, PGpoint, PGpolygon, and PGmoney.
   
   ### [`v42.2.16`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42216-2020-08-20)
   
   ##### Known issues
   
   -   The driver returns enum and jsonb arrays elements are returned as PGobject instances (fixed in 42.2.17)
   
   ##### Fixed
   
   -   Arrays sent in binary format are now sent as 1 based. This was a regression for multi-dimensional arrays as well as text/varchar, oid and bytea arrays.
       Since 42.2.0 single dimensional arrays were stored 0 based. They are now sent 1 based which is the SQL standard, and the default
       for Postgres when sent as strings such as '{1,2,3}'. Fixes [issue 1860](https://togithub.com/pgjdbc/pgjdbc/issues/1860) in [PR 1863](https://togithub.com/pgjdbc/pgjdbc/pull/1863).
   
   ### [`v42.2.15`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42215-2020-08-14)
   
   ##### Known issues
   
   -   The driver returns enum and jsonb arrays elements are returned as PGobject instances (fixed in 42.2.17)
   
   ##### Changed
   
   -   Rename source distribution archive to `postgresql-$version-jdbc-src.tar.gz`, and add top-level archive folder [ba017507](https://togithub.com/pgjdbc/pgjdbc/commit/ba0175072ee9c751c1496d2fe170f4af7256f1a5)
   -   Add the ability to connect with a GSSAPI encrypted connection. As of PostgreSQL version 12 GSSAPI encrypted connections
       are possible. Now the driver will attempt to connect to the server with a GSSAPI encrypted connection. If that fails then
       attempt an SSL connection, finally falling back to a plain text connection. All of this is controlled using both the gssEncMode
       and sslMode parameters which, in concert with pg_hba.conf, determine if a particular mode is allowed and or required. [PR 1821](https://togithub.com/pgjdbc/pgjdbc/pull/1821) [ad921b9e](https://togithub.com/pgjdbc/pgjdbc/commit/ad921b9e3563b28b9a03b1e2dfaad0e34efc02f1)
   -   Source release archive shades dependencies (scram) by default. It affects only postgresql-version-src.tar.gz release artifact [f0301eb9](https://togithub.com/pgjdbc/pgjdbc/commit/f0301eb901f880059b00b0fb0a3ee93ef7d749a8)
   -   Refactor decoding arrays [PR 1194](https://togithub.com/pgjdbc/pgjdbc/pull/1194)
   
   ##### Added
   
   -   Verify nullness with CheckerFramework [6e524ae5](https://togithub.com/pgjdbc/pgjdbc/commit/6e524ae51cee67b25426c09a7083465c820c0a0d)
   
   ##### Fixed
   
   -   Avoid preparedStatement leak when using updateable ResultSet via insert/update/refreshRow [PR 1815](https://togithub.com/pgjdbc/pgjdbc/pull/1815) [9a0d2b18](https://togithub.com/pgjdbc/pgjdbc/commit/9a0d2b18a81c7ec5974d4caf2ff2d218312da25f)
   -   Change order of checks for oid vs primary keys. OID's have been deprecated. [PR 1613](https://togithub.com/pgjdbc/pgjdbc/pull/1613)
   -   Close certificate file stream. [PR 1837](https://togithub.com/pgjdbc/pgjdbc/pull/1837)
   -   Make sure socketTimeout is enforced [PR 1831](https://togithub.com/pgjdbc/pgjdbc/pull/1831)
   -   Assume PKCS-8 SSL key format by default [PR 1819](https://togithub.com/pgjdbc/pgjdbc/pull/1819)
   -   Preserve unquoted unicode whitespace in array literals [PR 1266](https://togithub.com/pgjdbc/pgjdbc/pull/1266)
   
   ### [`v42.2.14`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42214-2020-06-10)
   
   ##### Changed
   
   -   Reverted com.github.waffle:waffle-jna, org.osgi:org.osgi.core, org.osgi:org.osgi.enterprise dependencies to optional=true in Maven [PR 1797](https://togithub.com/pgjdbc/pgjdbc/pull/1797).
   
   ### [`v42.2.13`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42213-2020-06-04)
   
   **Notable Changes**
   
   -   Security: The primary reason to release this version and to continue the 42.2.x branch is for CVE-2020-13692.
       Reported by David Dworken, this is an XXE and more information can be found [here](https://cheatsheetseries.owasp.org/cheatsheets/XML_External_Entity_Prevention_Cheat_Sheet.html).
       Sehrope Sarkuni reworked the XML parsing to provide a solution in commit [14b62aca4](https://togithub.com/pgjdbc/pgjdbc/commit/14b62aca4764d496813f55a43d050b017e01eb65).
   -   The build system has been changed to Gradle thanks to Vladimir [PR 1627](https://togithub.com/pgjdbc/pgjdbc/pull/1627).
   -   Regression: com.github.waffle:waffle-jna, org.osgi:org.osgi.core, org.osgi:org.osgi.enterprise dependencies are listed as non-optional [issue 1975](https://togithub.com/pgjdbc/pgjdbc/issues/1795).
   
   ##### Changed
   
   ##### Added
   
   -   jre-6 was added back to allow us to release fixes for all artifacts in the 42.2.x branch [PR 1787](https://togithub.com/pgjdbc/pgjdbc/pull/1787)
   
   ##### Fixed
   
   -   I/O error ru translation [PR 1756](https://togithub.com/pgjdbc/pgjdbc/pull/1756)
   -   Issue [1771](https://togithub.com/pgjdbc/pgjdbc/issues/1771)  PgDatabaseMetaData.getFunctions() returns
       procedures fixed in [PR 1774](https://togithub.com/pgjdbc/pgjdbc/pull/1774)
   -   getTypeMap() returning null [PR 1781](https://togithub.com/pgjdbc/pgjdbc/pull/1774)
   -   Updated openssl example command [PR 1763](https://togithub.com/pgjdbc/pgjdbc/pull/1763)
   -   fix documentation with ordered list to be displayed correctly [PR 1783](https://togithub.com/pgjdbc/pgjdbc/pull/1783)
   
   ### [`v42.2.12`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42212-2020-03-31)
   
   **Notable changes**
   
   We have released 42.2.12 to correct regressions in this version: Specifically
   
   -   [PR 1729](https://togithub.com/pgjdbc/pgjdbc/pull/1729) was reverted as this is a breaking change
   -   [PR 1719](https://togithub.com/pgjdbc/pgjdbc/pull/1719) has been reverted as it introduced errors in the PgType Cache
   
   We recommend that version 42.2.11 not be used.
   
   ##### Changed
   
   -   reverted [PR 1729](https://togithub.com/pgjdbc/pgjdbc/pull/1729)  throw an error instead of silently rolling back a commit error.
       This change introduced a breaking change which will be moved to 42.3.0
   -   reverted [PR 1719](https://togithub.com/pgjdbc/pgjdbc/pull/1719)  add support for full names of data types ([#&#8203;1719](https://togithub.com/pgjdbc/pgjdbc/issues/1719))
   
   ### [`v42.2.11`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42211-2020-03-07)
   
   **Notable changes**
   As mentioned above this version is broken and should not be used.
   
   ##### Changed
   
   -   Reverted [PR 1641](https://togithub.com/pgjdbc/pgjdbc/pull/1252). The driver will now wait for EOF when sending cancel signals.
   -   `DatabaseMetaData#getProcedures` returns only procedures (not functions) for PostgreSQL 11+ [PR 1723](https://togithub.com/pgjdbc/pgjdbc/pull/1723)
   -   Convert silent rollbacks into exception if application sends `commit` or `xa.prepare` command [PR 1729](https://togithub.com/pgjdbc/pgjdbc/pull/1729)
   
   ##### Added
   
   -   feat: `raiseExceptionOnSilentRollback` connection option to configure if silent rollback should raise an exception [PR 1729](https://togithub.com/pgjdbc/pgjdbc/pull/1729)
   -   feat: Expose `ByteStreamWriter` in CopyManager [PR 1702](https://togithub.com/pgjdbc/pgjdbc/pull/1702)
   -   feat: add way to distinguish base and partitioned tables in PgDatabaseMetaData.getTables [PR 1708](https://togithub.com/pgjdbc/pgjdbc/pull/1708)
   -   refactor: introduce tuple abstraction (rebased) [PR 1701](https://togithub.com/pgjdbc/pgjdbc/pull/1701)
   -   refactor: make PSQLState enum consts for integrity constraint violations [PR 1699](https://togithub.com/pgjdbc/pgjdbc/pull/1699)
   -   test: add makefile to create ssl certs [PR 1706](https://togithub.com/pgjdbc/pgjdbc/pull/1706)
   
   ##### Fixed
   
   -   fix: Always use `.` as decimal separator in PGInterval [PR 1705](https://togithub.com/pgjdbc/pgjdbc/pull/1705)
   -   fix: allow DatabaseMetaData.getColumns to describe an unset scale [PR 1716](https://togithub.com/pgjdbc/pgjdbc/pull/1716)
   
   ##### Changed
   
   -   Build system update from Maven to Gradle [PR 1627](https://togithub.com/pgjdbc/pgjdbc/pull/1627)
   
   ##### Added
   
   -   docker-compose image for creating test databases (see `docker` folder)
   
   ### [`v42.2.10`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42210-2020-01-30)
   
   ##### Changed
   
   -   (!) Regression: remove receiving EOF from backend after cancel [PR 1641](https://togithub.com/pgjdbc/pgjdbc/pull/1252). The regression is that the subsequent query might receive the cancel signal.
   
   ##### Added
   
   -   Add maxResultBuffer property [PR 1657](https://togithub.com/pgjdbc/pgjdbc/pull/1657)
   -   add caller push of binary data (rebase of [#&#8203;953](https://togithub.com/pgjdbc/pgjdbc/issues/953)) [PR 1659](https://togithub.com/pgjdbc/pgjdbc/pull/1659)
   
   ##### Fixed
   
   -   Cleanup PGProperty, sort values, and add some missing to docs [PR 1686](https://togithub.com/pgjdbc/pgjdbc/pull/1686)
   -   Fixing LocalTime rounding (losing precision) [PR 1570](https://togithub.com/pgjdbc/pgjdbc/pull/1570)
   -   Network Performance of PgDatabaseMetaData.getTypeInfo() method [PR 1668](https://togithub.com/pgjdbc/pgjdbc/pull/1668)
   -   Issue [#&#8203;1680](https://togithub.com/pgjdbc/pgjdbc/issues/1680) updating a boolean field requires special handling to set it to t or f instead of true or false [PR 1682](https://togithub.com/pgjdbc/pgjdbc/pull/1682)
   -   bug in pgstream for replication [PR 1681](https://togithub.com/pgjdbc/pgjdbc/pull/1681)
   -   Issue [#&#8203;1677](https://togithub.com/pgjdbc/pgjdbc/issues/1677) NumberFormatException when fetching PGInterval with small value [PR 1678](https://togithub.com/pgjdbc/pgjdbc/pull/1678)
   -   Metadata queries improvements with large schemas. [PR 1673](https://togithub.com/pgjdbc/pgjdbc/pull/1673)
   -   Utf 8 encoding optimizations [PR 1444](https://togithub.com/pgjdbc/pgjdbc/pull/1444)
   -   interval overflow [PR 1658](https://togithub.com/pgjdbc/pgjdbc/pull/1658)
   -   Issue [#&#8203;1482](https://togithub.com/pgjdbc/pgjdbc/issues/1482) where the port was being added to the GSSAPI service name [PR 1651](https://togithub.com/pgjdbc/pgjdbc/pull/1651)
   -   remove receiving EOF from backend after cancel since according to protocol the server closes the connection once cancel is sent (connection reset exception is always thrown) [PR 1641](https://togithub.com/pgjdbc/pgjdbc/pull/1641)
   -   Unable to register out parameter Issue [#&#8203;1646](https://togithub.com/pgjdbc/pgjdbc/issues/1646) [PR 1648](https://togithub.com/pgjdbc/pgjdbc/pull/1648)
   
   ### [`v42.2.9`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;4229-2019-12-06)
   
   ##### Changed
   
   ##### Added
   
   -   read only transactions [PR 1252](https://togithub.com/pgjdbc/pgjdbc/pull/1252)
   -   pkcs12 key functionality [PR 1599](https://togithub.com/pgjdbc/pgjdbc/pull/1599)
   -   new "escapeSyntaxCallMode" connection property [PR 1560](https://togithub.com/pgjdbc/pgjdbc/pull/1560)
   -   connection property to limit server error detail in exception exceptions [PR 1579](https://togithub.com/pgjdbc/pgjdbc/pull/1579)
   -   cancelQuery() to PGConnection public interface [PR 1157](https://togithub.com/pgjdbc/pgjdbc/pull/1157)
   -   support for large update counts (JDBC 4.2) [PR 935](https://togithub.com/pgjdbc/pgjdbc/pull/935)
   -   Add Binary Support for Oid.NUMERIC and Oid.NUMERIC_ARRAY [PR 1636](https://togithub.com/pgjdbc/pgjdbc/pull/1636)
   
   ##### Fixed
   
   -   issue 716 getTypeInfo() may not return data in the order specified in Oracle documentation [PR 1506](https://togithub.com/pgjdbc/pgjdbc/pull/1506)
   -   PgSQLXML setCharacterStream() results in null value  [PR 1608](https://togithub.com/pgjdbc/pgjdbc/pull/1608)
   -   get correct column length for simple domains [PR 1605](https://togithub.com/pgjdbc/pgjdbc/pull/1605)
   -   NPE as a result of calling executeQuery twice on a statement fixes issue [#&#8203;684](https://togithub.com/pgjdbc/pgjdbc/issues/684) \[PR 1610] [https://github.com/pgjdbc/pgjdbc/pull/1610](https://togithub.com/pgjdbc/pgjdbc/pull/1610)0)
   -   handle numeric domain types [PR 1611](https://togithub.com/pgjdbc/pgjdbc/pull/1611)
   -   pginterval to take iso8601 strings [PR 1612](https://togithub.com/pgjdbc/pgjdbc/pull/1612)
   -   remove currentTimeMillis from code, tests are OK [PR 1617](https://togithub.com/pgjdbc/pgjdbc/pull/1617)
   -   NPE when calling setNull on a PreparedStatement with no parameters [PR 1620](https://togithub.com/pgjdbc/pgjdbc/pull/1620)
   -   allow OUT parameter registration when using CallableStatement native CALL [PR 1561](https://togithub.com/pgjdbc/pgjdbc/pull/1561)
   -   add release save point into execute with batch [PR 1583](https://togithub.com/pgjdbc/pgjdbc/pull/1583)
   -   Prevent use of extended query protocol for BEGIN before COPY [PR 1639](https://togithub.com/pgjdbc/pgjdbc/pull/1639)
   
   ### [`v42.2.8`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;4228-2019-09-13)
   
   ##### Changed
   
   ##### Added
   
   ##### Fixed
   
   -   fix: Revert inet default Java type to PGObject and handle values with net masks [PR 1568](https://togithub.com/pgjdbc/pgjdbc/pull/1568)
   
   ### [`v42.2.7`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;4227-2019-09-03)
   
   ##### Changed
   
   ##### Added
   
   -   Expose parameter status messages (GUC_REPORT) to the user [PR 1435](https://togithub.com/pgjdbc/pgjdbc/pull/1435)
   -   Add automatic module name to manifest for jdk9+ [PR 1538](https://togithub.com/pgjdbc/pgjdbc/pull/1538)
   -   Log ignoring rollback when no transaction in progress [PR 1549](https://togithub.com/pgjdbc/pgjdbc/pull/1549)
   -   Map inet type to InetAddress [PR 1527](https://togithub.com/pgjdbc/pgjdbc/pull/1527) [issue 1134](https://togithub.com/pgjdbc/pgjdbc/issues/1134)
   
   ##### Fixed
   
   -   fix [issue 1547](https://togithub.com/pgjdbc/pgjdbc/issues/1547) As long as peek returns some bytes do not reset the timeout, this allows us to continue checking until any async notifies are consumed [PR 1548](https://togithub.com/pgjdbc/pgjdbc/pull/1548)
   -   fix: [issue 1466](https://togithub.com/pgjdbc/pgjdbc/issues/1466) In logical decoding the if the backend was requesting a reply we… [PR 1467](https://togithub.com/pgjdbc/pgjdbc/pull/1467)
   -   fix: [issue 1534](https://togithub.com/pgjdbc/pgjdbc/issues/1534) Proleptic java.time support [PR 1539](https://togithub.com/pgjdbc/pgjdbc/pull/1539)
   -   fix Ensure isValid() will not last more than timeout seconds [PR 1557](https://togithub.com/pgjdbc/pgjdbc/pull/1557)
   
   ### [`v42.2.6`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;4226-2019-06-19)
   
   ##### Known issues
   
   -   Waffle has [dropped support](https://togithub.com/Waffle/waffle/releases/tag/waffle-1.9.0) for 1.6, 1.7 as such the new waffle 1.9.x is only available in jre8
   -   Microseconds in timestamps might be truncated when transferred in binary mode
   -   24:00 time handling is not consistent [issue 1385](https://togithub.com/pgjdbc/pgjdbc/issues/1385)
   -   Unexpected packet type during stream replication [issue 1466](https://togithub.com/pgjdbc/pgjdbc/issues/1466)
   -   Driver goes missing after OSGi bundle restart [issue 1476](https://togithub.com/pgjdbc/pgjdbc/issues/1476)
   
   ##### Changed
   
   -   Change IS_GENERATED to IS_GENERATEDCOLUMN as per spec [PR 1485](https://togithub.com/pgjdbc/pgjdbc/pull/1485)
   -   Fix missing metadata columns, and misspelled columns in PgDatabaseMetaData#getTables [PR 1323](https://togithub.com/pgjdbc/pgjdbc/pull/1323)
   
   ##### Added
   
   -   CI tests with Java 11, and Java EA
   -   Support temporary replication slots in ReplicationCreateSlotBuilder [PR 1306](https://togithub.com/pgjdbc/pgjdbc/pull/1306)
   -   Support PostgreSQL 11, 12
   -   Return function (PostgreSQL 11) columns in PgDatabaseMetaData#getFunctionColumns
   -   Return information on create replication slot, now the snapshot_name is exported
       to allow a consistent snapshot in some uses cases. [PR 1335](https://togithub.com/pgjdbc/pgjdbc/pull/1335)
   
   ##### Fixed
   
   -   Fixed async copy performance (1ms per op) in SSL mode [PR 1314](https://togithub.com/pgjdbc/pgjdbc/pull/1314)
   -   Return Double.NaN for 'NaN'::numeric [PR 1304](https://togithub.com/pgjdbc/pgjdbc/pull/1304)
   -   Performance issue in PgDatabaseMetaData#getTypeInfo with lots of types in DB [PR 1302](https://togithub.com/pgjdbc/pgjdbc/pull/1302)
   -   PGCopyInputStream#read should cap values to \[0, 255], -1 [PR 1349](https://togithub.com/pgjdbc/pgjdbc/pull/1349)
   -   Fixes LocalDateTime handling of BC dates [PR 1388](https://togithub.com/pgjdbc/pgjdbc/pull/1388)
   -   Release savepoints in autosave mode to prevent out of shared memory errors at the server side [PR 1409](https://togithub.com/pgjdbc/pgjdbc/pull/1409)
   -   Fix execution with big decimal in simple query mode. [PR 1463](https://togithub.com/pgjdbc/pgjdbc/pull/1463)
   -   Fix rounding for timestamps truncated to dates before 1970 [PR 1502](https://togithub.com/pgjdbc/pgjdbc/pull/1502)
   
   ### [`v42.2.5`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;4225-2018-08-27)
   
   ##### Known issues
   
   -   1ms per async copy call [issue 1312](https://togithub.com/pgjdbc/pgjdbc/issues/1312)
   
   ##### Changed
   
   -   `ssl=true` implies `sslmode=verify-full`, that is it requires valid server certificate [cdeeaca4](https://togithub.com/pgjdbc/pgjdbc/commit/cdeeaca47dc3bc6f727c79a582c9e4123099526e)
   
   targetServerType=master has been deprecated in favour of targetServerType=primary. master
   will still be accepted but not documented.
   
   ##### Added
   
   -   Support for `sslmode=allow/prefer/require` [cdeeaca4](https://togithub.com/pgjdbc/pgjdbc/commit/cdeeaca47dc3bc6f727c79a582c9e4123099526e)
   
   ##### Fixed
   
   -   Security: added server hostname verification for non-default SSL factories in `sslmode=verify-full` (CVE-2018-10936) [cdeeaca4](https://togithub.com/pgjdbc/pgjdbc/commit/cdeeaca47dc3bc6f727c79a582c9e4123099526e)
   -   Updated documentation on SSL configuration [fa032732](https://togithub.com/pgjdbc/pgjdbc/commit/fa032732acfe51c6e663ee646dd5c1beaa1af857)
   -   Updated Japanese translations [PR 1275](https://togithub.com/pgjdbc/pgjdbc/pull/1275)
   -   IndexOutOfBounds on prepared multistatement with insert values [c2885dd0](https://togithub.com/pgjdbc/pgjdbc/commit/c2885dd0cfc793f81e5dd3ed2300bb32476eb14a)
   
   ### [`v42.2.4`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;4224-2018-07-14)
   
   ##### Changed
   
   -   PreparedStatement.setNull(int parameterIndex, int t, String typeName) no longer ignores the typeName
       argument if it is not null [PR 1160](https://togithub.com/pgjdbc/pgjdbc/pull/1160)
   
   ##### Fixed
   
   -   Fix treatment of SQL_TSI_YEAR, SQL_TSI_WEEK, SQL_TSI_MINUTE [PR 1250](https://togithub.com/pgjdbc/pgjdbc/pull/1250)
   -   Map integrity constraint violation to XA_RBINTEGRITY instead of XAER_RMFAIL [PR 1175](https://togithub.com/pgjdbc/pgjdbc/pull/1175) [f2d1352c](https://togithub.com/pgjdbc/pgjdbc/commit/f2d1352c2b3ea98492beb6127cd6d95039a0b92f)
   
   ### [`v42.2.3`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;4223-2018-07-12)
   
   ##### Known issues
   
   -   SQL_TSI_YEAR is treated as hour, SQL_TSI_WEEK is treated as hour, SQL_TSI_MINUTE is treated as second
   
   ##### Changed
   
   -   Reduce the severity of the error log messages when an exception is re-thrown. The error will be
       thrown to caller to be dealt with so no need to log at this verbosity by pgjdbc  [PR 1187](https://togithub.com/pgjdbc/pgjdbc/pull/1187)
   -   Deprecate Fastpath API [PR 903](https://togithub.com/pgjdbc/pgjdbc/pull/903)
   -   Support parenthesis in {oj ...} JDBC escape syntax [PR 1204](https://togithub.com/pgjdbc/pgjdbc/pull/1204)
   -   ubenchmark module moved pgjdbc/benchmarks repository due to licensing issues [PR 1215](https://togithub.com/pgjdbc/pgjdbc/pull/1215)
   -   Include section on how to submit a bug report in CONTRIBUTING.md [PR 951](https://togithub.com/pgjdbc/pgjdbc/pull/951)
   
   ##### Fixed
   
   -   getString for PGObject-based types returned "null" string instead of null [PR 1154](https://togithub.com/pgjdbc/pgjdbc/pull/1154)
   -   Field metadata cache can be disabled via databaseMetadataCacheFields=0 [PR 1052](https://togithub.com/pgjdbc/pgjdbc/pull/1052)
   -   Properly encode special symbols in passwords in BaseDataSource [PR 1201](https://togithub.com/pgjdbc/pgjdbc/pull/1201)
   -   Adjust date, hour, minute, second when rounding nanosecond part of a timestamp [PR 1212](https://togithub.com/pgjdbc/pgjdbc/pull/1212)
   -   perf: reduce memory allocations in query cache [PR 1227](https://togithub.com/pgjdbc/pgjdbc/pull/1227)
   -   perf: reduce memory allocations in SQL parser [PR 1230](https://togithub.com/pgjdbc/pgjdbc/pull/1230), [PR 1233](https://togithub.com/pgjdbc/pgjdbc/pull/1233)
   -   Encode URL parameters in BaseDataSource [PR 1201](https://togithub.com/pgjdbc/pgjdbc/pull/1201)
   -   Improve JavaDoc formatting [PR 1236](https://togithub.com/pgjdbc/pgjdbc/pull/1236)
   
   ### [`v42.2.2`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42224-2021-09-23)
   
   ##### Fixed
   
   -   Fix startup regressions caused by [PR #&#8203;1949](https://togithub.com/pgjdbc/pgjdbc/pull/1949). Instead of checking all types by OID, we can return types for well known types [PR #&#8203;2257](https://togithub.com/pgjdbc/pgjdbc/pull/2257)
   -   Backport [PR #&#8203;2148](https://togithub.com/pgjdbc/pgjdbc/pull/2148)
       Avoid leaking server error details through BatchUpdateException when logServerErrorDetail [PR #&#8203;2254](https://togithub.com/pgjdbc/pgjdbc/pull/2254)
   -   Backpatch [PR #&#8203;2247](https://togithub.com/pgjdbc/pgjdbc/pull/2247)
       QueryExecutorImpl.receiveFastpathResult did not properly handle ParameterStatus messages.
       This in turn caused failures for some LargeObjectManager operations. Closes [Issue #&#8203;2237](https://togithub.com/pgjdbc/pgjdbc/issues/2237)
       Fixed by adding the missing code path, based on the existing handling in processResults. [PR #&#8203;2253](https://togithub.com/pgjdbc/pgjdbc/pull/2253)
   -   Backpatch [PR #&#8203;2242](https://togithub.com/pgjdbc/pgjdbc/pull/2242) PgDatabaseMetaData.getIndexInfo() cast operands to smallint  [PR#&#8203;2253](https://togithub.com/pgjdbc/pgjdbc/pull/2253)
       It is possible to break method PgDatabaseMetaData.getIndexInfo() by adding certain custom operators. This PR fixes it.
   -   Backpatching [PR #&#8203;2251](https://togithub.com/pgjdbc/pgjdbc/pull/2251) into 42.2 Clean up open connections to fix test failures on omni and appveyor
       use older syntax for COMMENT ON FUNCTION with explicit no-arg parameter parentheses as it is required on server versions before v10.
       Handle cleanup of connection creation in StatementTest, handle cleanup of privileged connection in DatabaseMetaDataTest
   -   Backpatch [PR #&#8203;2245](https://togithub.com/pgjdbc/pgjdbc/pull/2245) fixes case where duplicate tables are returned if there are duplicate descriptions oids are not guaranteed to be unique in the catalog [PR #&#8203;2248](https://togithub.com/pgjdbc/pgjdbc/pull/2248)
   -   Change to updatable result set to use correctly primary or unique keys [PR #&#8203;2228](https://togithub.com/pgjdbc/pgjdbc/pull/2228)
       fixes issues introduced in [PR #&#8203;2199](https://togithub.com/pgjdbc/pgjdbc/pull/2199) closes [Issue #&#8203;2196](https://togithub.com/pgjdbc/pgjdbc/issues/2196)
   -   Fix NPE calling getTypeInfo when alias is null [PR #&#8203;2220](https://togithub.com/pgjdbc/pgjdbc/pull/2220)
   -   Backpatch [PR #&#8203;2217](https://togithub.com/pgjdbc/pgjdbc/pull/2217) to fix [Issue #&#8203;2215](https://togithub.com/pgjdbc/pgjdbc/issues/2215). OIDs are unsigned integers and were not being handled correctly when they exceeded the size of signed integers
   
   ### [`v42.2.1`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;42219-2021-02-18)
   
   **Notable Changes**
   
   -   Now the driver uses SASLprep normalization for SCRAM authentication fixing some issues with spaces in passwords.
   -   If closeOnCompletion is called on an existing statement and the statement is executed a second time it will fail.
   
   ##### Changed
   
   -   Perf: avoid duplicate PGStream#changeSocket calls
   -   Fix: Actually close unclosed results. Previously was not closing the first unclosed result fixes [#&#8203;1903](https://togithub.com/pgjdbc/pgjdbc/issues/1903) ([#&#8203;1905](https://togithub.com/pgjdbc/pgjdbc/issues/1905)).
       There is a small behaviour change here as a result. If closeOnCompletion is called on an existing statement and the statement
       is executed a second time it will fail.
   
   ##### Added
   
   -   Verify code via forbidden-apis (jdk-internal and jdk-non-portable signatures) [PR #&#8203;2012](https://togithub.com/pgjdbc/pgjdbc/pull/2012)
   
   ##### Fixed
   
   -   Fix Binary transfer for numeric fixes [#&#8203;1935](https://togithub.com/pgjdbc/pgjdbc/issues/1935)
   -   Fix Allow specifying binaryTransferEnable even for those types that are not enabled by default
   -   Fix: properly set cancel socket timeout ([#&#8203;2044](https://togithub.com/pgjdbc/pgjdbc/issues/2044))
   -   Fix "Required class information missing" when old org.jboss:jandex parses pgjdbc classes \[issue 2008][https://github.com/pgjdbc/pgjdbc/issues/2008](https://togithub.com/pgjdbc/pgjdbc/issues/2008)08]
   -   Fix PGCopyInputStream returning the last row twice when reading with CopyOut API \[issue 2016][https://github.com/pgjdbc/pgjdbc/issues/2016](https://togithub.com/pgjdbc/pgjdbc/issues/2016)16]
   -   Fix Connnection.isValid() to not wait longer than existing network timeout [PR #&#8203;2040](https://togithub.com/pgjdbc/pgjdbc/pull/2040)
   -   Fix Passwords with spaces (ASCII and non-ASCII) now work with SCRAM authentication (driver now uses SASLprep normalization) [PR #&#8203;2052](https://togithub.com/pgjdbc/pgjdbc/pull/2052)
   -   Fix DatabaseMetaData.getTablePrivileges() to include views, materialized views, and foreign tables [PR #&#8203;2049](https://togithub.com/pgjdbc/pgjdbc/pull/2049)
   -   Fix Resolve ParseError in PGtokenizer fixes [#&#8203;2050](https://togithub.com/pgjdbc/pgjdbc/issues/2050)
   -   Fix return metadata privileges for views and foreign tables
   
   ### [`v42.2.0`](https://togithub.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;4220-2018-01-17)
   
   ##### Known issues
   
   -   SCRAM does not work as scram:client library is not packaged
   -   client_encoding has to be UTF8 even with allowEncodingChanges=true
   
   ##### Added
   
   -   Support SCRAM-SHA-256 for PostgreSQL 10 in the JDBC 4.2 version (Java 8+) using the Ongres SCRAM library. [PR 842](https://togithub.com/pgjdbc/pgjdbc/pull/842)
   -   Make SELECT INTO and CREATE TABLE AS return row counts to the client in their command tags. [Issue 958](https://togithub.com/pgjdbc/pgjdbc/issues/958) [PR 962](https://togithub.com/pgjdbc/pgjdbc/pull/962)
   -   Support Subject Alternative Names for SSL connections. [PR 952](https://togithub.com/pgjdbc/pgjdbc/pull/952)
   -   Support isAutoIncrement metadata for PostgreSQL 10 IDENTITY column. [PR 1004](https://togithub.com/pgjdbc/pgjdbc/pull/1004)
   -   Support for primitive arrays [PR#&#8203;887](https://togithub.com/pgjdbc/pgjdbc/pull/887) [3e0491a](https://togithub.com/pgjdbc/pgjdbc/commit/3e0491ac3833800721b98e7437635cf6ab338162)
   -   Implement support for get/setNetworkTimeout() in connections. [PR 849](https://togithub.com/pgjdbc/pgjdbc/pull/849)
   -   Make GSS JAAS login optional, add an option "jaasLogin" [PR 922](https://togithub.com/pgjdbc/pgjdbc/pull/922) see [Connecting to the Database](https://jdbc.postgresql.org/documentation/head/connect.html)
   
   ##### Changed
   
   -   Improve behaviour of ResultSet.getObject(int, Class). [PR 932](https://togithub.com/pgjdbc/pgjdbc/pull/932)
   -   Parse CommandComplete message using a regular expresion, allows complete catch of server returned commands for INSERT, UPDATE, DELETE, SELECT, FETCH, MOVE, COPY and future commands. [PR 962](https://togithub.com/pgjdbc/pgjdbc/pull/962)
   -   Use 'time with timezone' and 'timestamp with timezone' as is and ignore the user provided Calendars, 'time' and 'timestamp' work as earlier except "00:00:00" now maps to 1970-01-01 and "24:00:00" uses the system provided Calendar ignoring the user-provided one [PR 1053](https://togithub.com/pgjdbc/pgjdbc/pull/1053)
   -   Change behaviour of multihost connection. The new behaviour is to try all secondaries first before trying the master [PR 844](https://togithub.com/pgjdbc/pgjdbc/pull/844).
   -   Avoid reflective access to TimeZone.defaultTimeZone in Java 9+ [PR 1002](https://togithub.com/pgjdbc/pgjdbc/pull/1002) fixes [Issue 986](https://togithub.com/pgjdbc/pgjdbc/issues/986)
   
   ##### Fixed
   
   -   Make warnings available as soon as they are received from the server. This is useful for long running queries, where it can be beneficial to know about a warning before the query completes. [PR 857](https://togithub.com/pgjdbc/pgjdbc/pull/857)
   -   Use 00:00:00 and 24:00:00 for LocalTime.MIN/MAX. [PR 992](https://togithub.com/pgjdbc/pgjdbc/pull/992)
   -   Now the DatabaseMetaData.getFunctions() implementation complies with the JDBC docs. [PR 918](https://togithub.com/pgjdbc/pgjdbc/pull/918)
   -   Execute autosave/rollback savepoint via simple queries always to prevent "statement S_xx not exists" when autosaving fixes [Issue #&#8203;955](https://togithub.com/pgjdbc/pgjdbc/issues/955)
   -   Received resultset tuples, but no field structure for them" when bind failure happens on 5th execution of a statement [Issue 811](https://togithub.com/pgjdbc/pgjdbc/issues/811)
   
   ##### Removed
   
   -   Drop support for the (insecure) crypt authentication method. [PR 1026](https://togithub.com/pgjdbc/pgjdbc/pull/1026)
   
   ##### Deprecated
   
   -   Reintroduce Driver.getVersion for backward compatibility reasons, mark it as deprecated as application should not rely on it (regression since 42.0.0) [50d5dd3e](https://togithub.com/pgjdbc/pgjdbc/commit/50d5dd3e708a92602e04d6b4aa0822ad3f110a78)
   
   </details>
   
   ---
   
   ### Configuration
   
   📅 **Schedule**: At any time (no schedule defined).
   
   🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
   
   â™» **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
   
   🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
   
   ---
   
    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.
   
   ---
   
   This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/apache/fineract).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@fineract.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [fineract] ptuomola merged pull request #2104: chore(deps): update dependency org.postgresql:postgresql to v42.3.3

Posted by GitBox <gi...@apache.org>.
ptuomola merged pull request #2104:
URL: https://github.com/apache/fineract/pull/2104


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@fineract.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org