fix(deps): update dependency org.postgresql:postgresql to v42.6.0
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
org.postgresql:postgresql (source) | compile | minor |
42.5.4 -> 42.6.0
|
Release Notes
pgjdbc/pgjdbc
v42.6.0
Changed
fix: use PhantomReferences instead of Obejct.finalize()
to track Connection leaks MR #2847
The change replaces all uses of Object.finalize with PhantomReferences.
The leaked resources (Connections) are tracked in a helper thread that is active as long as
there are connections in use. By default, the thread keeps running for 30 seconds after all
the connections are released. The timeout is set with pgjdbc.config.cleanup.thread.ttl system property.
refactor:(loom) replace the usages of synchronized with ReentrantLock MR #2635 Fixes Issue #1951
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.