dependabot[bot] opened a new pull request, #1746: URL: https://github.com/apache/james-project/pull/1746
Bumps [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) from 42.3.6 to 42.3.8. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pgjdbc/pgjdbc/releases">org.postgresql:postgresql's releases</a>.</em></p> <blockquote> <h2>v42.3.8</h2> <h2>What's Changed</h2> <ul> <li>backpatch changes for 42.5.1 by <a href="https://github.com/davecramer"><code>@​davecramer</code></a> in <a href="https://redirect.github.com/pgjdbc/pgjdbc/pull/2674">pgjdbc/pgjdbc#2674</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/pgjdbc/pgjdbc/compare/REL42.3.7...REL42.3.8">https://github.com/pgjdbc/pgjdbc/compare/REL42.3.7...REL42.3.8</a></p> <h2>v42.3.7</h2> <h2>What's Changed</h2> <ul> <li>backpatch changes from GHSA-r38f-c4h4-hqq2 security advisory for CVE-2022-31197 by <a href="https://github.com/davecramer"><code>@​davecramer</code></a> in <a href="https://redirect.github.com/pgjdbc/pgjdbc/pull/2607">pgjdbc/pgjdbc#2607</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/pgjdbc/pgjdbc/compare/REL42.3.6...REL42.3.7">https://github.com/pgjdbc/pgjdbc/compare/REL42.3.6...REL42.3.7</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md">org.postgresql:postgresql's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <p>Notable changes since version 42.0.0, read the complete <a href="https://jdbc.postgresql.org/documentation/changelog.html">History of Changes</a>.</p> <p>The format is based on <a href="http://keepachangelog.com/en/1.0.0/">Keep a Changelog</a>.</p> <h2>[Unreleased]</h2> <h3>Changed</h3> <h3>Added</h3> <h3>Fixed</h3> <h2>[42.6.0] (2023-03-17 15:34:34 -0400)</h2> <h3>Changed</h3> <p>fix: use PhantomReferences instead of <code>Obejct.finalize()</code> to track Connection leaks [PR <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2847">#2847</a>](<a href="https://redirect.github.com/pgjdbc/pgjdbc/pull/2847">pgjdbc/pgjdbc#2847</a>)</p> <pre><code>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. </code></pre> <p>refactor:(loom) replace the usages of synchronized with ReentrantLock [PR <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2635">#2635</a>](<a href="https://redirect.github.com/pgjdbc/pgjdbc/pull/2635">pgjdbc/pgjdbc#2635</a>) Fixes [Issue <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/1951">#1951</a>](<a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/1951">pgjdbc/pgjdbc#1951</a>)</p> <h2>[42.5.4] (2023-02-15 10:21:04 -0500)</h2> <h3>Fixed</h3> <p>fix: fix testGetSQLTypeQueryCache by searching for xid type. We used to search for box type but it is now cached. xid is not cached, this nuance is required for the test. fix OidValueCorrectnessTest BOX_ARRAY OID, by adding BOX_ARRAY to the oidTypeName map [PR <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2810">#2810</a>]((<a href="https://redirect.github.com/pgjdbc/pgjdbc/pull/2810">pgjdbc/pgjdbc#2810</a>). fixes [Issue <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2804">#2804</a>](<a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2804">pgjdbc/pgjdbc#2804</a>). fix: Make sure that github CI runs tests on all [PRs <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2809">#2809</a>]((<a href="https://redirect.github.com/pgjdbc/pgjdbc/pull/2809">pgjdbc/pgjdbc#2809</a>)).</p> <h2>[42.5.3] (2023-02-03 08:24:50 -0500)</h2> <h3>Fixed</h3> <p>fix: Add box to TypeInfoCache, fixes [Issue <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2746">#2746</a>](<a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2746">pgjdbc/pgjdbc#2746</a>) [PR <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2747">#2747</a>](<a href="https://redirect.github.com/pgjdbc/pgjdbc/pull/2747">pgjdbc/pgjdbc#2747</a>) fix: regression in PgResultSet LONG_MIN copy and paste error fixes [Issue <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2748">#2748</a>](<a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2748">pgjdbc/pgjdbc#2748</a>) <a href="https://redirect.github.com/pgjdbc/pgjdbc/pull/2749">PR#2749</a></p> <h2>[42.5.2] (2023-01-31 14:30:46 -0500)</h2> <h3>Changed</h3> <p>regression: This release has 2 known regressions which make it unusable see the notes above. We advise people to use 42.5.3 instead. docs: specify that timeouts are in seconds and there is a maximum. Housekeeping on some tests fixes <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2671">#Issue 2671</a> [PR <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2686">#2686</a>](<a href="https://redirect.github.com/pgjdbc/pgjdbc/pull/2686">pgjdbc/pgjdbc#2686</a>) docs: clarify binaryTransfer and add it to README <a href="https://redirect.github.com/pgjdbc/pgjdbc/pull/2698">PR# 2698</a> docs: Document the need to encode reserved characters in the connection URL [PR <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2700">#2700</a>](<a href="https://redirect.github.com/pgjdbc/pgjdbc/pull/2700">pgjdbc/pgjdbc#2700</a>) feat: Define binary transfer for custom types dynamically/automatically fixes [Issue <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2554">#2554</a>](<a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2554">pgjdbc/pgjdbc#2554</a>) [PR <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2556">#2556</a>](<a href="https://redirect.github.com/pgjdbc/pgjdbc/pull/2556">pgjdbc/pgjdbc#2556</a>)</p> <h3>Added</h3> <p>fix: added gssResponseTimeout as part of [PR <a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2687">#2687</a>](<a href="https://redirect.github.com/pgjdbc/pgjdbc/pull/2687">pgjdbc/pgjdbc#2687</a>) to make sure we don't wait forever on a GSS RESPONSE</p> <h3>Fixed</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pgjdbc/pgjdbc/commit/e73c6b6b53ff11bc0bd06c44130a880d3bf77c55"><code>e73c6b6</code></a> backpatch changes to 42.3.x for 42.5.1 (<a href="https://redirect.github.com/pgjdbc/pgjdbc/issues/2674">#2674</a>)</li> <li><a href="https://github.com/pgjdbc/pgjdbc/commit/3ea7e610f94bdf13e8b7c6499f9fbb8adf8e25cf"><code>3ea7e61</code></a> bumped version for next release</li> <li><a href="https://github.com/pgjdbc/pgjdbc/commit/0afaa71d5254804f8bab7caab96735c5f7d11aa1"><code>0afaa71</code></a> backpatch changes from GHSA-r38f-c4h4-hqq2 security advisory for CVE-2022-311...</li> <li>See full diff in <a href="https://github.com/pgjdbc/pgjdbc/compare/REL42.3.6...REL42.3.8">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/james-project/network/alerts). </details> -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
