You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@juddi.apache.org by GitBox <gi...@apache.org> on 2022/08/25 20:42:32 UTC

[GitHub] [juddi] dependabot[bot] opened a new pull request, #47: Bump postgresql from 42.3.3 to 42.5.0

dependabot[bot] opened a new pull request, #47:
URL: https://github.com/apache/juddi/pull/47

   Bumps [postgresql](https://github.com/pgjdbc/pgjdbc) from 42.3.3 to 42.5.0.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md">postgresql's changelog</a>.</em></p>
   <blockquote>
   <h2>[42.5.0] (2022-08-23 11:20:11 -0400)</h2>
   <h3>Changed</h3>
   <ul>
   <li>fix: revert change in [PR <a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/1986">#1986</a>](<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/1986">pgjdbc/pgjdbc#1986</a>) where float was aliased to float4 from float8.
   float now aliases to float8 [PR <a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2598">#2598</a>](<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2598">pgjdbc/pgjdbc#2598</a>) fixes [Issue <a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2597">#2597</a>](<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2597">pgjdbc/pgjdbc#2597</a>)</li>
   </ul>
   <h2>[42.4.2] (2022-08-17 10:33:40 -0400)</h2>
   <h3>Changed</h3>
   <ul>
   <li>fix: add alias to the generated getUDT() query for clarity (PR <a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2553">#2553</a>)[https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2553]</li>
   </ul>
   <h3>Added</h3>
   <ul>
   <li>fix: make setObject accept UUID array [PR <a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2587">#2587</a>](<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2587">pgjdbc/pgjdbc#2587</a>)</li>
   </ul>
   <h3>Fixed</h3>
   <ul>
   <li>fix: regression with GSS. Changes introduced to support building with Java 17 caused failures [Issue <a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2588">#2588</a>](<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2588">pgjdbc/pgjdbc#2588</a>)</li>
   <li>fix: set a timeout to get the return from requesting SSL upgrade. [PR <a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2572">#2572</a>](<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2572">pgjdbc/pgjdbc#2572</a>)</li>
   <li>feat: synchronize statement executions (e.g. avoid deadlock when Connection.isValid is executed from concurrent threads)</li>
   </ul>
   <h2>[42.4.1] (2022-08-01 16:24:20 -0400)</h2>
   <h3>Security</h3>
   <ul>
   <li>fix: CVE-2022-31197 Fixes SQL generated in PgResultSet.refresh() to escape column identifiers so as to prevent SQL injection.
   <ul>
   <li>Previously, the column names for both key and data columns in the table were copied as-is into the generated
   SQL. This allowed a malicious table with column names that include statement terminator to be parsed and
   executed as multiple separate commands.</li>
   <li>Also adds a new test class ResultSetRefreshTest to verify this change.</li>
   <li>Reported by <a href="https://github.com/kato-sho">Sho Kato</a></li>
   </ul>
   </li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>chore: skip publishing pgjdbc-osgi-test to Central</li>
   <li>chore: bump Gradle to 7.5</li>
   <li>test: update JUnit to 5.8.2</li>
   </ul>
   <h3>Added</h3>
   <ul>
   <li>chore: added Gradle Wrapper Validation for verifying gradle-wrapper.jar</li>
   <li>chore: added &quot;permissions: contents: read&quot; for GitHub Actions to avoid unintentional modifications by the CI</li>
   <li>chore: support building pgjdbc with Java 17</li>
   <li>feat: synchronize statement executions (e.g. avoid deadlock when Connection.isValid is executed from concurrent threads)</li>
   </ul>
   <h2>[42.4.0] (2022-06-09 08:14:02 -0400)</h2>
   <h3>Changed</h3>
   <ul>
   <li>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 <a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2425">#2425</a>](<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2497">pgjdbc/pgjdbc#2497</a>)
   pgbouncer cannot deal with transactions in statement pooling mode [PR <a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2425">#2425</a>](<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2425">pgjdbc/pgjdbc#2425</a>)</li>
   </ul>
   <h3>Fixed</h3>
   <ul>
   <li>fix: queries with up to 65535 (inclusive) parameters are supported now (previous limit was 32767)
   [PR <a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2525">#2525</a>](<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2525">pgjdbc/pgjdbc#2525</a>), [Issue <a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/1311">#1311</a>](<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/1311">pgjdbc/pgjdbc#1311</a>)</li>
   <li>fix: workaround JarIndex parsing issue by using groupId/artifactId-version directory namings.
   Regression since 42.2.13. [PR <a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2531">#2531</a>](<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/pull/2531">pgjdbc/pgjdbc#2531</a>), [issue <a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2527">#2527</a>](<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2527">pgjdbc/pgjdbc#2527</a>)</li>
   <li>fix: use Locale.ROOT for toUpperCase() toLowerCase() calls</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/pgjdbc/pgjdbc/commit/f490edf94bddc103c291b9429f8a63275d64e4ea"><code>f490edf</code></a> put entry in CHANGELOG and release notes for 42.5.0 (<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2601">#2601</a>)</li>
   <li><a href="https://github.com/pgjdbc/pgjdbc/commit/d62ba27a6da30e9be8a79d310952efe9453f325d"><code>d62ba27</code></a> fix: revert change in PR#2597 where float was aliased to float4 from float8. ...</li>
   <li><a href="https://github.com/pgjdbc/pgjdbc/commit/08b2db38a82dd458d1a25946f197cf1fcf399357"><code>08b2db3</code></a> bump version number for next release</li>
   <li><a href="https://github.com/pgjdbc/pgjdbc/commit/389be0a6e61c42bf65bb2974f5f1664bf7d8db8c"><code>389be0a</code></a> Update changelog for release (<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2596">#2596</a>)</li>
   <li><a href="https://github.com/pgjdbc/pgjdbc/commit/364662eb340116a80f9f01781a50d0e2138e2ef1"><code>364662e</code></a> fix erroneous method signature and null subjectCallAs (<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2595">#2595</a>)</li>
   <li><a href="https://github.com/pgjdbc/pgjdbc/commit/04dc96a5dbdb6954e8c5319f6b1209eef46f7917"><code>04dc96a</code></a> update last copyright year (<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2593">#2593</a>)</li>
   <li><a href="https://github.com/pgjdbc/pgjdbc/commit/f76ca463df5775bf671bbdee3656fb0dec26018a"><code>f76ca46</code></a> fix checkstyle</li>
   <li><a href="https://github.com/pgjdbc/pgjdbc/commit/a45b4d8bda433cc0f8f6016b62b5b414a19dcf58"><code>a45b4d8</code></a> get rid of javadoc warnings</li>
   <li><a href="https://github.com/pgjdbc/pgjdbc/commit/abf3bcb73c02bc714920ba64f5a6c433218f7151"><code>abf3bcb</code></a> fix mismatched types for invokeExact. Have to tell invokeExact what type we a...</li>
   <li><a href="https://github.com/pgjdbc/pgjdbc/commit/96f256107e12de71992b932782f9f00b19aabbb2"><code>96f2561</code></a> fix: make setObject accept UUID array (<a href="https://github-redirect.dependabot.com/pgjdbc/pgjdbc/issues/2587">#2587</a>)</li>
   <li>Additional commits viewable in <a href="https://github.com/pgjdbc/pgjdbc/compare/REL42.3.3...REL42.5.0">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.postgresql:postgresql&package-manager=maven&previous-version=42.3.3&new-version=42.5.0)](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 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)
   
   
   </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: dev-unsubscribe@juddi.apache.org

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


[GitHub] [juddi] spyhunter99 merged pull request #47: Bump postgresql from 42.3.3 to 42.5.0

Posted by GitBox <gi...@apache.org>.
spyhunter99 merged PR #47:
URL: https://github.com/apache/juddi/pull/47


-- 
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: dev-unsubscribe@juddi.apache.org

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