Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: support bytea in preferQueryMode=simple #3243

Merged
merged 1 commit into from
May 17, 2024
Merged

Conversation

vlsi
Copy link
Member

@vlsi vlsi commented May 11, 2024

This adds text encoding for bytea.

Interestingly, the tricks with private final char[] hexDigits do not improve performance, and we probably should stick with Character.forDigit(...) for int -> hex conversions.


Unfortunately, we have two different handling of "stream underflow" with StreamWrapper and ByteStreamWriter.

Both of them might report their lengths, and both of them might happen to underflow or overflow.

PGStream handles StreamWrapper as follows (see org.postgresql.core.PGStream#sendStream):

  • If there's not enough data in the stream => raise "Premature end of input stream"
  • If there's too much data => just ignore it

PGStream handles ByteStreamWriter as follows (see org.postgresql.core.PGStream#send(ByteStreamWriter)):

  • If there's not enough data in the stream => append zeros
  • If there's too much data => throw an error

Note: ByteStreamWriter works in a push manner, so we can't easily stop it, so "throwing an error" on overflow might be ok.

However, it is unfortunate we have different behaviours regarding "pad with zeros" vs "throw on underflow". I think we should raise an error on underflow in both cases.

@vlsi vlsi force-pushed the bytea_simple branch 3 times, most recently from ba3456c to ce74cce Compare May 12, 2024 11:46
@vlsi vlsi marked this pull request as ready for review May 12, 2024 11:47
@vlsi
Copy link
Member Author

vlsi commented May 12, 2024

I think this is ready, and I'm going to merge it after some time

@vlsi vlsi merged commit 450488c into pgjdbc:master May 17, 2024
7 of 8 checks passed
@bokken
Copy link
Member

bokken commented May 18, 2024

Did you compare going directly to a byte[] with the ascii bytes rather than using a StringBuilder?

@vlsi
Copy link
Member Author

vlsi commented May 18, 2024

The existing code was building SQL with StringBuilder, so I benchmarked SB only

yaooqinn pushed a commit to apache/spark that referenced this pull request Aug 26, 2024
…42.7.4 and `mssql` to 12.8.1.jre11

### What changes were proposed in this pull request?

This PR aims to upgrade `h2` to 2.3.232, `postgresql` to 42.7.4 and `mssql` to 12.8.1.jre11.

### Why are the changes needed?

1. For `h2`, there are some issues fixed in version 2.3.232(full release notes: https://www.h2database.com/html/changelog.html):

    - [Issue #3945](h2database/h2database#3945): Column not found in correlated subquery, when referencing outer column from LEFT JOIN .. ON clause
    - [Issue #4097](h2database/h2database#4097): StackOverflowException when using multiple SELECT statements in one query (2.3.230)
    - [Issue #3982](h2database/h2database#3982): Potential issue when using ROUND
    - [Issue #3894](h2database/h2database#3894): Race condition causing stale data in query last result cache
    - [Issue #4075](h2database/h2database#4075): infinite loop in compact
    - [Issue #4091](h2database/h2database#4091): Wrong case with linked table to postgresql
    - [Issue #4088](h2database/h2database#4088): BadGrammarException when the same alias is used within two different CTEs

2. For `postgresql`, there are some issues fixed and improvements in version 42.7.4(full release notes: https://jdbc.postgresql.org/changelogs/2024-08-22-42.7.4-release/):

    - fix: PgInterval ignores case for represented interval string [PR #3344](pgjdbc/pgjdbc#3344)
    - perf: Avoid extra copies when receiving int4 and int2 in PGStream [PR #3295](pgjdbc/pgjdbc#3295)
    - fix: Add support for Infinity::numeric values in ResultSet.getObject [PR #3304](pgjdbc/pgjdbc#3304)
    - fix: Ensure order of results for getDouble [PR #3301](pgjdbc/pgjdbc#3301)
    - perf: Replace BufferedOutputStream with unsynchronized PgBufferedOutputStream, allow configuring different Java and SO_SNDBUF buffer sizes [PR #3248](pgjdbc/pgjdbc#3248)
    - fix: Fix SSL tests [PR #3260](pgjdbc/pgjdbc#3260)
    - fix: Support bytea in preferQueryMode=simple [PR #3243](pgjdbc/pgjdbc#3243)
    - fix: Fix [Issue #3234](pgjdbc/pgjdbc#3234) - Return -1 as update count for stored procedure calls [PR #3235](pgjdbc/pgjdbc#3235)
    - fix: Fix [Issue #3224](pgjdbc/pgjdbc#3224) - conversion for TIME ‘24:00’ to LocalTime breaks in binary-mode [PR #3225](pgjdbc/pgjdbc#3225)

3. For `mssql`,  there are some issues fixed in 12.8.1.jre11(full release notes: https://github.com/microsoft/mssql-jdbc/releases/tag/v12.8.1):

    - Adjusted DESTINATION_COL_METADATA_LOCK, in SQLServerBulkCopy, so that is properly released in all cases [PR #2492](microsoft/mssql-jdbc#2492)
    - Reverted "Execute Stored Procedures Directly" feature, as well as subsequent changes related to the feature [PR #2493](microsoft/mssql-jdbc#2493)
    - Changed driver behavior to allow prepared statement objects to be reused, preventing a "multiple queries are not allowed" error [PR #2494](microsoft/mssql-jdbc#2494)

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Pass GA.

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes #47810 from wayneguow/ug_h2.

Authored-by: Wei Guo <guow93@gmail.com>
Signed-off-by: Kent Yao <yao@apache.org>
IvanK-db pushed a commit to IvanK-db/spark that referenced this pull request Sep 20, 2024
…42.7.4 and `mssql` to 12.8.1.jre11

### What changes were proposed in this pull request?

This PR aims to upgrade `h2` to 2.3.232, `postgresql` to 42.7.4 and `mssql` to 12.8.1.jre11.

### Why are the changes needed?

1. For `h2`, there are some issues fixed in version 2.3.232(full release notes: https://www.h2database.com/html/changelog.html):

    - [Issue apache#3945](h2database/h2database#3945): Column not found in correlated subquery, when referencing outer column from LEFT JOIN .. ON clause
    - [Issue apache#4097](h2database/h2database#4097): StackOverflowException when using multiple SELECT statements in one query (2.3.230)
    - [Issue apache#3982](h2database/h2database#3982): Potential issue when using ROUND
    - [Issue apache#3894](h2database/h2database#3894): Race condition causing stale data in query last result cache
    - [Issue apache#4075](h2database/h2database#4075): infinite loop in compact
    - [Issue apache#4091](h2database/h2database#4091): Wrong case with linked table to postgresql
    - [Issue apache#4088](h2database/h2database#4088): BadGrammarException when the same alias is used within two different CTEs

2. For `postgresql`, there are some issues fixed and improvements in version 42.7.4(full release notes: https://jdbc.postgresql.org/changelogs/2024-08-22-42.7.4-release/):

    - fix: PgInterval ignores case for represented interval string [PR apache#3344](pgjdbc/pgjdbc#3344)
    - perf: Avoid extra copies when receiving int4 and int2 in PGStream [PR apache#3295](pgjdbc/pgjdbc#3295)
    - fix: Add support for Infinity::numeric values in ResultSet.getObject [PR apache#3304](pgjdbc/pgjdbc#3304)
    - fix: Ensure order of results for getDouble [PR apache#3301](pgjdbc/pgjdbc#3301)
    - perf: Replace BufferedOutputStream with unsynchronized PgBufferedOutputStream, allow configuring different Java and SO_SNDBUF buffer sizes [PR apache#3248](pgjdbc/pgjdbc#3248)
    - fix: Fix SSL tests [PR apache#3260](pgjdbc/pgjdbc#3260)
    - fix: Support bytea in preferQueryMode=simple [PR apache#3243](pgjdbc/pgjdbc#3243)
    - fix: Fix [Issue apache#3234](pgjdbc/pgjdbc#3234) - Return -1 as update count for stored procedure calls [PR apache#3235](pgjdbc/pgjdbc#3235)
    - fix: Fix [Issue apache#3224](pgjdbc/pgjdbc#3224) - conversion for TIME ‘24:00’ to LocalTime breaks in binary-mode [PR apache#3225](pgjdbc/pgjdbc#3225)

3. For `mssql`,  there are some issues fixed in 12.8.1.jre11(full release notes: https://github.com/microsoft/mssql-jdbc/releases/tag/v12.8.1):

    - Adjusted DESTINATION_COL_METADATA_LOCK, in SQLServerBulkCopy, so that is properly released in all cases [PR apache#2492](microsoft/mssql-jdbc#2492)
    - Reverted "Execute Stored Procedures Directly" feature, as well as subsequent changes related to the feature [PR apache#2493](microsoft/mssql-jdbc#2493)
    - Changed driver behavior to allow prepared statement objects to be reused, preventing a "multiple queries are not allowed" error [PR apache#2494](microsoft/mssql-jdbc#2494)

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Pass GA.

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes apache#47810 from wayneguow/ug_h2.

Authored-by: Wei Guo <guow93@gmail.com>
Signed-off-by: Kent Yao <yao@apache.org>
benkard pushed a commit to benkard/mulkcms2 that referenced this pull request Sep 28, 2024
This MR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [flow-bin](https://github.com/flowtype/flow-bin) ([changelog](https://github.com/facebook/flow/blob/master/Changelog.md)) | devDependencies | minor | [`^0.233.0` -> `^0.247.0`](https://renovatebot.com/diffs/npm/flow-bin/0.233.0/0.247.1) |
| [org.postgresql:postgresql](https://jdbc.postgresql.org) ([source](https://github.com/pgjdbc/pgjdbc)) | build | patch | `42.7.3` -> `42.7.4` |
| [org.liquibase:liquibase-maven-plugin](http://www.liquibase.org/liquibase-maven-plugin) ([source](https://github.com/liquibase/liquibase)) | build | minor | `4.27.0` -> `4.29.2` |
| [org.jsoup:jsoup](https://jsoup.org/) ([source](https://github.com/jhy/jsoup)) | compile | minor | `1.17.2` -> `1.18.1` |
| [net.java.dev.jna:jna](https://github.com/java-native-access/jna) | compile | minor | `5.14.0` -> `5.15.0` |
| [io.hypersistence:hypersistence-utils-hibernate-62](https://github.com/vladmihalcea/hypersistence-utils) | compile | minor | `3.7.3` -> `3.8.2` |
| [org.hibernate.orm:hibernate-envers](https://hibernate.org/orm) ([source](https://github.com/hibernate/hibernate-orm)) | build | minor | `6.4.4.Final` -> `6.6.1.Final` |
| [org.hibernate.orm:hibernate-core](https://hibernate.org/orm) ([source](https://github.com/hibernate/hibernate-orm)) | build | minor | `6.4.4.Final` -> `6.6.1.Final` |
| [com.blazebit:blaze-persistence-bom](https://persistence.blazebit.com) ([source](https://github.com/Blazebit/blaze-persistence)) | import | patch | `1.6.11` -> `1.6.12` |
| [io.quarkus:quarkus-maven-plugin](https://github.com/quarkusio/quarkus) | build | minor | `3.9.2` -> `3.15.1` |
| [io.quarkus:quarkus-universe-bom](https://github.com/quarkusio/quarkus-platform) | import | minor | `3.9.2` -> `3.15.1` |
| [org.apache.maven.plugins:maven-enforcer-plugin](https://maven.apache.org/enforcer/) | build | minor | `3.4.1` -> `3.5.0` |

---

### Release Notes

<details>
<summary>flowtype/flow-bin</summary>

### [`v0.247.1`](https://github.com/flowtype/flow-bin/compare/10b085506316e3df04e6524249812434671efaa6...70454fda20bc6aedf0824bdc85b97b47f2e5f8a2)

[Compare Source](https://github.com/flowtype/flow-bin/compare/10b085506316e3df04e6524249812434671efaa6...70454fda20bc6aedf0824bdc85b97b47f2e5f8a2)

### [`v0.247.0`](https://github.com/flowtype/flow-bin/compare/20ab003f3a24c2799c5971f663393d5af82794d3...10b085506316e3df04e6524249812434671efaa6)

[Compare Source](https://github.com/flowtype/flow-bin/compare/20ab003f3a24c2799c5971f663393d5af82794d3...10b085506316e3df04e6524249812434671efaa6)

### [`v0.246.0`](https://github.com/flowtype/flow-bin/compare/85a0d04d7c141e1667afaa057401994ced0e765f...20ab003f3a24c2799c5971f663393d5af82794d3)

[Compare Source](https://github.com/flowtype/flow-bin/compare/85a0d04d7c141e1667afaa057401994ced0e765f...20ab003f3a24c2799c5971f663393d5af82794d3)

### [`v0.245.2`](https://github.com/flowtype/flow-bin/compare/9063cfaf3ed5da8031a928adef10ae5f35fd9078...85a0d04d7c141e1667afaa057401994ced0e765f)

[Compare Source](https://github.com/flowtype/flow-bin/compare/9063cfaf3ed5da8031a928adef10ae5f35fd9078...85a0d04d7c141e1667afaa057401994ced0e765f)

### [`v0.245.1`](https://github.com/flowtype/flow-bin/compare/a1d3980687d16ccd587bd34664057f7f215eb99c...9063cfaf3ed5da8031a928adef10ae5f35fd9078)

[Compare Source](https://github.com/flowtype/flow-bin/compare/a1d3980687d16ccd587bd34664057f7f215eb99c...9063cfaf3ed5da8031a928adef10ae5f35fd9078)

### [`v0.245.0`](https://github.com/flowtype/flow-bin/compare/89816515a2450b76be86b9dcbb1b875c04777272...a1d3980687d16ccd587bd34664057f7f215eb99c)

[Compare Source](https://github.com/flowtype/flow-bin/compare/89816515a2450b76be86b9dcbb1b875c04777272...a1d3980687d16ccd587bd34664057f7f215eb99c)

### [`v0.244.0`](https://github.com/flowtype/flow-bin/compare/0db80b23abf49b4685591cb8ea2bda7633d638e1...89816515a2450b76be86b9dcbb1b875c04777272)

[Compare Source](https://github.com/flowtype/flow-bin/compare/0db80b23abf49b4685591cb8ea2bda7633d638e1...89816515a2450b76be86b9dcbb1b875c04777272)

### [`v0.243.0`](https://github.com/flowtype/flow-bin/compare/d83988cef7089dad1c3749bd8f2acef1f69393b0...0db80b23abf49b4685591cb8ea2bda7633d638e1)

[Compare Source](https://github.com/flowtype/flow-bin/compare/d83988cef7089dad1c3749bd8f2acef1f69393b0...0db80b23abf49b4685591cb8ea2bda7633d638e1)

### [`v0.242.1`](https://github.com/flowtype/flow-bin/compare/370552e762b2ef8fbfe7a9f0f5796218a5816b9c...d83988cef7089dad1c3749bd8f2acef1f69393b0)

[Compare Source](https://github.com/flowtype/flow-bin/compare/370552e762b2ef8fbfe7a9f0f5796218a5816b9c...d83988cef7089dad1c3749bd8f2acef1f69393b0)

### [`v0.242.0`](https://github.com/flowtype/flow-bin/compare/925098ae8b6bc4a15cdc69adfd48380e92de50fd...370552e762b2ef8fbfe7a9f0f5796218a5816b9c)

[Compare Source](https://github.com/flowtype/flow-bin/compare/925098ae8b6bc4a15cdc69adfd48380e92de50fd...370552e762b2ef8fbfe7a9f0f5796218a5816b9c)

### [`v0.241.0`](https://github.com/flowtype/flow-bin/compare/5a823f36c8e38b0c0b050da02e3a30db752076df...925098ae8b6bc4a15cdc69adfd48380e92de50fd)

[Compare Source](https://github.com/flowtype/flow-bin/compare/5a823f36c8e38b0c0b050da02e3a30db752076df...925098ae8b6bc4a15cdc69adfd48380e92de50fd)

### [`v0.240.0`](https://github.com/flowtype/flow-bin/compare/0327290783f593218ed77036d23989a8613d9e6c...5a823f36c8e38b0c0b050da02e3a30db752076df)

[Compare Source](https://github.com/flowtype/flow-bin/compare/0327290783f593218ed77036d23989a8613d9e6c...5a823f36c8e38b0c0b050da02e3a30db752076df)

### [`v0.239.1`](https://github.com/flowtype/flow-bin/compare/43818100eee78b634a406c1f8596303a90903863...0327290783f593218ed77036d23989a8613d9e6c)

[Compare Source](https://github.com/flowtype/flow-bin/compare/43818100eee78b634a406c1f8596303a90903863...0327290783f593218ed77036d23989a8613d9e6c)

### [`v0.239.0`](https://github.com/flowtype/flow-bin/compare/1fd806b4f0b469859df26fb86c741c37c532cd82...43818100eee78b634a406c1f8596303a90903863)

[Compare Source](https://github.com/flowtype/flow-bin/compare/1fd806b4f0b469859df26fb86c741c37c532cd82...43818100eee78b634a406c1f8596303a90903863)

### [`v0.238.3`](https://github.com/flowtype/flow-bin/compare/e07895360fef9ac997c059a9872ad4522024b979...1fd806b4f0b469859df26fb86c741c37c532cd82)

[Compare Source](https://github.com/flowtype/flow-bin/compare/e07895360fef9ac997c059a9872ad4522024b979...1fd806b4f0b469859df26fb86c741c37c532cd82)

### [`v0.238.2`](https://github.com/flowtype/flow-bin/compare/9e702bc625706909abec18a2e213e58979198300...e07895360fef9ac997c059a9872ad4522024b979)

[Compare Source](https://github.com/flowtype/flow-bin/compare/9e702bc625706909abec18a2e213e58979198300...e07895360fef9ac997c059a9872ad4522024b979)

### [`v0.238.1`](https://github.com/flowtype/flow-bin/compare/4777db2e9c0a1e93b59b7e71dab9254a1d5ae476...9e702bc625706909abec18a2e213e58979198300)

[Compare Source](https://github.com/flowtype/flow-bin/compare/4777db2e9c0a1e93b59b7e71dab9254a1d5ae476...9e702bc625706909abec18a2e213e58979198300)

### [`v0.238.0`](https://github.com/flowtype/flow-bin/compare/d10459018eecc0569ac4eca99d61f6f119ec4e88...4777db2e9c0a1e93b59b7e71dab9254a1d5ae476)

[Compare Source](https://github.com/flowtype/flow-bin/compare/d10459018eecc0569ac4eca99d61f6f119ec4e88...4777db2e9c0a1e93b59b7e71dab9254a1d5ae476)

### [`v0.237.2`](https://github.com/flowtype/flow-bin/compare/c90ffb77c988e84f8f2f8f35cec4478fa29474da...d10459018eecc0569ac4eca99d61f6f119ec4e88)

[Compare Source](https://github.com/flowtype/flow-bin/compare/c90ffb77c988e84f8f2f8f35cec4478fa29474da...d10459018eecc0569ac4eca99d61f6f119ec4e88)

### [`v0.237.1`](https://github.com/flowtype/flow-bin/compare/a7d70600c007668013567c20ba8997c1f08fd401...c90ffb77c988e84f8f2f8f35cec4478fa29474da)

[Compare Source](https://github.com/flowtype/flow-bin/compare/a7d70600c007668013567c20ba8997c1f08fd401...c90ffb77c988e84f8f2f8f35cec4478fa29474da)

### [`v0.237.0`](https://github.com/flowtype/flow-bin/compare/367281e370b4283b9b6fef94472392c435b6531b...a7d70600c007668013567c20ba8997c1f08fd401)

[Compare Source](https://github.com/flowtype/flow-bin/compare/367281e370b4283b9b6fef94472392c435b6531b...a7d70600c007668013567c20ba8997c1f08fd401)

### [`v0.236.0`](https://github.com/flowtype/flow-bin/compare/359a953247f67c56ecea7cc413cfcd9bbcf34397...367281e370b4283b9b6fef94472392c435b6531b)

[Compare Source](https://github.com/flowtype/flow-bin/compare/359a953247f67c56ecea7cc413cfcd9bbcf34397...367281e370b4283b9b6fef94472392c435b6531b)

### [`v0.235.1`](https://github.com/flowtype/flow-bin/compare/143bb64cafd66efacbe8df5c669aee86b77ce9b6...359a953247f67c56ecea7cc413cfcd9bbcf34397)

[Compare Source](https://github.com/flowtype/flow-bin/compare/143bb64cafd66efacbe8df5c669aee86b77ce9b6...359a953247f67c56ecea7cc413cfcd9bbcf34397)

### [`v0.234.0`](https://github.com/flowtype/flow-bin/compare/2ebcdf3a8f03993e8ccab9e9fb6742000b54f929...143bb64cafd66efacbe8df5c669aee86b77ce9b6)

[Compare Source](https://github.com/flowtype/flow-bin/compare/2ebcdf3a8f03993e8ccab9e9fb6742000b54f929...143bb64cafd66efacbe8df5c669aee86b77ce9b6)

</details>

<details>
<summary>pgjdbc/pgjdbc</summary>

### [`v42.7.4`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#&#8203;4274-2024-08-22-080000--0400)

##### Added

-   chore: SCRAM dependency to 3.1 and support channel binding [MR #&#8203;3188](https://github.com/pgjdbc/pgjdbc/pull/3188)
-   chore: Add PostgreSQL 15, 16, and 17beta1 to CI tests [MR #&#8203;3299](https://github.com/pgjdbc/pgjdbc/pull/3299)
-   test: Update to 17beta3 [MR #&#8203;3308](https://github.com/pgjdbc/pgjdbc/pull/3308)
-   chore: Implement direct SSL ALPN connections [MR #&#8203;3252](https://github.com/pgjdbc/pgjdbc/pull/3252)
-   translation: Add Korean translation file [MR #&#8203;3276](https://github.com/pgjdbc/pgjdbc/pull/3276)

##### Fixed

-   fix: PgInterval ignores case for represented interval string [MR #&#8203;3344](https://github.com/pgjdbc/pgjdbc/pull/3344)
-   perf: Avoid extra copies when receiving int4 and int2 in PGStream [MR #&#8203;3295](https://github.com/pgjdbc/pgjdbc/pull/3295)
-   fix: Add support for Infinity::numeric values in ResultSet.getObject [MR #&#8203;3304](https://github.com/pgjdbc/pgjdbc/pull/3304)
-   fix: Ensure order of results for getDouble [MR #&#8203;3301](https://github.com/pgjdbc/pgjdbc/pull/3301)
-   perf: Replace BufferedOutputStream with unsynchronized PgBufferedOutputStream, allow configuring different Java and SO_SNDBUF buffer sizes [MR #&#8203;3248](https://github.com/pgjdbc/pgjdbc/pull/3248)
-   fix: Fix SSL tests [MR #&#8203;3260](https://github.com/pgjdbc/pgjdbc/pull/3260)
-   fix: Support bytea in preferQueryMode=simple [MR #&#8203;3243](https://github.com/pgjdbc/pgjdbc/pull/3243)
-   fix:  Fix [#&#8203;3234](https://github.com/pgjdbc/pgjdbc/issues/3234) - Return -1 as update count for stored procedure calls [MR #&#8203;3235](https://github.com/pgjdbc/pgjdbc/pull/3235)
-   fix:  Fix [#&#8203;3224](https://github.com/pgjdbc/pgjdbc/issues/3224) - conversion for TIME '24:00' to LocalTime breaks in binary-mode [MR #&#8203;3225](https://github.com/pgjdbc/pgjdbc/pull/3225)
-   perf:  Speed up getDate by parsing bytes instead of String [MR #&#8203;3141](https://github.com/pgjdbc/pgjdbc/pull/3141)
-   fix: support PreparedStatement.setBlob(1, Blob) and PreparedStatement.setClob(1, Clob) for lobs that return -1 for length [MR #&#8203;3136](https://github.com/pgjdbc/pgjdbc/pull/3136)
-   fix: Validates resultset Params in PGStatement constructor. uses assertThro… [MR #&#8203;3171](https://github.com/pgjdbc/pgjdbc/pull/3171)
-   fix: Validates resultset parameters [MR #&#8203;3167](https://github.com/pgjdbc/pgjdbc/pull/3167)
-   docs: Replace greater to with greater than [MR #&#8203;3315](https://github.com/pgjdbc/pgjdbc/pull/3315)
-   docs: Clarify binaryTransfer and prepareThreshold [MR #&#8203;3338](https://github.com/pgjdbc/pgjdbc/pull/3338)
-   docs: use.md, typo [MR #&#8203;3314](https://github.com/pgjdbc/pgjdbc/pull/3314)
-   test: Use docker v2 which changes docker-compose to docker compose  [#&#8203;3339](https://github.com/pgjdbc/pgjdbc/pull/3339)
-   refactor: Merge PgPreparedStatement#setBinaryStream int and long methods [MR #&#8203;3165](https://github.com/pgjdbc/pgjdbc/pull/3165)
-   test: Test both binaryMode=true,false when creating connections in DatabaseMetaDataTest [MR #&#8203;3231](https://github.com/pgjdbc/pgjdbc/pull/3231)
-   docs: Fixed typos in all source code and documentations [MR #&#8203;3242](https://github.com/pgjdbc/pgjdbc/pull/3242)
-   chore: Remove self-hosted runner [MR #&#8203;3227](https://github.com/pgjdbc/pgjdbc/pull/3227)
-   docs: Add cancelSignalTimeout in README [MR #&#8203;3190](https://github.com/pgjdbc/pgjdbc/pull/3190)
-   docs: Document READ_ONLY_MODE in README [MR #&#8203;3175](https://github.com/pgjdbc/pgjdbc/pull/3175)
-   test: Test for +/- infinity double values [MR #&#8203;3294](https://github.com/pgjdbc/pgjdbc/pull/3294)
-   test: Switch localhost and auth-test around for test-gss [MR #&#8203;3343](https://github.com/pgjdbc/pgjdbc/pull/3343)
-   fix: remove preDescribe from internalExecuteBatch [MR #&#8203;2883](https://github.com/pgjdbc/pgjdbc/pull/2883)

##### Deprecated

-   test: Deprecate all PostgreSQL versions older than 9.1 [MR #&#8203;3335](https://github.com/pgjdbc/pgjdbc/pull/3335)

</details>

<details>
<summary>liquibase/liquibase</summary>

### [`v4.29.2`](https://github.com/liquibase/liquibase/blob/HEAD/changelog.txt#Liquibase-4292-is-a-patch-release)

[Compare Source](https://github.com/liquibase/liquibase/compare/v4.29.1...v4.29.2)

> Liquibase 4.29.2 patches minor issues found in Liquibase 4.29.1 release.

### [`v4.29.1`](https://github.com/liquibase/liquibase/blob/HEAD/changelog.txt#Liquibase-4291-is-a-patch-release)

[Compare Source](https://github.com/liquibase/liquibase/compare/v4.29.0...v4.29.1)

-   Liquibase 4.29.1 patches a pom mismatch in the Liquibase BigQuery Commercial Extension.

-   Liquibase 4.29.1 resolves an issue with the zip distribution where all files were incorrectly placed inside liquibase-4.29.1 directory. This update ensures proper file organization and installation.

### [`v4.29.0`](https://github.com/liquibase/liquibase/blob/HEAD/changelog.txt#Liquibase-4290-is-a-major-release)

[Compare Source](https://github.com/liquibase/liquibase/compare/v4.28.0...v4.29.0)

> \[!IMPORTANT]
> Liquibase 4.29.0 contains several New Capabilities and Notable Enhancements for Liquibase Pro users: Python-based Custom Policy Checks and a new Big Query extension.
> \[!NOTE]
> See the [Liquibase 4.29.0 Release Notes](https://docs.liquibase.com/start/release-notes/liquibase-release-notes/liquibase-4.29.0.html) for the complete set of release information.

### [`v4.28.0`](https://github.com/liquibase/liquibase/blob/HEAD/changelog.txt#Liquibase-4280-is-a-major-release)

[Compare Source](https://github.com/liquibase/liquibase/compare/v4.27.0...v4.28.0)

</details>

<details>
<summary>jhy/jsoup</summary>

### [`v1.18.1`](https://github.com/jhy/jsoup/blob/HEAD/CHANGES.md#&#8203;1181-2024-Jul-10)

##### Improvements

-   **Stream Parser**: A `StreamParser` provides a progressive parse of its input. As each `Element` is completed, it is
    emitted via a `Stream` or `Iterator` interface. Elements returned will be complete with all their children, and an
    (empty) next sibling, if applicable. Elements (or their children) may be removed from the DOM during the parse,
    for e.g. to conserve memory, providing a mechanism to parse an input document that would otherwise be too large to fit
    into memory, yet still providing a DOM interface to the document and its elements. Additionally, the parser provides
    a `selectFirst(String query)` / `selectNext(String query)`, which will run the parser until a hit is found, at which
    point the parse is suspended. It can be resumed via another `select()` call, or via the `stream()` or `iterator()`
    methods. [2096](https://github.com/jhy/jsoup/pull/2096)
-   **Download Progress**: added a Response Progress event interface, which reports progress and URLs are downloaded (and
    parsed). Supported on both a session and a single connection
    level. [2164](https://github.com/jhy/jsoup/pull/2164), [656](https://github.com/jhy/jsoup/issues/656)
-   Added `Path` accepting parse methods: `Jsoup.parse(Path)`, `Jsoup.parse(path, charsetName, baseUri, parser)`,
    etc. [2055](https://github.com/jhy/jsoup/pull/2055)
-   Updated the `button` tag configuration to include a space between multiple button elements in the `Element.text()`
    method. [2105](https://github.com/jhy/jsoup/issues/2105)
-   Added support for the `ns|*` all elements in namespace Selector. [1811](https://github.com/jhy/jsoup/issues/1811)
-   When normalising attribute names during serialization, invalid characters are now replaced with `_`, vs being
    stripped. This should make the process clearer, and generally prevent an invalid attribute name being coerced
    unexpectedly. [2143](https://github.com/jhy/jsoup/issues/2143)

##### Changes

-   Removed previously deprecated internal classes and methods. [2094](https://github.com/jhy/jsoup/pull/2094)
-   Build change: the built jar's OSGi manifest no longer imports itself. [2158](https://github.com/jhy/jsoup/issues/2158)

##### Bug Fixes

-   When tracking source positions, if the first node was a TextNode, its position was incorrectly set
    to `-1.` [2106](https://github.com/jhy/jsoup/issues/2106)
-   When connecting (or redirecting) to URLs with characters such as `{`, `}` in the path, a Malformed URL exception would
    be thrown (if in development), or the URL might otherwise not be escaped correctly (if in
    production). The URL encoding process has been improved to handle these characters
    correctly. [2142](https://github.com/jhy/jsoup/issues/2142)
-   When using `W3CDom` with a custom output Document, a Null Pointer Exception would be
    thrown. [2114](https://github.com/jhy/jsoup/pull/2114)
-   The `:has()` selector did not match correctly when using sibling combinators (like
    e.g.: `h1:has(+h2)`). [2137](https://github.com/jhy/jsoup/issues/2137)
-   The `:empty` selector incorrectly matched elements that started with a blank text node and were followed by
    non-empty nodes, due to an incorrect short-circuit. [2130](https://github.com/jhy/jsoup/issues/2130)
-   `Element.cssSelector()` would fail with "Did not find balanced marker" when building a selector for elements that had
    a `(` or `[` in their class names. And selectors with those characters escaped would not match as
    expected. [2146](https://github.com/jhy/jsoup/issues/2146)
-   Updated `Entities.escape(string)` to make the escaped text suitable for both text nodes and attributes (previously was
    only for text nodes). This does not impact the output of `Element.html()` which correctly applies a minimal escape
    depending on if the use will be for text data or in a quoted
    attribute. [1278](https://github.com/jhy/jsoup/issues/1278)
-   Fuzz: a Stack Overflow exception could occur when resolving a crafted `<base href>` URL, in the normalizing regex.
    [2165](https://github.com/jhy/jsoup/issues/2165)

***

</details>

<details>
<summary>java-native-access/jna</summary>

### [`v5.15.0`](https://github.com/java-native-access/jna/blob/HEAD/CHANGES.md#Release-5150)

[Compare Source](https://github.com/java-native-access/jna/compare/5.14.0...5.15.0)

\==============

## Features

-   [#&#8203;1578](https://github.com/java-native-access/jna/pull/1578): Add support for FreeBSD aarch64 - [@&#8203;alexdupre](https://github.com/alexdupre).
-   [#&#8203;1593](https://github.com/java-native-access/jna/pull/1593): Add support for DragonFly BSD x86-64 - [@&#8203;liweitianux](https://github.com/liweitianux).
-   [#&#8203;1595](https://github.com/java-native-access/jna/pull/1595): Add `IsProcessorFeaturePresent` to `c.s.j.p.win32.Kernel32` - [@&#8203;dbwiddis](https://github.com/dbwiddis).
-   [#&#8203;1602](https://github.com/java-native-access/jna/pull/1602): Add `XMoveWindow`, `XResizeWindow`, `XMoveResizeWindow`, `XRaiseWindow`, `XLowerWindow` X11 calls to `c.s.j.p.unix.X11` - [@&#8203;vinceh121](https://github.com/vinceh121).
-   [#&#8203;1613](https://github.com/java-native-access/jna/issues/1613): Added static helper method \`Native#getNativeLibrary' for getting the underlying NativeLibrary instance from a Library interface instance or from a "registered" class - [@&#8203;matthiasblaesing](https://github.com/matthiasblaesing).
-   [#&#8203;1624](https://github.com/java-native-access/jna/pull/1624): Enable linker build-id for android builds - [@&#8203;mstyura](https://github.com/mstyura).

## Bug Fixes

-   [#&#8203;1579](https://github.com/java-native-access/jna/issues/1579): Fix analysis of ELF binary on arm systems running with a java ELF binary without section table headers (java8 on armv7 NAS) - [@&#8203;matthiasblaesing](https://github.com/matthiasblaesing).
-   [#&#8203;1586](https://github.com/java-native-access/jna/issues/1586): Fix free_callback JNI weak reference leak - [@&#8203;xiezhaokun](https://github.com/xiezhaokun).
-   [6486c90d913a413f247eef84742ce3c474738933](https://github.com/java-native-access/jna/commit/6486c90d913a413f247eef84742ce3c474738933): Check CallbackReference#cbstruct for null when checking existing Reference - [@&#8203;matthiasblaesing](https://github.com/matthiasblaesing).
-   [#&#8203;1622](https://github.com/java-native-access/jna/issues/1622): Add "linux-riscv64" entry to OSGI Bundle-NativeCode header in MANIFEST.MF  - [@&#8203;matthiasblaesing](https://github.com/matthiasblaesing).

</details>

<details>
<summary>vladmihalcea/hypersistence-utils</summary>

### [`v3.8.2`](https://github.com/vladmihalcea/hypersistence-utils/blob/HEAD/changelog.txt#Version-382---July-25-2024)

\================================================================================

Add JsonClobType and improve JsonType to support CLOB column types [#&#8203;734](https://github.com/vladmihalcea/hypersistence-utils/issues/734)

### [`v3.8.1`](https://github.com/vladmihalcea/hypersistence-utils/blob/HEAD/changelog.txt#Version-381---July-03-2024)

\================================================================================

Enhance BatchSequenceGenerator with support for IdGeneratorType [#&#8203;728](https://github.com/vladmihalcea/hypersistence-utils/issues/728)

### [`v3.8.0`](https://github.com/vladmihalcea/hypersistence-utils/blob/HEAD/changelog.txt#Version-380---June-27-2024)

\================================================================================

Add support for mapping Java Enums to custom ordinal values [#&#8203;730](https://github.com/vladmihalcea/hypersistence-utils/issues/730)

### [`v3.7.7`](https://github.com/vladmihalcea/hypersistence-utils/blob/HEAD/changelog.txt#Version-377---June-21-2024)

\================================================================================

Remove hypersistence-utils-hibernate-52 module [#&#8203;726](https://github.com/vladmihalcea/hypersistence-utils/issues/726)

MonetaryAmountType should use currency instead of property for the second attribute [#&#8203;707](https://github.com/vladmihalcea/hypersistence-utils/issues/707)

### [`v3.7.6`](https://github.com/vladmihalcea/hypersistence-utils/blob/HEAD/changelog.txt#Version-376---June-04-2024)

\================================================================================

Use Spring Data Range as an alternative to PostgreSQL range type [#&#8203;721](https://github.com/vladmihalcea/hypersistence-utils/issues/721)

ListArrayType on Set entity attribute fails for EntityManager.merge operation [#&#8203;717](https://github.com/vladmihalcea/hypersistence-utils/issues/717)

### [`v3.7.5`](https://github.com/vladmihalcea/hypersistence-utils/blob/HEAD/changelog.txt#Version-375---April-29-2024)

\================================================================================

NullableCharacterType prevents Hibernate from escaping backslash properly [#&#8203;715](https://github.com/vladmihalcea/hypersistence-utils/issues/715)

### [`v3.7.4`](https://github.com/vladmihalcea/hypersistence-utils/blob/HEAD/changelog.txt#Version-374---April-18-2024)

\================================================================================

Make the JsonTypeDescriptor thread-safe [#&#8203;713](https://github.com/vladmihalcea/hypersistence-utils/issues/713)

Equals method not found on abstract class [#&#8203;709](https://github.com/vladmihalcea/hypersistence-utils/issues/709)

</details>

<details>
<summary>hibernate/hibernate-orm</summary>

### [`v6.6.1.Final`](https://github.com/hibernate/hibernate-orm/compare/6.6.0...6.6.1)

[Compare Source](https://github.com/hibernate/hibernate-orm/compare/6.6.0...6.6.1)

### [`v6.6.0.Final`](https://github.com/hibernate/hibernate-orm/compare/6.5.3...6.6.0)

[Compare Source](https://github.com/hibernate/hibernate-orm/compare/6.5.3...6.6.0)

### [`v6.5.3.Final`](https://github.com/hibernate/hibernate-orm/compare/6.5.2...6.5.3)

[Compare Source](https://github.com/hibernate/hibernate-orm/compare/6.5.2...6.5.3)

### [`v6.5.2.Final`](https://github.com/hibernate/hibernate-orm/compare/6.5.1...6.5.2)

[Compare Source](https://github.com/hibernate/hibernate-orm/compare/6.5.1...6.5.2)

### [`v6.5.1.Final`](https://github.com/hibernate/hibernate-orm/compare/6.5.0...6.5.1)

[Compare Source](https://github.com/hibernate/hibernate-orm/compare/6.5.0...6.5.1)

### [`v6.5.0.Final`](https://github.com/hibernate/hibernate-orm/compare/6.4.10...6.5.0)

[Compare Source](https://github.com/hibernate/hibernate-orm/compare/6.4.10...6.5.0)

### [`v6.4.10.Final`](https://github.com/hibernate/hibernate-orm/compare/6.4.9...6.4.10)

[Compare Source](https://github.com/hibernate/hibernate-orm/compare/6.4.9...6.4.10)

### [`v6.4.9.Final`](https://github.com/hibernate/hibernate-orm/compare/6.4.8...6.4.9)

[Compare Source](https://github.com/hibernate/hibernate-orm/compare/6.4.8...6.4.9)

### [`v6.4.8.Final`](https://github.com/hibernate/hibernate-orm/compare/6.4.7...6.4.8)

[Compare Source](https://github.com/hibernate/hibernate-orm/compare/6.4.7...6.4.8)

### [`v6.4.7.Final`](https://github.com/hibernate/hibernate-orm/compare/6.4.6...6.4.7)

[Compare Source](https://github.com/hibernate/hibernate-orm/compare/6.4.6...6.4.7)

### [`v6.4.6.Final`](https://github.com/hibernate/hibernate-orm/compare/6.4.5...6.4.6)

[Compare Source](https://github.com/hibernate/hibernate-orm/compare/6.4.5...6.4.6)

### [`v6.4.5.Final`](https://github.com/hibernate/hibernate-orm/compare/6.4.4...6.4.5)

[Compare Source](https://github.com/hibernate/hibernate-orm/compare/6.4.4...6.4.5)

</details>

<details>
<summary>Blazebit/blaze-persistence</summary>

### [`v1.6.12`](https://github.com/Blazebit/blaze-persistence/blob/HEAD/CHANGELOG.md#&#8203;1612)

[Compare Source](https://github.com/Blazebit/blaze-persistence/compare/1.6.11...1.6.12)

02/08/2024 - [Release tag](https://github.com/Blazebit/blaze-persistence/releases/tag/1.6.12) [Resolved issues](https://github.com/Blazebit/blaze-persistence/issues?q=is%3Aissue+milestone%3A1.6.12+is%3Aclosed+sort%3Aupdated-desc)

##### New features

-   Add support for Spring Data/Boot 3.3
-   Add `date_iso`, `time_iso` and `timestamp_iso` internal functions

##### Bug fixes

-   Fix bug in collection insert code triggered by Hibernate ORM 6.4.2
-   Fix concurrency issue leading to NPE when concurrently creating entity view updaters
-   Fix `CAST_STRING` for SQL Server
-   Ensure Spring Jackson integration copies `ObjectMapper` bean
-   Fix entity view processor generated code for `@MappingSingular` leading to compilation error
-   Fix `MULTISET` issues with temporal `BasicUserType`

##### Backwards-incompatible changes

None yet

</details>

<details>
<summary>quarkusio/quarkus</summary>

### [`v3.15.1`](https://github.com/quarkusio/quarkus/releases/tag/3.15.1)

[Compare Source](https://github.com/quarkusio/quarkus/compare/3.15.0...3.15.1)

##### Complete changelog

-   [#&#8203;38531](https://github.com/quarkusio/quarkus/issues/38531) - Compilation fails on Azure Functions Blob Trigger
-   [#&#8203;42711](https://github.com/quarkusio/quarkus/pull/42711) - Bump Keycloak version to 25.0.4
-   [#&#8203;43305](https://github.com/quarkusio/quarkus/issues/43305) - gRPC bidi streaming testing in DevUI is broken
-   [#&#8203;43310](https://github.com/quarkusio/quarkus/issues/43310) - Docs: config property names in the generated docs are no longer links
-   [#&#8203;43311](https://github.com/quarkusio/quarkus/pull/43311) - Fix a few issues with the local proxy for REST Client feature
-   [#&#8203;43337](https://github.com/quarkusio/quarkus/pull/43337) - Fix gRPC DevUI testing console
-   [#&#8203;43343](https://github.com/quarkusio/quarkus/pull/43343) - Minor updates to the Getting Started with Security doc
-   [#&#8203;43344](https://github.com/quarkusio/quarkus/pull/43344) - The logging guide review for 3.15
-   [#&#8203;43355](https://github.com/quarkusio/quarkus/pull/43355) - Remove unnecessary symbols that force you to change lines after copying each time
-   [#&#8203;43371](https://github.com/quarkusio/quarkus/pull/43371) - The Data source guide review for-3-15
-   [#&#8203;43377](https://github.com/quarkusio/quarkus/pull/43377) - Docs: Fix example in "Accessing Static Fields and Methods"
-   [#&#8203;43391](https://github.com/quarkusio/quarkus/issues/43391) - Quarkus Spring Data documentation should document newly supported interfaces and update existing examples
-   [#&#8203;43403](https://github.com/quarkusio/quarkus/pull/43403) - Fix classloading in AzureFunctionsProcessor#findFunctions
-   [#&#8203;43407](https://github.com/quarkusio/quarkus/pull/43407) - Picocli guide - add a note about passing arguments for gradle project
-   [#&#8203;43411](https://github.com/quarkusio/quarkus/pull/43411) - Remove a duplicated line in the TLS registry guide
-   [#&#8203;43414](https://github.com/quarkusio/quarkus/issues/43414) - Update protobuf-java to 3.25.5
-   [#&#8203;43426](https://github.com/quarkusio/quarkus/pull/43426) - Bump Keycloak version to 25.0.6
-   [#&#8203;43431](https://github.com/quarkusio/quarkus/pull/43431) - Bump protoc/protobuf-java from 3.25.3 to 3.25.5
-   [#&#8203;43447](https://github.com/quarkusio/quarkus/pull/43447) - Update  headings to  headings to prevent confusing numbering
-   [#&#8203;43451](https://github.com/quarkusio/quarkus/pull/43451) - Spring APIs - Document newly supported interfaces and update existing examples
-   [#&#8203;43457](https://github.com/quarkusio/quarkus/pull/43457) - Remove a superfluous quote in the GraphQL client docs
-   [#&#8203;43460](https://github.com/quarkusio/quarkus/pull/43460) - Small followup for Picocli + Gradle improvement
-   [#&#8203;43493](https://github.com/quarkusio/quarkus/pull/43493) - Config Doc - Bring back the links for config sections and properties

### [`v3.15.0`](https://github.com/quarkusio/quarkus/releases/tag/3.15.0)

[Compare Source](https://github.com/quarkusio/quarkus/compare/3.14.4...3.15.0)

##### Complete changelog

-   [#&#8203;43207](https://github.com/quarkusio/quarkus/pull/43207) - Cleanup & nitpicks on guide: security-jwt
-   [#&#8203;43297](https://github.com/quarkusio/quarkus/issues/43297) - Using jib with opentelemetry cannot produce a stable library layer
-   [#&#8203;43300](https://github.com/quarkusio/quarkus/pull/43300) - Set filtered jar's manifest time to epoch
-   [#&#8203;43309](https://github.com/quarkusio/quarkus/pull/43309) - Follow up of the fix making jar file reference close idempotent with minor comments and refactor
-   [#&#8203;43313](https://github.com/quarkusio/quarkus/pull/43313) - Smallrye GraphQL: add missing federation annotations to index
-   [#&#8203;43314](https://github.com/quarkusio/quarkus/pull/43314) - Make sure server log load on Dev UI start
-   [#&#8203;43315](https://github.com/quarkusio/quarkus/pull/43315) - TLS reference guide IDs' unification

### [`v3.14.4`](https://github.com/quarkusio/quarkus/releases/tag/3.14.4)

[Compare Source](https://github.com/quarkusio/quarkus/compare/3.14.3...3.14.4)

##### Complete changelog

-   [#&#8203;29604](https://github.com/quarkusio/quarkus/issues/29604) - Add quarkus property to set the hibernate flushmode
-   [#&#8203;37618](https://github.com/quarkusio/quarkus/issues/37618) - No server chosen by com.mongodb.reactivestreams: Failed looking up SRV record
-   [#&#8203;42706](https://github.com/quarkusio/quarkus/pull/42706) - TLS reference guide review: Follow-up
-   [#&#8203;43087](https://github.com/quarkusio/quarkus/pull/43087) - Messaging extensions doc update for tls-registry usage
-   [#&#8203;43187](https://github.com/quarkusio/quarkus/issues/43187) - Pulsar devservice is not starting on RHEL 8 aarch64
-   [#&#8203;43212](https://github.com/quarkusio/quarkus/pull/43212) - Fixed Maven artifact resolver initialization in QuarkusProjectMojoBase
-   [#&#8203;43217](https://github.com/quarkusio/quarkus/issues/43217) - Calling blocking code from SecurityIdentityAugmentor causes concurrent requests to be limited by the number of event loop threads
-   [#&#8203;43222](https://github.com/quarkusio/quarkus/pull/43222) - Introduce retry into Mongo DNS resolution
-   [#&#8203;43224](https://github.com/quarkusio/quarkus/pull/43224) - Bump com.gradle.plugin-publish from 1.2.2 to 1.3.0 in /devtools/gradle
-   [#&#8203;43228](https://github.com/quarkusio/quarkus/issues/43228) - Fails to shutdown when using grpc and kafka-streams extensions
-   [#&#8203;43234](https://github.com/quarkusio/quarkus/pull/43234) - Add a note on JsonFormat annotation and ORM FormatMapper
-   [#&#8203;43246](https://github.com/quarkusio/quarkus/pull/43246) - Expose property `quarkus.hibernate-orm.flush.mode`
-   [#&#8203;43247](https://github.com/quarkusio/quarkus/issues/43247) - Application hangs when using quarkus.http.ssl.certificate.reload-period less than 30s
-   [#&#8203;43248](https://github.com/quarkusio/quarkus/pull/43248) - Don't execute blocking security code serially as it limits concurrent blocking execution to number of the event loops
-   [#&#8203;43252](https://github.com/quarkusio/quarkus/pull/43252) - Properly fail when TLS reload config is invalid
-   [#&#8203;43257](https://github.com/quarkusio/quarkus/pull/43257) - Fix jar file reference close race condition
-   [#&#8203;43261](https://github.com/quarkusio/quarkus/issues/43261) - Quarkus is using an H2 version with a regression causing data loss
-   [#&#8203;43263](https://github.com/quarkusio/quarkus/pull/43263) - KafkaStreamsProducer no longer shuts down the injected executorservice
-   [#&#8203;43265](https://github.com/quarkusio/quarkus/pull/43265) - Downgrade H2 to 2.3.230
-   [#&#8203;43266](https://github.com/quarkusio/quarkus/pull/43266) - \[3.15] Revert Gradle cache compatibility changes
-   [#&#8203;43275](https://github.com/quarkusio/quarkus/pull/43275) - Use the branch version to compile the quickstarts
-   [#&#8203;43277](https://github.com/quarkusio/quarkus/pull/43277) - Fix an OidcEndpoint typo in the OIDC doc
-   [#&#8203;43279](https://github.com/quarkusio/quarkus/pull/43279) - Downgrade the default pulsar devservice image to 3.2.4
-   [#&#8203;43289](https://github.com/quarkusio/quarkus/pull/43289) - Do not define quarkus.version as it makes Keycloak resolution fail

### [`v3.14.3`](https://github.com/quarkusio/quarkus/releases/tag/3.14.3)

[Compare Source](https://github.com/quarkusio/quarkus/compare/3.14.2...3.14.3)

##### Complete changelog

-   [#&#8203;30087](https://github.com/quarkusio/quarkus/issues/30087) - jbang does not persist Q:CONFIG keys nor build set keys
-   [#&#8203;32831](https://github.com/quarkusio/quarkus/issues/32831) - Hibernate Validator Failure When TZ Set to Non-UTC
-   [#&#8203;41558](https://github.com/quarkusio/quarkus/pull/41558) - Add documentation for vertx and qute integration
-   [#&#8203;41559](https://github.com/quarkusio/quarkus/issues/41559) - Add documentation for Vertx and Qute integration
-   [#&#8203;42256](https://github.com/quarkusio/quarkus/issues/42256) - Gradle early task configuration causes `  quarkus.container-image. ` properties to be ignored
-   [#&#8203;42496](https://github.com/quarkusio/quarkus/pull/42496) - Configuration Cache compatibility (`QuarkusGenerateCode` - `QuarkusBuid`)
-   [#&#8203;42511](https://github.com/quarkusio/quarkus/pull/42511) - TLS Reference guide grammar check and review
-   [#&#8203;42724](https://github.com/quarkusio/quarkus/issues/42724) - gRPC Server INTERNAL: HTTP status code 400 When Upgrading from 3.12.3 > 3.13.0
-   [#&#8203;42751](https://github.com/quarkusio/quarkus/issues/42751) - `tls` command not found despite the extension present in the application
-   [#&#8203;42851](https://github.com/quarkusio/quarkus/issues/42851) - classic resteasy-client: ensure sub-resources are also proxied
-   [#&#8203;42875](https://github.com/quarkusio/quarkus/pull/42875) - Compatibility with configuration cache for image tasks
-   [#&#8203;42905](https://github.com/quarkusio/quarkus/pull/42905) - Port resteasy fix for sub-resources
-   [#&#8203;42908](https://github.com/quarkusio/quarkus/issues/42908) - Cannot initialize file manager
-   [#&#8203;42948](https://github.com/quarkusio/quarkus/pull/42948) - Document generic synthetic bean creation
-   [#&#8203;42990](https://github.com/quarkusio/quarkus/issues/42990) - `logout.backchannel.path` fails when `http.root-path` is present - Again
-   [#&#8203;42995](https://github.com/quarkusio/quarkus/pull/42995) - Fix minor typo: Use correct syntax for TIP admonition
-   [#&#8203;42998](https://github.com/quarkusio/quarkus/pull/42998) - Error page and not found page now looks the same in prod mode
-   [#&#8203;43000](https://github.com/quarkusio/quarkus/pull/43000) - Fix registration of backchannel logout route
-   [#&#8203;43009](https://github.com/quarkusio/quarkus/pull/43009) - mention gradle dsl kts not supported in quarkus update
-   [#&#8203;43010](https://github.com/quarkusio/quarkus/pull/43010) - Fix error message when a REST Client throws an exception
-   [#&#8203;43015](https://github.com/quarkusio/quarkus/pull/43015) - REST: comment out useless 10K System.out.printl() in the DrainTest
-   [#&#8203;43017](https://github.com/quarkusio/quarkus/issues/43017) - DefaultJaxRsRolesAllowedImplMethodSecuredTest produces a large number of errors
-   [#&#8203;43018](https://github.com/quarkusio/quarkus/pull/43018) - Reduce log clutter in security tests
-   [#&#8203;43019](https://github.com/quarkusio/quarkus/pull/43019) - Properly escape log message additions
-   [#&#8203;43020](https://github.com/quarkusio/quarkus/issues/43020) - Store Quarkus version in native executable
-   [#&#8203;43021](https://github.com/quarkusio/quarkus/issues/43021) - Decorated stacktrace that is added to the log record is not properly decorated
-   [#&#8203;43023](https://github.com/quarkusio/quarkus/pull/43023) - Reduce Agroal pool logging
-   [#&#8203;43025](https://github.com/quarkusio/quarkus/pull/43025) - Support transitive extensions when searching for plugins
-   [#&#8203;43028](https://github.com/quarkusio/quarkus/pull/43028) - Bump org.jboss.marshalling:jboss-marshalling from 2.2.0.Final to 2.2.1.Final
-   [#&#8203;43029](https://github.com/quarkusio/quarkus/pull/43029) - Bump mongo-client.version from 5.1.3 to 5.1.4
-   [#&#8203;43040](https://github.com/quarkusio/quarkus/issues/43040) - Excluding depencency from arc based on group id only results in NoSuchElementException
-   [#&#8203;43041](https://github.com/quarkusio/quarkus/pull/43041) - Update Vertx to version 4.5.10
-   [#&#8203;43043](https://github.com/quarkusio/quarkus/pull/43043) - Fix Arc dependency exclusion configuration
-   [#&#8203;43044](https://github.com/quarkusio/quarkus/issues/43044) - include sbom feature in LTS
-   [#&#8203;43045](https://github.com/quarkusio/quarkus/pull/43045) - Embed quarkus version in native executable as a global string symbol
-   [#&#8203;43051](https://github.com/quarkusio/quarkus/issues/43051) - Show exception cause during logging filter initialization
-   [#&#8203;43052](https://github.com/quarkusio/quarkus/pull/43052) - Show exception cause during logging filter initialization
-   [#&#8203;43055](https://github.com/quarkusio/quarkus/pull/43055) - Avoid publishing the `docs` module in Maven Central in extension template
-   [#&#8203;43063](https://github.com/quarkusio/quarkus/pull/43063) - Bump com.gradle:common-custom-user-data-maven-extension from 2 to 2.0.1
-   [#&#8203;43066](https://github.com/quarkusio/quarkus/pull/43066) - Add Application links on the welcome page
-   [#&#8203;43070](https://github.com/quarkusio/quarkus/pull/43070) - Add a note about let's encrypt challenge requiring the port 80 to be accessible
-   [#&#8203;43071](https://github.com/quarkusio/quarkus/issues/43071) - Quarkus CLI for extension setting old rest name
-   [#&#8203;43082](https://github.com/quarkusio/quarkus/pull/43082) - Fix guide URL in web-dependency-locator
-   [#&#8203;43083](https://github.com/quarkusio/quarkus/pull/43083) - Apply quarkus-rest-client-oidc-token-propagation name
-   [#&#8203;43085](https://github.com/quarkusio/quarkus/pull/43085) - \[3.14] Fix Boolean serializer
-   [#&#8203;43089](https://github.com/quarkusio/quarkus/pull/43089) - Avoid using "Reactive" for Quarkus REST in security doc
-   [#&#8203;43095](https://github.com/quarkusio/quarkus/pull/43095) - Qute: fix unsatisfied exception when recording rendered results is off
-   [#&#8203;43096](https://github.com/quarkusio/quarkus/pull/43096) - Use a Quarkus-specific clock provider that is reinitialized at runtime
-   [#&#8203;43107](https://github.com/quarkusio/quarkus/issues/43107) - TLS registry named config and Quarkus Messaging Kafka or Kafka Client can lead to failed application startup
-   [#&#8203;43108](https://github.com/quarkusio/quarkus/pull/43108) - Use the shared JsonProvider when creating Jsonb instance
-   [#&#8203;43109](https://github.com/quarkusio/quarkus/issues/43109) - Documentation generation for configuration properties in OIDC module leaves out plenty of information
-   [#&#8203;43112](https://github.com/quarkusio/quarkus/pull/43112) - Fix visual studio code svg
-   [#&#8203;43113](https://github.com/quarkusio/quarkus/issues/43113) - Documentation is not rendering the VSCode icon
-   [#&#8203;43115](https://github.com/quarkusio/quarkus/pull/43115) - Config Doc - Configure OIDC Common annotation processor for legacy root
-   [#&#8203;43116](https://github.com/quarkusio/quarkus/pull/43116) - Kafka TLS Registry integration: include tls-configuration-name in Kafka config
-   [#&#8203;43118](https://github.com/quarkusio/quarkus/pull/43118) - Fix doc numeration level of lists extension methods
-   [#&#8203;43126](https://github.com/quarkusio/quarkus/pull/43126) - Allows users to exclude DefaultMismatchedInputException
-   [#&#8203;43131](https://github.com/quarkusio/quarkus/pull/43131) - Revert "Satisfy GraalVM's classpath needs for the deletion of `org.h2.fulltext.FullTextLucene`"
-   [#&#8203;43132](https://github.com/quarkusio/quarkus/pull/43132) - Fix obsolete name in integration tests pom.xml of quarkus extension codestart
-   [#&#8203;43135](https://github.com/quarkusio/quarkus/issues/43135) - The class CertificateReloadedEvent missing
-   [#&#8203;43137](https://github.com/quarkusio/quarkus/pull/43137) - The CDI event fired after a successful update of certificates was wrong in the documentation
-   [#&#8203;43139](https://github.com/quarkusio/quarkus/pull/43139) - \[3.14] Initial support for SBOM generation and CycloneDX
-   [#&#8203;43142](https://github.com/quarkusio/quarkus/pull/43142) - Fix flaky OTel tests
-   [#&#8203;43157](https://github.com/quarkusio/quarkus/pull/43157) - \[3.14] Make generated Jackson serializers to work with null values of boxed types
-   [#&#8203;43160](https://github.com/quarkusio/quarkus/pull/43160) - Add runtime properties to Quarkus builder
-   [#&#8203;43168](https://github.com/quarkusio/quarkus/pull/43168) - Update rest-data-panache docs to clarify experimental status
-   [#&#8203;43169](https://github.com/quarkusio/quarkus/pull/43169) - Fixes error if annotation processing directories do not exist
-   [#&#8203;43194](https://github.com/quarkusio/quarkus/pull/43194) - Fix javadoc for quarkus.bootstrap.incubating-model-resolver
-   [#&#8203;43195](https://github.com/quarkusio/quarkus/pull/43195) - Config Doc - Reset list status for passthrough maps

### [`v3.14.2`](https://github.com/quarkusio/quarkus/releases/tag/3.14.2)

[Compare Source](https://github.com/quarkusio/quarkus/compare/3.14.1...3.14.2)

##### Complete changelog

-   [#&#8203;31375](https://github.com/quarkusio/quarkus/issues/31375) - RuntimeException using VirtualThreads with Jacoco
-   [#&#8203;31802](https://github.com/quarkusio/quarkus/issues/31802) - Unauthenticated request with a request path that contains a semicolon results in a server exception when using OIDC
-   [#&#8203;34395](https://github.com/quarkusio/quarkus/issues/34395) - Spring Data API Extension Property Expressions with List not working
-   [#&#8203;41854](https://github.com/quarkusio/quarkus/issues/41854) - REST request fails after adding maven dependency to quarkus-opentelemetry
-   [#&#8203;41927](https://github.com/quarkusio/quarkus/pull/41927) - Fix off-by-one issue caused by ObservabilityIntegrationRecorder using its own method for getting path without prefix
-   [#&#8203;42098](https://github.com/quarkusio/quarkus/issues/42098) - Kotlin junit ParameterizedTest with list as argument, not working anymore (3.13.0.CR1)
-   [#&#8203;42109](https://github.com/quarkusio/quarkus/pull/42109) - Make sure arrays are always cloned as arrays
-   [#&#8203;42136](https://github.com/quarkusio/quarkus/pull/42136) - Fail OIDC build if a primitive type Claim is injected in Singleton
-   [#&#8203;42205](https://github.com/quarkusio/quarkus/pull/42205) - Enable comments (reasons) in the generated reflect-config.json and improve hierarchical registration tracing
-   [#&#8203;42228](https://github.com/quarkusio/quarkus/issues/42228) - Native image build fails with `-Dquarkus.native.report-errors-at-runtime`
-   [#&#8203;42301](https://github.com/quarkusio/quarkus/issues/42301) - Records that contain Enum are still unsupported with `@ParameterizedTest` even with Serializable in 3.13.0
-   [#&#8203;42394](https://github.com/quarkusio/quarkus/issues/42394) - Take  `@JsonProperty` into account in the reflection free Jackson serializers
-   [#&#8203;42466](https://github.com/quarkusio/quarkus/issues/42466) - quarkus.knative.app-config-map misses adding the volumes to the ksvc template
-   [#&#8203;42485](https://github.com/quarkusio/quarkus/pull/42485) - Fix quarkus.knative.app-config-map misses adding the volumes to the ksvc template
-   [#&#8203;42491](https://github.com/quarkusio/quarkus/pull/42491) - Change dekorate template to use the intended knative object
-   [#&#8203;42535](https://github.com/quarkusio/quarkus/pull/42535) - Add "how to write dev services" documentation
-   [#&#8203;42578](https://github.com/quarkusio/quarkus/issues/42578) - OTEL + `quarkus.http.test-timeout` -> NullPointerException: Cannot invoke "io.vertx.core.spi.observability.HttpResponse.headers()" because "httpResponse" is null
-   [#&#8203;42619](https://github.com/quarkusio/quarkus/issues/42619) - Jackson build time serializers could use SerializableString field names
-   [#&#8203;42651](https://github.com/quarkusio/quarkus/pull/42651) - Use SerializableString field names + support for `@JsonProperty` in the reflection free Jackson serializers
-   [#&#8203;42661](https://github.com/quarkusio/quarkus/pull/42661) - Bump Micrometer to 1.13
-   [#&#8203;42684](https://github.com/quarkusio/quarkus/pull/42684) - Encode URL in OIDC cookie
-   [#&#8203;42702](https://github.com/quarkusio/quarkus/pull/42702) - Updates to Infinispan 15.0.8.Final
-   [#&#8203;42703](https://github.com/quarkusio/quarkus/pull/42703) - Update security docs
-   [#&#8203;42705](https://github.com/quarkusio/quarkus/pull/42705) - Fix for resolving entity fields based on collections and generics
-   [#&#8203;42707](https://github.com/quarkusio/quarkus/pull/42707) - Update OAuth2 docs because of change in Bearer token check change
-   [#&#8203;42714](https://github.com/quarkusio/quarkus/issues/42714) - Continuous testing exclude-tags or exclude-engines cannot be configured via pom.xml anymore in 3.13
-   [#&#8203;42718](https://github.com/quarkusio/quarkus/pull/42718) - Bump flyway.version from 10.17.1 to 10.17.2
-   [#&#8203;42733](https://github.com/quarkusio/quarkus/issues/42733) - Qute template exception don't print origin
-   [#&#8203;42745](https://github.com/quarkusio/quarkus/pull/42745) - Remove useless enum converter allocation
-   [#&#8203;42752](https://github.com/quarkusio/quarkus/issues/42752) - `quarkus`cli always return 1 for exitcode for plugin commands
-   [#&#8203;42755](https://github.com/quarkusio/quarkus/pull/42755) - Upload native build stats from a single GH runner
-   [#&#8203;42761](https://github.com/quarkusio/quarkus/issues/42761) - Qute: ignore template files that contain whitespace in its name
-   [#&#8203;42766](https://github.com/quarkusio/quarkus/pull/42766) - Use initial Quarkus Dev config for test tags and engines
-   [#&#8203;42773](https://github.com/quarkusio/quarkus/pull/42773) - Remove jakarta.json.Json usage for performance reasons
-   [#&#8203;42774](https://github.com/quarkusio/quarkus/issues/42774) - quarkus.rest.jackson.optimization.enable-reflection-free-serializers=true fails native build of StartStopTS microprofile application
-   [#&#8203;42778](https://github.com/quarkusio/quarkus/issues/42778) - Rest Client (formerly reactive) keep using DEFAULT_MAX_POOL_SIZE
-   [#&#8203;42779](https://github.com/quarkusio/quarkus/pull/42779) - QuarkusComponentTest: programmatic lookup improvements
-   [#&#8203;42783](https://github.com/quarkusio/quarkus/pull/42783) - Qute: ignore template files that contain whitespace in its name
-   [#&#8203;42786](https://github.com/quarkusio/quarkus/issues/42786) - Quarkus CLI Catalog wipes its content when a new plugin is added / removed
-   [#&#8203;42787](https://github.com/quarkusio/quarkus/pull/42787) - Qute: print origin if non-literal value used in bracket notation
-   [#&#8203;42788](https://github.com/quarkusio/quarkus/pull/42788) - Invalidate catalogs when adding/removing plugins
-   [#&#8203;42793](https://github.com/quarkusio/quarkus/pull/42793) - Quote directory variable to support directories with spaces
-   [#&#8203;42794](https://github.com/quarkusio/quarkus/pull/42794) - Avoid `NullPointerException`s when application fails to start
-   [#&#8203;42806](https://github.com/quarkusio/quarkus/issues/42806) - quarkus-websockets-next client connect to WSS not possible
-   [#&#8203;42808](https://github.com/quarkusio/quarkus/issues/42808) - quarkus-websockets-next client adds / to empty path
-   [#&#8203;42810](https://github.com/quarkusio/quarkus/pull/42810) - Register InetAddressResolverProvider service providers
-   [#&#8203;42814](https://github.com/quarkusio/quarkus/pull/42814) - OpenTelemetry traces and metrics config fallback to base
-   [#&#8203;42815](https://github.com/quarkusio/quarkus/issues/42815) - The configuration options missing the `quarkus.oidc.credentials.*`
-   [#&#8203;42820](https://github.com/quarkusio/quarkus/pull/42820) - Disable GrpcCliTest#testCommand due to CI failures
-   [#&#8203;42821](https://github.com/quarkusio/quarkus/pull/42821) - CDI: add cross-reference links to docs
-   [#&#8203;42822](https://github.com/quarkusio/quarkus/pull/42822) - Qute docs: clarify template record not annotated with `@CheckedTemplate`
-   [#&#8203;42823](https://github.com/quarkusio/quarkus/pull/42823) - Properly set PoolOptions for REST Client
-   [#&#8203;42826](https://github.com/quarkusio/quarkus/pull/42826) - WebSockets Next - client: support the `wss` scheme correctly
-   [#&#8203;42828](https://github.com/quarkusio/quarkus/issues/42828) - Duplicate annotation for class: interface org.jetbrains.annotations.NotNull
-   [#&#8203;42830](https://github.com/quarkusio/quarkus/pull/42830) - WebSockets Next: support endpoints with empty path
-   [#&#8203;42832](https://github.com/quarkusio/quarkus/pull/42832) - Respect exit code of cli commands
-   [#&#8203;42833](https://github.com/quarkusio/quarkus/pull/42833) - ArC - static methods interception: fix the set of copied annotations
-   [#&#8203;42835](https://github.com/quarkusio/quarkus/pull/42835) - Config Doc - Fix two scanning issues
-   [#&#8203;42837](https://github.com/quarkusio/quarkus/pull/42837) - ArC docs: mention ` @&#8203;Inject  `[@All](https://github.com/All)`  List<> ` in section about unused beans
-   [#&#8203;42840](https://github.com/quarkusio/quarkus/issues/42840) - Possible to handle routes for base URI without path from extensions
-   [#&#8203;42844](https://github.com/quarkusio/quarkus/issues/42844) - System properties config overrides in tests does not seem to take effect properly in quarkus 3.14.1
-   [#&#8203;42846](https://github.com/quarkusio/quarkus/pull/42846) - Updating selected OIDC/OpenID guides
-   [#&#8203;42848](https://github.com/quarkusio/quarkus/pull/42848) - Bump org.jetbrains.kotlinx:kotlinx-serialization-json from 1.7.1 to 1.7.2
-   [#&#8203;42853](https://github.com/quarkusio/quarkus/pull/42853) - Config Doc - Also ignore FileNotFoundException
-   [#&#8203;42856](https://github.com/quarkusio/quarkus/pull/42856) - Always put Jackson first in documentation
-   [#&#8203;42857](https://github.com/quarkusio/quarkus/issues/42857) - quarkus-rest-client-jackson - Force property
-   [#&#8203;42858](https://github.com/quarkusio/quarkus/issues/42858) - `ExtLogRecord` creation is more costly following the update to SmallRye Common 2.4.0
-   [#&#8203;42859](https://github.com/quarkusio/quarkus/pull/42859) - Satisfy GraalVM's classpath needs for the deletion of `org.h2.fulltext.FullTextLucene`
-   [#&#8203;42860](https://github.com/quarkusio/quarkus/issues/42860) - Quarkus output class in incorrect folder on live reload (gradle, multimodule, kotlin)
-   [#&#8203;42862](https://github.com/quarkusio/quarkus/pull/42862) - Revert "QuarkusTestProfile overrides in a high ordinal application.properties"
-   [#&#8203;42864](https://github.com/quarkusio/quarkus/pull/42864) - Correct typo in messaging.adoc
-   [#&#8203;42865](https://github.com/quarkusio/quarkus/issues/42865) - kafka_version label is unkown in native mode
-   [#&#8203;42866](https://github.com/quarkusio/quarkus/issues/42866) - DevUI log timestamp difference, as it was reported in GMT
-   [#&#8203;42867](https://github.com/quarkusio/quarkus/issues/42867) - Dev mode error page stacktrace doesn't open problematic code IDE on click
-   [#&#8203;42869](https://github.com/quarkusio/quarkus/issues/42869) - Dev UI log view doesn't catch up with logs after application restart
-   [#&#8203;42870](https://github.com/quarkusio/quarkus/issues/42870) - Decorated stacktraces in dev mode are not provided when using tools like curl or postman
-   [#&#8203;42871](https://github.com/quarkusio/quarkus/issues/42871) - org.springframework.aot.hint.annotation.Reflective missing from our Spring compatibilty layer?
-   [#&#8203;42877](https://github.com/quarkusio/quarkus/issues/42877) - Quarkus CLI subcommand `tls` is missing help option despite showing help
-   [#&#8203;42880](https://github.com/quarkusio/quarkus/pull/42880) - Remove BOOTSTRAP config phase from documentation
-   [#&#8203;42881](https://github.com/quarkusio/quarkus/pull/42881) - Bump com.gradle.plugin-publish from 1.2.1 to 1.2.2 in /devtools/gradle
-   [#&#8203;42883](https://github.com/quarkusio/quarkus/pull/42883) - Fix Quarkus CLI TLS command help option
-   [#&#8203;42884](https://github.com/quarkusio/quarkus/issues/42884) - `CompiledJavaVersionBuildStep` may load a wrong class number with gradle
-   [#&#8203;42885](https://github.com/quarkusio/quarkus/pull/42885) - Bump wildfly-elytron.version from 2.5.1.Final to 2.5.2.Final
-   [#&#8203;42889](https://github.com/quarkusio/quarkus/pull/42889) - Fix some small Dev UI issues
-   [#&#8203;42895](https://github.com/quarkusio/quarkus/pull/42895) - Upgrade spring-api dependency
-   [#&#8203;42896](https://github.com/quarkusio/quarkus/pull/42896) - Possible to handle routes for base URI without path from extensions
-   [#&#8203;42897](https://github.com/quarkusio/quarkus/pull/42897) - Process classes from the application artifact instead of the module output directory
-   [#&#8203;42898](https://github.com/quarkusio/quarkus/pull/42898) - Fix Kafka kafka-version metrics tag missing in native
-   [#&#8203;42899](https://github.com/quarkusio/quarkus/pull/42899) - Use quarkus-rest instead of quarkus-resteasy as default extension in maven plugin
-   [#&#8203;42901](https://github.com/quarkusio/quarkus/pull/42901) - Add LGTM traces test / check
-   [#&#8203;42911](https://github.com/quarkusio/quarkus/pull/42911) - Fix OTel DelayedAttributes bean handling
-   [#&#8203;42913](https://github.com/quarkusio/quarkus/pull/42913) - Gradle - Correctly merge classes dir when using dev mode
-   [#&#8203;42914](https://github.com/quarkusio/quarkus/pull/42914) - Fix Jackson serializers generation for interfaces and boxed primitive types
-   [#&#8203;42915](https://github.com/quarkusio/quarkus/issues/42915) - Upgrading to 3.13.x+ causes parameterised tests using record argument to fail with LinkageError 'loader constraint violation'
-   [#&#8203;42916](https://github.com/quarkusio/quarkus/pull/42916) - Update to JBoss Marshalling 2.2.0.Final
-   [#&#8203;42918](https://github.com/quarkusio/quarkus/pull/42918) - Update SmallRye Common to 2.6.0
-   [#&#8203;42919](https://github.com/quarkusio/quarkus/issues/42919) - ContainerRequestFilter checking for annotation fails in native
-   [#&#8203;42924](https://github.com/quarkusio/quarkus/pull/42924) - Bump io.smallrye.common:smallrye-common-bom from 2.5.0 to 2.6.0
-   [#&#8203;42926](https://github.com/quarkusio/quarkus/pull/42926) - Bump hibernate-search.version from 7.2.0.Final to 7.2.1.Final
-   [#&#8203;42927](https://github.com/quarkusio/quarkus/pull/42927) - Add missing dot to GraalVM not found message
-   [#&#8203;42928](https://github.com/quarkusio/quarkus/issues/42928) - Property \[autoIncrement] was not found for object type \[liquibase.datatype.core.BigIntType]
-   [#&#8203;42930](https://github.com/quarkusio/quarkus/pull/42930) - Config Doc - Avoid annotations in primitive type name
-   [#&#8203;42932](https://github.com/quarkusio/quarkus/pull/42932) - Improve compatibility of the REST Client configuration
-   [#&#8203;42936](https://github.com/quarkusio/quarkus/pull/42936) - Add decorate to all contents types and added text base error response
-   [#&#8203;42941](https://github.com/quarkusio/quarkus/pull/42941) - Register all resource classes for reflection when `ResourceInfo` is used
-   [#&#8203;42944](https://github.com/quarkusio/quarkus/issues/42944) - Test: `quarkus.http.port` is not updated with random port activated through `quarkus.http.test-port=0`
-   [#&#8203;42950](https://github.com/quarkusio/quarkus/issues/42950) - Changed order of property resolution in tests
-   [#&#8203;42958](https://github.com/quarkusio/quarkus/issues/42958) -  Signed OIDC UserInfo whith charset not recognized
-   [#&#8203;42962](https://github.com/quarkusio/quarkus/pull/42962) - Support OIDC signed UserInfo with charset content type parameters
-   [#&#8203;42964](https://github.com/quarkusio/quarkus/pull/42964) - Registering Liquibase BigIntType and Additional Classes for Reflection
-   [#&#8203;42968](https://github.com/quarkusio/quarkus/pull/42968) - Bump flyway.version from 10.17.2 to 10.17.3
-   [#&#8203;42969](https://github.com/quarkusio/quarkus/pull/42969) - Bump io.quarkus:quarkus-platform-bom-maven-plugin from 0.0.107 to 0.0.108
-   [#&#8203;42977](https://github.com/quarkusio/quarkus/issues/42977) - Quarkus REST client and Quarkus REST with abstract resource - NATIVE build fails
-   [#&#8203;42980](https://github.com/quarkusio/quarkus/pull/42980) - Prevent REST Client handling of abstract classes
-   [#&#8203;42981](https://github.com/quarkusio/quarkus/issues/42981) - `gu install native-image` instructions are not need anymore
-   [#&#8203;42983](https://github.com/quarkusio/quarkus/pull/42983) - Remove mentions to obsolete `gu install native-image`

### [`v3.14.1`](https://github.com/quarkusio/quarkus/releases/tag/3.14.1)

[Compare Source](https://github.com/quarkusio/quarkus/compare/3.14.0...3.14.1)

##### Complete changelog

-   [#&#8203;42166](https://github.com/quarkusio/quarkus/issues/42166) - LogManager error of type GENERIC_FAILURE: Handler with name 'console' is linked to a category but not configured.
-   [#&#8203;42537](https://github.com/quarkusio/quarkus/issues/42537) - REST usage fails with native when e.g. ContainerResponseFilter is used
-   [#&#8203;42612](https://github.com/quarkusio/quarkus/issues/42612) - MQTT dev services always start if another reactive messaging connector is present
-   [#&#8203;42670](https://github.com/quarkusio/quarkus/pull/42670) - Upgrade opentelemetry-semconv to 1.26.0-alpha
-   [#&#8203;42672](https://github.com/quarkusio/quarkus/pull/42672) - Add socket timeout config for the hotrod client
-   [#&#8203;42698](https://github.com/quarkusio/quarkus/pull/42698) - Fix config encryption CLI command in guide
-   [#&#8203;42725](https://github.com/quarkusio/quarkus/pull/42725) - Bump mssql-jdbc to 12.8.1
-   [#&#8203;42738](https://github.com/quarkusio/quarkus/pull/42738) - Fix OIDC Discord provider configuration
-   [#&#8203;42742](https://github.com/quarkusio/quarkus/pull/42742) - Bump org.postgresql:postgresql from 42.7.3 to 42.7.4
-   [#&#8203;42746](https://github.com/quarkusio/quarkus/pull/42746) - Fix MQTT dev services always start if there is another connector present
-   [#&#8203;42753](https://github.com/quarkusio/quarkus/pull/42753) - TLS - Prevent Duplicate Entries in .env File
-   [#&#8203;42754](https://github.com/quarkusio/quarkus/pull/42754) - Register resource classes for reflection when ContainerResponseFilter exists
-   [#&#8203;42758](https://github.com/quarkusio/quarkus/pull/42758) - Single enum converter
-   [#&#8203;42759](https://github.com/quarkusio/quarkus/pull/42759) - Save Objects::hash varargs array allocation on JarResource::hashCode
-   [#&#8203;42784](https://github.com/quarkusio/quarkus/issues/42784) - Quarkus CLI report error when using CLI plugins with flags
-   [#&#8203;42785](https://github.com/quarkusio/quarkus/pull/42785) - False error message on cli plug with flags
-   [#&#8203;42789](https://github.com/quarkusio/quarkus/pull/42789) - Fix logging categories doc example
-   [#&#8203;42797](https://github.com/quarkusio/quarkus/pull/42797) - Upgrade to SmallRye GraphQL 2.9.2

### [`v3.14.0`](https://github.com/quarkusio/quarkus/releases/tag/3.14.0)

[Compare Source](https://github.com/quarkusio/quarkus/compare/3.13.3...3.14.0)

##### Complete changelog

-   [#&#8203;42367](https://github.com/quarkusio/quarkus/issues/42367) - Setting quarkus.http.proxy.proxy-address-forwarding=true changes Host header to host
-   [#&#8203;42449](https://github.com/quarkusio/quarkus/issues/42449) - Gradle task quarkusGenerateCode with custom Microprofile converter causes java.util.ServiceConfigurationError
-   [#&#8203;42539](https://github.com/quarkusio/quarkus/pull/42539) - Added office 365 email configuration
-   [#&#8203;42546](https://github.com/quarkusio/quarkus/issues/42546) - Wrong callback URL in documentation for GitHub OIDC
-   [#&#8203;42548](https://github.com/quarkusio/quarkus/pull/42548) - Fixing documentation regarding OIDC with GitHub
-   [#&#8203;42551](https://github.com/quarkusio/quarkus/pull/42551) - Bump apicurio-registry.version from 2.5.10.Final to 2.6.2.Final
-   [#&#8203;42561](https://github.com/quarkusio/quarkus/pull/42561) - Properly handle case when quarkus-extension.yaml doesn't exist
-   [#&#8203;42572](https://github.com/quarkusio/quarkus/pull/42572) - Add keystore and truststore default format change
-   [#&#8203;42584](https://github.com/quarkusio/quarkus/issues/42584) - Custom Smallrye ConfigSourceInterceptor not loading class using Gradle
-   [#&#8203;42585](https://github.com/quarkusio/quarkus/pull/42585) - Do not try to create temp directory in test archives
-   [#&#8203;42614](https://github.com/quarkusio/quarkus/issues/42614) - Improve error message / exception  "Unable to start the management interface" by mentioning the actual port number
-   [#&#8203;42617](https://github.com/quarkusio/quarkus/pull/42617) - Add host and port when error creating management interface
-   [#&#8203;42622](https://github.com/quarkusio/quarkus/pull/42622) - New Stork version aligning k8s client version
-   [#&#8203;42624](https://github.com/quarkusio/quarkus/pull/42624) - Try a new approach for caching Maven local repository
-   [#&#8203;42633](https://github.com/quarkusio/quarkus/pull/42633) - Bump `quarkiverse-parent` from 16 to 17
-   [#&#8203;42648](https://github.com/quarkusio/quarkus/pull/42648) - Use the `Host` header in a proxied responses instead of `host`
-   [#&#8203;42649](https:/…
attilapiros pushed a commit to attilapiros/spark that referenced this pull request Oct 4, 2024
…42.7.4 and `mssql` to 12.8.1.jre11

### What changes were proposed in this pull request?

This PR aims to upgrade `h2` to 2.3.232, `postgresql` to 42.7.4 and `mssql` to 12.8.1.jre11.

### Why are the changes needed?

1. For `h2`, there are some issues fixed in version 2.3.232(full release notes: https://www.h2database.com/html/changelog.html):

    - [Issue apache#3945](h2database/h2database#3945): Column not found in correlated subquery, when referencing outer column from LEFT JOIN .. ON clause
    - [Issue apache#4097](h2database/h2database#4097): StackOverflowException when using multiple SELECT statements in one query (2.3.230)
    - [Issue apache#3982](h2database/h2database#3982): Potential issue when using ROUND
    - [Issue apache#3894](h2database/h2database#3894): Race condition causing stale data in query last result cache
    - [Issue apache#4075](h2database/h2database#4075): infinite loop in compact
    - [Issue apache#4091](h2database/h2database#4091): Wrong case with linked table to postgresql
    - [Issue apache#4088](h2database/h2database#4088): BadGrammarException when the same alias is used within two different CTEs

2. For `postgresql`, there are some issues fixed and improvements in version 42.7.4(full release notes: https://jdbc.postgresql.org/changelogs/2024-08-22-42.7.4-release/):

    - fix: PgInterval ignores case for represented interval string [PR apache#3344](pgjdbc/pgjdbc#3344)
    - perf: Avoid extra copies when receiving int4 and int2 in PGStream [PR apache#3295](pgjdbc/pgjdbc#3295)
    - fix: Add support for Infinity::numeric values in ResultSet.getObject [PR apache#3304](pgjdbc/pgjdbc#3304)
    - fix: Ensure order of results for getDouble [PR apache#3301](pgjdbc/pgjdbc#3301)
    - perf: Replace BufferedOutputStream with unsynchronized PgBufferedOutputStream, allow configuring different Java and SO_SNDBUF buffer sizes [PR apache#3248](pgjdbc/pgjdbc#3248)
    - fix: Fix SSL tests [PR apache#3260](pgjdbc/pgjdbc#3260)
    - fix: Support bytea in preferQueryMode=simple [PR apache#3243](pgjdbc/pgjdbc#3243)
    - fix: Fix [Issue apache#3234](pgjdbc/pgjdbc#3234) - Return -1 as update count for stored procedure calls [PR apache#3235](pgjdbc/pgjdbc#3235)
    - fix: Fix [Issue apache#3224](pgjdbc/pgjdbc#3224) - conversion for TIME ‘24:00’ to LocalTime breaks in binary-mode [PR apache#3225](pgjdbc/pgjdbc#3225)

3. For `mssql`,  there are some issues fixed in 12.8.1.jre11(full release notes: https://github.com/microsoft/mssql-jdbc/releases/tag/v12.8.1):

    - Adjusted DESTINATION_COL_METADATA_LOCK, in SQLServerBulkCopy, so that is properly released in all cases [PR apache#2492](microsoft/mssql-jdbc#2492)
    - Reverted "Execute Stored Procedures Directly" feature, as well as subsequent changes related to the feature [PR apache#2493](microsoft/mssql-jdbc#2493)
    - Changed driver behavior to allow prepared statement objects to be reused, preventing a "multiple queries are not allowed" error [PR apache#2494](microsoft/mssql-jdbc#2494)

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Pass GA.

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes apache#47810 from wayneguow/ug_h2.

Authored-by: Wei Guo <guow93@gmail.com>
Signed-off-by: Kent Yao <yao@apache.org>
svc-squareup-copybara pushed a commit to cashapp/misk that referenced this pull request Oct 4, 2024
This PR contains the following updates:

| Package | Type | Package file | Manager | Update | Change |
|---|---|---|---|---|---|
| [org.threeten:threetenbp](https://www.threeten.org/threetenbp)
([source](https://github.com/ThreeTen/threetenbp)) | dependencies |
misk/gradle/libs.versions.toml | gradle | minor | `1.6.9` -> `1.7.0` |
| [app.cash.tempest:tempest-bom](https://github.com/cashapp/tempest) |
dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2024.08.07.002316-64f40ef` -> `2024.09.04.165019-8430cf3` |
| [org.postgresql:postgresql](https://jdbc.postgresql.org)
([source](https://github.com/pgjdbc/pgjdbc)) | dependencies |
misk/gradle/libs.versions.toml | gradle | minor | `42.3.9` -> `42.7.4` |
| [com.squareup.okio:okio](https://github.com/square/okio) |
dependencies | misk/gradle/libs.versions.toml | gradle | patch | `3.9.0`
-> `3.9.1` |
| [org.mockito:mockito-core](https://github.com/mockito/mockito) |
dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`5.13.0` -> `5.14.1` |
| [ch.qos.logback:logback-core](http://logback.qos.ch)
([source](https://github.com/qos-ch/logback),
[changelog](https://logback.qos.ch/news.html)) | dependencies |
misk/gradle/libs.versions.toml | gradle | minor | `1.4.14` -> `1.5.6` |
| [ch.qos.logback:logback-classic](http://logback.qos.ch)
([source](https://github.com/qos-ch/logback),
[changelog](https://logback.qos.ch/news.html)) | dependencies |
misk/gradle/libs.versions.toml | gradle | minor | `1.4.14` -> `1.5.6` |
|
[org.jetbrains.kotlinx:kotlinx-coroutines-core](https://github.com/Kotlin/kotlinx.coroutines)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`1.8.1` -> `1.9.0` |
| [org.jooq:jooq](http://www.jooq.org)
([source](https://github.com/jOOQ/jOOQ)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `3.18.2` -> `3.18.20`
|
| [redis.clients:jedis](https://github.com/redis/jedis) | dependencies |
misk/gradle/libs.versions.toml | gradle | minor | `5.1.5` -> `5.2.0` |
| [com.google.guava:guava-bom](https://github.com/google/guava)
([source](http://svn.sonatype.org/spice/trunk/oss/oss-parent-9)) |
dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`33.3.0-jre` -> `33.3.1-jre` |
| [io.grpc:grpc-stub](https://github.com/grpc/grpc-java) | dependencies
| misk/gradle/libs.versions.toml | gradle | minor | `1.60.0` -> `1.68.0`
|
| [io.grpc:grpc-protobuf](https://github.com/grpc/grpc-java) |
dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`1.60.0` -> `1.68.0` |
| [io.grpc:grpc-netty](https://github.com/grpc/grpc-java) | dependencies
| misk/gradle/libs.versions.toml | gradle | minor | `1.60.0` -> `1.68.0`
|
| [io.grpc:protoc-gen-grpc-java](https://github.com/grpc/grpc-java) |
dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`1.60.0` -> `1.68.0` |
| [io.grpc:grpc-bom](https://github.com/grpc/grpc-java) | dependencies |
misk/gradle/libs.versions.toml | gradle | minor | `1.60.0` -> `1.68.0` |
| [io.grpc:grpc-api](https://github.com/grpc/grpc-java) | dependencies |
misk/gradle/libs.versions.toml | gradle | minor | `1.60.0` -> `1.68.0` |
|
[com.google.api.grpc:proto-google-common-protos](https://github.com/googleapis/sdk-platform-java)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.43.0` -> `2.45.1` |
|
[com.google.apis:google-api-services-storage](http://nexus.sonatype.org/oss-repository-hosting.html)
([source](http://svn.sonatype.org/spice/tags/oss-parent-7)) |
dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`v1-rev20240916-2.0.0` -> `v1-rev20240924-2.0.0` |
|
[com.google.cloud:google-cloud-spanner](https://github.com/googleapis/java-spanner)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`6.75.0` -> `6.76.0` |
| [com.google.api:gax](https://github.com/googleapis/sdk-platform-java)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.52.0` -> `2.54.1` |
|
[com.google.errorprone:error_prone_annotations](https://errorprone.info)
([source](https://github.com/google/error-prone)) | dependencies |
misk/gradle/libs.versions.toml | gradle | minor | `2.31.0` -> `2.32.0` |
|
[com.netflix.concurrency-limits:concurrency-limits-core](https://github.com/Netflix/concurrency-limits)
| dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`0.5.1` -> `0.5.2` |
|
[org.apache.commons:commons-lang3](https://commons.apache.org/proper/commons-lang/)
([source](https://gitbox.apache.org/repos/asf?p=commons-lang.git)) |
dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`3.16.0` -> `3.17.0` |
| [commons-io:commons-io](https://commons.apache.org/proper/commons-io/)
([source](https://gitbox.apache.org/repos/asf?p=commons-io.git)) |
dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.16.1` -> `2.17.0` |
| [app.cash.sqldelight:runtime](https://github.com/cashapp/sqldelight) |
dependencies | misk/gradle/libs.versions.toml | gradle | patch | `2.0.0`
-> `2.0.2` |
|
[app.cash.sqldelight:mysql-dialect](https://github.com/cashapp/sqldelight)
| dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`2.0.0` -> `2.0.2` |
|
[app.cash.sqldelight:jdbc-driver](https://github.com/cashapp/sqldelight)
| dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`2.0.0` -> `2.0.2` |
|
[app.cash.sqldelight:gradle-plugin](https://github.com/cashapp/sqldelight)
| dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`2.0.0` -> `2.0.2` |
|
[com.google.protobuf:protoc](https://developers.google.com/protocol-buffers/)
([source](https://github.com/protocolbuffers/protobuf)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `3.25.4` -> `3.25.5` |
|
[com.google.protobuf:protobuf-java](https://developers.google.com/protocol-buffers/)
([source](https://github.com/protocolbuffers/protobuf)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `3.25.4` -> `3.25.5` |
| [com.squareup.okhttp3:mockwebserver](https://square.github.io/okhttp/)
([source](https://github.com/square/okhttp)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `5.0.0-alpha.13` ->
`5.0.0-alpha.14` |
| [com.squareup.okhttp3:okhttp](https://square.github.io/okhttp/)
([source](https://github.com/square/okhttp)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `5.0.0-alpha.13` ->
`5.0.0-alpha.14` |
| [io.netty:netty-handler](https://netty.io/)
([source](https://github.com/netty/netty)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `4.1.112.Final` ->
`4.1.113.Final` |
| [io.netty:netty-bom](https://netty.io/)
([source](https://github.com/netty/netty)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `4.1.112.Final` ->
`4.1.113.Final` |
|
[io.micrometer:micrometer-registry-prometheus](https://github.com/micrometer-metrics/micrometer)
| dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`1.12.9` -> `1.12.10` |
|
[io.micrometer:micrometer-core](https://github.com/micrometer-metrics/micrometer)
| dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`1.12.9` -> `1.12.10` |
|
[com.vanniktech.maven.publish.base](https://github.com/vanniktech/gradle-maven-publish-plugin)
| plugin | misk/gradle/libs.versions.toml | gradle | minor | `0.27.0` ->
`0.28.0` |
|
[com.vanniktech:gradle-maven-publish-plugin](https://github.com/vanniktech/gradle-maven-publish-plugin)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`0.27.0` -> `0.28.0` |
| [org.junit.jupiter:junit-jupiter-params](https://junit.org/junit5/)
([source](https://github.com/junit-team/junit5)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `5.11.0` -> `5.11.1` |
| [org.junit.jupiter:junit-jupiter-engine](https://junit.org/junit5/)
([source](https://github.com/junit-team/junit5)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `5.11.0` -> `5.11.1` |
| [org.junit.jupiter:junit-jupiter-api](https://junit.org/junit5/)
([source](https://github.com/junit-team/junit5)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `5.11.0` -> `5.11.1` |
|
[com.fasterxml.jackson.module:jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.17.2` -> `2.18.0` |
|
[com.fasterxml.jackson.datatype:jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.17.2` -> `2.18.0` |
|
[com.fasterxml.jackson.dataformat:jackson-dataformat-yaml](https://github.com/FasterXML/jackson-dataformats-text)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.17.2` -> `2.18.0` |
|
[com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson)
([source](https://github.com/FasterXML/jackson-databind)) | dependencies
| misk/gradle/libs.versions.toml | gradle | minor | `2.17.2` -> `2.18.0`
|
|
[com.fasterxml.jackson.core:jackson-core](https://github.com/FasterXML/jackson-core)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.17.2` -> `2.18.0` |
|
[com.fasterxml.jackson:jackson-bom](https://github.com/FasterXML/jackson-bom)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.17.2` -> `2.18.0` |
|
[com.fasterxml.jackson.core:jackson-annotations](https://github.com/FasterXML/jackson)
([source](https://github.com/FasterXML/jackson-annotations)) |
dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.17.2` -> `2.18.0` |
|
[com.google.auth:google-auth-library-oauth2-http](https://github.com/googleapis/google-auth-library-java)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`1.24.1` -> `1.27.0` |
|
[com.google.auth:google-auth-library-credentials](https://github.com/googleapis/google-auth-library-java)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`1.24.1` -> `1.27.0` |
| [io.gitlab.arturbosch.detekt:detekt-test-utils](https://detekt.dev)
([source](https://github.com/detekt/detekt)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.23.6` -> `1.23.7` |
| [io.gitlab.arturbosch.detekt:detekt-test](https://detekt.dev)
([source](https://github.com/detekt/detekt)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.23.6` -> `1.23.7` |
| [io.gitlab.arturbosch.detekt:detekt-psi-utils](https://detekt.dev)
([source](https://github.com/detekt/detekt)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.23.6` -> `1.23.7` |
| [io.gitlab.arturbosch.detekt:detekt-parser](https://detekt.dev)
([source](https://github.com/detekt/detekt)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.23.6` -> `1.23.7` |
| [io.gitlab.arturbosch.detekt:detekt-gradle-plugin](https://detekt.dev)
([source](https://github.com/detekt/detekt)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.23.6` -> `1.23.7` |
| [io.gitlab.arturbosch.detekt:detekt-api](https://detekt.dev)
([source](https://github.com/detekt/detekt)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.23.6` -> `1.23.7` |
| [com.datadoghq:dd-trace-api](https://github.com/datadog/dd-trace-java)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`1.38.1` -> `1.39.1` |
| [com.datadoghq:dd-trace-ot](https://github.com/datadog/dd-trace-java)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`1.38.1` -> `1.39.1` |
| [software.amazon.awssdk:sdk-core](https://aws.amazon.com/sdkforjava) |
dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.27.14` -> `2.28.11` |
|
[software.amazon.awssdk:dynamodb-enhanced](https://aws.amazon.com/sdkforjava)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.27.14` -> `2.28.11` |
| [software.amazon.awssdk:dynamodb](https://aws.amazon.com/sdkforjava) |
dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.27.14` -> `2.28.11` |
| [software.amazon.awssdk:aws-core](https://aws.amazon.com/sdkforjava) |
dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.27.14` -> `2.28.11` |
| [software.amazon.awssdk:bom](https://aws.amazon.com/sdkforjava) |
dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.27.14` -> `2.28.11` |
| [software.amazon.awssdk:auth](https://aws.amazon.com/sdkforjava) |
dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.27.14` -> `2.28.11` |
| [com.amazonaws:aws-java-sdk-sqs](https://aws.amazon.com/sdkforjava)
([source](https://github.com/aws/aws-sdk-java)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.12.770` ->
`1.12.772` |
| [com.amazonaws:aws-java-sdk-s3](https://aws.amazon.com/sdkforjava)
([source](https://github.com/aws/aws-sdk-java)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.12.770` ->
`1.12.772` |
|
[com.amazonaws:aws-java-sdk-dynamodb](https://aws.amazon.com/sdkforjava)
([source](https://github.com/aws/aws-sdk-java)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.12.770` ->
`1.12.772` |
| [com.amazonaws:aws-java-sdk-core](https://aws.amazon.com/sdkforjava)
([source](https://github.com/aws/aws-sdk-java)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.12.770` ->
`1.12.772` |

---

> ⚠️ **Warning**
>
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>ThreeTen/threetenbp (org.threeten:threetenbp)</summary>

###
[`v1.7.0`](https://github.com/ThreeTen/threetenbp/releases/tag/v1.7.0)

See the [change
notes](https://www.threeten.org/threetenbp/changes-report.html) for more
information.

</details>

<details>
<summary>pgjdbc/pgjdbc (org.postgresql:postgresql)</summary>

###
[`v42.7.4`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4274-2024-08-22-080000--0400)

##### Added

- chore: SCRAM dependency to 3.1 and support channel binding [PR
#&#8203;3188](https://github.com/pgjdbc/pgjdbc/pull/3188)
- chore: Add PostgreSQL 15, 16, and 17beta1 to CI tests [PR
#&#8203;3299](https://github.com/pgjdbc/pgjdbc/pull/3299)
- test: Update to 17beta3 [PR
#&#8203;3308](https://github.com/pgjdbc/pgjdbc/pull/3308)
- chore: Implement direct SSL ALPN connections [PR
#&#8203;3252](https://github.com/pgjdbc/pgjdbc/pull/3252)
- translation: Add Korean translation file [PR
#&#8203;3276](https://github.com/pgjdbc/pgjdbc/pull/3276)

##### Fixed

- fix: PgInterval ignores case for represented interval string [PR
#&#8203;3344](https://github.com/pgjdbc/pgjdbc/pull/3344)
- perf: Avoid extra copies when receiving int4 and int2 in PGStream [PR
#&#8203;3295](https://github.com/pgjdbc/pgjdbc/pull/3295)
- fix: Add support for Infinity::numeric values in ResultSet.getObject
[PR #&#8203;3304](https://github.com/pgjdbc/pgjdbc/pull/3304)
- fix: Ensure order of results for getDouble [PR
#&#8203;3301](https://github.com/pgjdbc/pgjdbc/pull/3301)
- perf: Replace BufferedOutputStream with unsynchronized
PgBufferedOutputStream, allow configuring different Java and SO_SNDBUF
buffer sizes [PR
#&#8203;3248](https://github.com/pgjdbc/pgjdbc/pull/3248)
- fix: Fix SSL tests [PR
#&#8203;3260](https://github.com/pgjdbc/pgjdbc/pull/3260)
- fix: Support bytea in preferQueryMode=simple [PR
#&#8203;3243](https://github.com/pgjdbc/pgjdbc/pull/3243)
- fix: Fix [#&#8203;3234](https://github.com/pgjdbc/pgjdbc/issues/3234)
- Return -1 as update count for stored procedure calls [PR
#&#8203;3235](https://github.com/pgjdbc/pgjdbc/pull/3235)
- fix: Fix [#&#8203;3224](https://github.com/pgjdbc/pgjdbc/issues/3224)
- conversion for TIME '24:00' to LocalTime breaks in binary-mode [PR
#&#8203;3225](https://github.com/pgjdbc/pgjdbc/pull/3225)
- perf: Speed up getDate by parsing bytes instead of String [PR
#&#8203;3141](https://github.com/pgjdbc/pgjdbc/pull/3141)
- fix: support PreparedStatement.setBlob(1, Blob) and
PreparedStatement.setClob(1, Clob) for lobs that return -1 for length
[PR #&#8203;3136](https://github.com/pgjdbc/pgjdbc/pull/3136)
- fix: Validates resultset Params in PGStatement constructor. uses
assertThro… [PR
#&#8203;3171](https://github.com/pgjdbc/pgjdbc/pull/3171)
- fix: Validates resultset parameters [PR
#&#8203;3167](https://github.com/pgjdbc/pgjdbc/pull/3167)
- docs: Replace greater to with greater than [PR
#&#8203;3315](https://github.com/pgjdbc/pgjdbc/pull/3315)
- docs: Clarify binaryTransfer and prepareThreshold [PR
#&#8203;3338](https://github.com/pgjdbc/pgjdbc/pull/3338)
- docs: use.md, typo [PR
#&#8203;3314](https://github.com/pgjdbc/pgjdbc/pull/3314)
- test: Use docker v2 which changes docker-compose to docker compose
[#&#8203;3339](https://github.com/pgjdbc/pgjdbc/pull/3339)
- refactor: Merge PgPreparedStatement#setBinaryStream int and long
methods [PR #&#8203;3165](https://github.com/pgjdbc/pgjdbc/pull/3165)
- test: Test both binaryMode=true,false when creating connections in
DatabaseMetaDataTest [PR
#&#8203;3231](https://github.com/pgjdbc/pgjdbc/pull/3231)
- docs: Fixed typos in all source code and documentations [PR
#&#8203;3242](https://github.com/pgjdbc/pgjdbc/pull/3242)
- chore: Remove self-hosted runner [PR
#&#8203;3227](https://github.com/pgjdbc/pgjdbc/pull/3227)
- docs: Add cancelSignalTimeout in README [PR
#&#8203;3190](https://github.com/pgjdbc/pgjdbc/pull/3190)
- docs: Document READ_ONLY_MODE in README [PR
#&#8203;3175](https://github.com/pgjdbc/pgjdbc/pull/3175)
- test: Test for +/- infinity double values [PR
#&#8203;3294](https://github.com/pgjdbc/pgjdbc/pull/3294)
- test: Switch localhost and auth-test around for test-gss [PR
#&#8203;3343](https://github.com/pgjdbc/pgjdbc/pull/3343)
- fix: remove preDescribe from internalExecuteBatch [PR
#&#8203;2883](https://github.com/pgjdbc/pgjdbc/pull/2883)

##### Deprecated

- test: Deprecate all PostgreSQL versions older than 9.1 [PR
#&#8203;3335](https://github.com/pgjdbc/pgjdbc/pull/3335)

###
[`v42.7.3`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4273-2024-04-14-145100--0400)

##### Changed

- chore: gradle config enforces 17+ [PR
#&#8203;3147](https://github.com/pgjdbc/pgjdbc/pull/3147)

##### Fixed

- fix: boolean types not handled in SimpleQuery mode [PR
#&#8203;3146](https://github.com/pgjdbc/pgjdbc/pull/3146)
    -   make sure we handle boolean types in simple query mode
    -   support uuid as well
- handle all well known types in text mode and change `else if` to
`switch`
- fix: released new versions of 42.2.29, 42.3.10, 42.4.5, 42.5.6, 42.6.2
to deal with `NoSuchMethodError on ByteBuffer#position` when running on
Java 8

###
[`v42.7.2`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4272-2024-02-21-082300--0500)

##### Security

- security: SQL Injection via line comment generation, it is possible in
`SimpleQuery` mode to generate a line comment by having a placeholder
for a numeric with a `-`
such as `-?`. There must be second placeholder for a string immediately
after. Setting the parameter to a -ve value creates a line comment.
This has been fixed in this version fixes
[CVE-2024-1597](https://www.cve.org/CVERecord?id=CVE-2024-1597).
Reported by [Paul Gerste](https://github.com/paul-gerste-sonarsource).
See the [security
advisory](https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-24rp-q3w6-vc56)
for more details. This has been fixed in versions 42.7.2, 42.6.1 42.5.5,
42.4.4, 42.3.9, 42.2.28.jre7. See the security advisory for work
arounds.

##### Changed

- fix: Use simple query for isValid. Using Extended query sends two
messages checkConnectionQuery was never ever set or used, removed [PR
#&#8203;3101](https://github.com/pgjdbc/pgjdbc/pull/3101)
- perf: Avoid autoboxing bind indexes by
[@&#8203;bokken](https://github.com/bokken) in [PR
#&#8203;1244](https://github.com/pgjdbc/pgjdbc/pull/1244)
- refactor: Document that encodePassword will zero out the password
array, and remove driver's default encodePassword by
[@&#8203;vlsi](https://github.com/vlsi) in [PR
#&#8203;3084](https://github.com/pgjdbc/pgjdbc/pull/3084)

##### Added

- feat: Add PasswordUtil for encrypting passwords client side [PR
#&#8203;3082](https://github.com/pgjdbc/pgjdbc/pull/3082)

###
[`v42.7.1`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4271-2023-12-06-083400--0500)

##### Changed

- perf: improve performance of PreparedStatement.setBlob,
BlobInputStream, and BlobOutputStream with dynamic buffer sizing [PR
#&#8203;3044](https://github.com/pgjdbc/pgjdbc/pull/3044)

##### Fixed

- fix: Apply connectTimeout before SSLSocket.startHandshake to avoid
infinite wait in case the connection is broken [PR
#&#8203;3040](https://github.com/pgjdbc/pgjdbc/pull/3040)
- fix: support waffle-jna 2.x and 3.x by using reflective approach for
ManagedSecBufferDesc [PR
#&#8203;2720](https://github.com/pgjdbc/pgjdbc/pull/2720) Fixes [Issue
#&#8203;2690](https://github.com/pgjdbc/pgjdbc/issues/2720).
- fix: NoSuchMethodError on ByteBuffer#position When Running on Java 8
when accessing arrays, fixes [Issue
#&#8203;3014](https://github.com/pgjdbc/pgjdbc/issues/3014)
- Revert "[PR #&#8203;2925](https://github.com/pgjdbc/pgjdbc/pull/2925)
Use canonical DateStyle name" [PR
#&#8203;3035](https://github.com/pgjdbc/pgjdbc/pull/3035)
Fixes [Issue #&#8203;3008](https://github.com/pgjdbc/pgjdbc/issues/3008)
- Revert "[PR ##&#8203;2973](https://github.com/pgjdbc/pgjdbc/pull/2973)
feat: support SET statements combining with other queries with semicolon
in PreparedStatement" [PR
#&#8203;3010](https://github.com/pgjdbc/pgjdbc/pull/3010)
Fixes [Issue #&#8203;3007](https://github.com/pgjdbc/pgjdbc/issues/3007)
- fix: avoid timezone conversions when sending LocalDateTime to the
database [#&#8203;2852](https://github.com/pgjdbc/pgjdbc/pull/3010)
Fixes [Issue #&#8203;1390](https://github.com/pgjdbc/pgjdbc/issues/1390)
    ,[Issue #&#8203;2850](https://github.com/pgjdbc/pgjdbc/issues/2850)
Closes \[Issue
[#&#8203;1391](https://github.com/pgjdbc/pgjdbc/issues/1391)(https://github.com/pgjdbc/pgjdbc/issues/1391)

###
[`v42.7.0`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4270-2023-11-20-093300--0500)

##### Changed

- fix: Deprecate for removal PGPoint.setLocation(java.awt.Point) to cut
dependency to `java.desktop` module. [PR
#&#8203;2967](https://github.com/pgjdbc/pgjdbc/pull/2967)
- feat: return all catalogs for getCatalogs metadata query closes [ISSUE
#&#8203;2949](https://github.com/pgjdbc/pgjdbc/issues/2949) [PR
#&#8203;2953](https://github.com/pgjdbc/pgjdbc/pull/2953)
- feat: support SET statements combining with other queries with
semicolon in PreparedStatement [PR
##&#8203;2973](https://github.com/pgjdbc/pgjdbc/pull/2973)

##### Fixed

- chore: add styleCheck Gradle task to report style violations [PR
#&#8203;2980](https://github.com/pgjdbc/pgjdbc/pull/2980)
- fix: Include currentXid in "Error rolling back prepared transaction"
exception message [PR
#&#8203;2978](https://github.com/pgjdbc/pgjdbc/pull/2978)
- fix: add varbit as a basic type inside the TypeInfoCache [PR
#&#8203;2960](https://github.com/pgjdbc/pgjdbc/pull/2960)
- fix: Fix failing tests for version 16. [PR
#&#8203;2962](https://github.com/pgjdbc/pgjdbc/pull/2962)
- fix: allow setting arrays with ANSI type name [PR
#&#8203;2952](https://github.com/pgjdbc/pgjdbc/pull/2952)
- feat: Use KeepAlive to confirm LSNs [PR
#&#8203;2941](https://github.com/pgjdbc/pgjdbc/pull/2941)
- fix: put double ' around log parameter [PR
#&#8203;2936](https://github.com/pgjdbc/pgjdbc/pull/2936) fixes [ISSUE
#&#8203;2935](https://github.com/pgjdbc/pgjdbc/issues/2935)
- fix: Fix Issue
[#&#8203;2928](https://github.com/pgjdbc/pgjdbc/issues/2928) number of
ports not equal to number of servers in datasource [PR
#&#8203;2929](https://github.com/pgjdbc/pgjdbc/pull/2929)
- fix: Use canonical DateStyle name
([#&#8203;2925](https://github.com/pgjdbc/pgjdbc/issues/2925)) fixes
[pgbouncer issue](https://github.com/pgbouncer/pgbouncer/issues/776)
- fix: Method getFastLong should be able to parse all longs [PR
#&#8203;2881](https://github.com/pgjdbc/pgjdbc/pull/2881)
- docs: Fix typos in info.html [PR
#&#8203;2860](https://github.com/pgjdbc/pgjdbc/pull/2860)
- fix: Return correct default from
PgDatabaseMetaData.getDefaultTransactionIsolation [PR
#&#8203;2992](https://github.com/pgjdbc/pgjdbc/pull/2992) fixes [Issue
#&#8203;2991](https://github.com/pgjdbc/pgjdbc/issues/2991)
-   test: fix assertion in RefCursorFetchTestultFetchSize rows
-   test: use try-with-resources in LogicalReplicationStatusTest

###
[`v42.6.0`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4260-2023-03-17-153434--0400)

##### Changed

- fix: use PhantomReferences instead of `Obejct.finalize()` to track
Connection leaks [PR
#&#8203;2847](https://github.com/pgjdbc/pgjdbc/pull/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
[PR #&#8203;2635](https://github.com/pgjdbc/pgjdbc/pull/2635)
Fixes [Issue #&#8203;1951](https://github.com/pgjdbc/pgjdbc/issues/1951)

###
[`v42.5.4`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4254-2023-02-15-102104--0500)

##### Fixed

- 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
[#&#8203;2810](https://github.com/pgjdbc/pgjdbc/issues/2810)]\((https://github.com/pgjdbc/pgjdbc/pull/2810).
- fixes [Issue
#&#8203;2804](https://github.com/pgjdbc/pgjdbc/issues/2804).
- fix: Make sure that github CI runs tests on all [PRs
#&#8203;2809](\(https://github.com/pgjdbc/pgjdbc/pull/2809\)).

###
[`v42.5.3`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4253-2023-02-03-082450--0500)

##### Fixed

- fix: Add box to TypeInfoCache, fixes [Issue
#&#8203;2746](https://github.com/pgjdbc/pgjdbc/issues/2746) [PR
#&#8203;2747](https://github.com/pgjdbc/pgjdbc/pull/2747)
- fix: regression in PgResultSet LONG_MIN copy and paste error fixes
[Issue #&#8203;2748](https://github.com/pgjdbc/pgjdbc/issues/2748)
[PR#2749](https://github.com/pgjdbc/pgjdbc/pull/2749)

###
[`v42.5.2`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4252-2023-01-31-143046--0500)

##### Changed

- 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 [#Issue
2671](https://github.com/pgjdbc/pgjdbc/issues/2671) [PR
#&#8203;2686](https://github.com/pgjdbc/pgjdbc/pull/2686)
- docs: clarify binaryTransfer and add it to README [PR#
2698](https://github.com/pgjdbc/pgjdbc/pull/2698)
- docs: Document the need to encode reserved characters in the
connection URL [PR
#&#8203;2700](https://github.com/pgjdbc/pgjdbc/pull/2700)
- feat: Define binary transfer for custom types
dynamically/automatically fixes [Issue
#&#8203;2554](https://github.com/pgjdbc/pgjdbc/issues/2554) [PR
#&#8203;2556](https://github.com/pgjdbc/pgjdbc/pull/2556)

##### Added

- fix: added gssResponseTimeout as part of [PR
#&#8203;2687](https://github.com/pgjdbc/pgjdbc/pull/2687) to make sure
we don't wait forever on a GSS RESPONSE

##### Fixed

- fix: Ensure case of XML tags in Maven snippet is correct [PR
#&#8203;2682](https://github.com/pgjdbc/pgjdbc/pull/2682)
- fix: Make sure socket is closed if an exception is thrown in
createSocket fixes [Issue
#&#8203;2684](https://github.com/pgjdbc/pgjdbc/issues/2684) [PR
#&#8203;2685](https://github.com/pgjdbc/pgjdbc/pull/2685)
- fix: Apply patch from [Issue
#&#8203;2683](https://github.com/pgjdbc/pgjdbc/issues/2683) to fix
hanging ssl connections [PR
#&#8203;2687](https://github.com/pgjdbc/pgjdbc/pull/2687)
- fix - binary conversion of (very) long numeric values (longer than 4
\* 2^15 digits) [PR
#&#8203;2697](https://github.com/pgjdbc/pgjdbc/pull/2697) fixes [Issue
#&#8203;2695](https://github.com/pgjdbc/pgjdbc/issues/2695)
- minor: enhance readability connection of startup params [PR
#&#8203;2705](https://github.com/pgjdbc/pgjdbc/pull/2785)

###
[`v42.5.1`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4251-2022-11-23-101459--0500)

##### Security

- security: StreamWrapper spills to disk if setText, or setBytea sends
very large Strings or arrays to the server. createTempFile creates a
file which can be read by other users on unix like systems (Not macos).
This has been fixed in this version fixes CVE-2022-41946 see the
[security
advisory](https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-562r-vg33-8x8h)
for more details. Reported by [Jonathan
Leitschuh](https://github.com/JLLeitschuh) This has been fixed in
versions 42.5.1, 42.4.3 42.3.8, 42.2.27.jre7. Note there is no fix for
42.2.26.jre6. See the security advisory for work arounds.

##### Fixed

- fix: make sure we select array_in from pg_catalog to avoid duplicate
array_in functions fixes [#Issue
2548](https://github.com/pgjdbc/pgjdbc/issues/2548) [PR
#&#8203;2552](https://github.com/pgjdbc/pgjdbc/issues/2552)
- fix: binary decoding of bool values [PR
#&#8203;2640](https://github.com/pgjdbc/pgjdbc/pull/2640)
- perf: improve performance of PgResultSet
getByte/getShort/getInt/getLong for float-typed columns [PR
#&#8203;2634](https://github.com/pgjdbc/pgjdbc/pull/2634)
- chore: fix various spelling errors [PR
#&#8203;2592](https://github.com/pgjdbc/pgjdbc/pull/2592)
- chore: Feature/urlparser improve URLParser [PR
#&#8203;2641](https://github.com/pgjdbc/pgjdbc/pull/2592)

###
[`v42.5.0`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4250-2022-08-23-112011--0400)

##### Changed

- fix: revert change in [PR
#&#8203;1986](https://github.com/pgjdbc/pgjdbc/pull/1986) where float
was aliased to float4 from float8.
float now aliases to float8 [PR
#&#8203;2598](https://github.com/pgjdbc/pgjdbc/pull/2598) fixes [Issue
#&#8203;2597](https://github.com/pgjdbc/pgjdbc/issues/2597)

###
[`v42.4.2`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4242-2022-08-17-103340--0400)

##### Changed

- fix: add alias to the generated getUDT() query for clarity (PR
[#&#8203;2553](https://github.com/pgjdbc/pgjdbc/issues/2553))\[https://github.com/pgjdbc/pgjdbc/pull/2553]

##### Added

- fix: make setObject accept UUID array [PR
#&#8203;2587](https://github.com/pgjdbc/pgjdbc/pull/2587)

##### Fixed

- fix: regression with GSS. Changes introduced to support building with
Java 17 caused failures [Issue
#&#8203;2588](https://github.com/pgjdbc/pgjdbc/issues/2588)
- fix: set a timeout to get the return from requesting SSL upgrade. [PR
#&#8203;2572](https://github.com/pgjdbc/pgjdbc/pull/2572)
- feat: synchronize statement executions (e.g. avoid deadlock when
Connection.isValid is executed from concurrent threads)

###
[`v42.4.1`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4241-2022-08-01-162420--0400)

##### Security

- fix: CVE-2022-31197 Fixes SQL generated in PgResultSet.refresh() to
escape column identifiers so as to prevent SQL injection.
- 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.
- Also adds a new test class ResultSetRefreshTest to verify this change.
    -   Reported by [Sho Kato](https://github.com/kato-sho)

##### Changed

-   chore: skip publishing pgjdbc-osgi-test to Central
-   chore: bump Gradle to 7.5
-   test: update JUnit to 5.8.2

##### Added

- chore: added Gradle Wrapper Validation for verifying
gradle-wrapper.jar
- chore: added "permissions: contents: read" for GitHub Actions to avoid
unintentional modifications by the CI
-   chore: support building pgjdbc with Java 17
- feat: synchronize statement executions (e.g. avoid deadlock when
Connection.isValid is executed from concurrent threads)

###
[`v42.4.0`](https://github.com/pgjdbc/pgjdbc/blob/HEAD/CHANGELOG.md#4240-2022-06-09-081402--0400)

##### Changed

- 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 #&#8203;2425](https://github.com/pgjdbc/pgjdbc/issues/2497)
pgbouncer cannot deal with transactions in statement pooling mode [PR
#&#8203;2425](https://github.com/pgjdbc/pgjdbc/pull/2425)

##### Fixed

- fix: queries with up to 65535 (inclusive) parameters are supported now
(previous limit was 32767)
[PR #&#8203;2525](https://github.com/pgjdbc/pgjdbc/pull/2525), [Issue
#&#8203;1311](https://github.com/pgjdbc/pgjdbc/issues/1311)
- fix: workaround JarIndex parsing issue by using
groupId/artifactId-version directory namings.
Regression since 42.2.13. [PR
#&#8203;2531](https://github.com/pgjdbc/pgjdbc/pull/2531), [issue
#&#8203;2527](https://github.com/pgjdbc/pgjdbc/issues/2527)
-   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
#&#8203;2520](https://github.com/pgjdbc/pgjdbc/pull/2520) [Issue
#&#8203;2522](https://github.com/pgjdbc/pgjdbc/issues/2522)
- perf: utcTz static and renamed to UTC_TIMEZONE [PR
#&#8203;2519](https://github.com/pgjdbc/pgjdbc/pull/2520)
- doc: fix release version for
[#&#8203;2377](https://github.com/pgjdbc/pgjdbc/issues/2377) (it should
be 42.3.6, not 42.3.5)

</details>

<details>
<summary>square/okio (com.squareup.okio:okio)</summary>

###
[`v3.9.1`](https://github.com/square/okio/blob/HEAD/CHANGELOG.md#Version-391)

*2024-09-12*

- Fix: Support paths containing a single dot (".") in `Path.relativeTo`.
- Fix: Do not read from the upstream source when a 0-byte read is
requested.
- Fix: Update kotlinx.datetime to 0.6.0 to correct a Gradle module
metadata problem with 0.5.0.
Note: this artifact is only used in 'okio-fakefilesystem' and
'okio-nodefilesystem' and not in the Okio core.

</details>

<details>
<summary>mockito/mockito (org.mockito:mockito-core)</summary>

### [`v5.14.1`](https://github.com/mockito/mockito/releases/tag/v5.14.1)

<sup><sup>*Changelog generated by [Shipkit Changelog Gradle
Plugin](https://github.com/shipkit/shipkit-changelog)*</sup></sup>

##### 5.14.1

- 2024-09-30 - [2
commit(s)](https://github.com/mockito/mockito/compare/v5.14.0...v5.14.1)
by Brice Dutheil, dependabot\[bot]
- fix: gradle mockitoAgent configuration should not be transitive
[(#&#8203;3454)](https://github.com/mockito/mockito/pull/3454)
- Bump bytebuddy from 1.15.2 to 1.15.3
[(#&#8203;3452)](https://github.com/mockito/mockito/pull/3452)
- Allow for installing a Java agent within the Mockito jar, without
exposing Byte Buddy's attach mechanism.
[(#&#8203;3437)](https://github.com/mockito/mockito/pull/3437)

### [`v5.14.0`](https://github.com/mockito/mockito/releases/tag/v5.14.0)

<sup><sup>*Changelog generated by [Shipkit Changelog Gradle
Plugin](https://github.com/shipkit/shipkit-changelog)*</sup></sup>

##### 5.14.0

- 2024-09-27 - [9
commit(s)](https://github.com/mockito/mockito/compare/v5.13.0...v5.14.0)
by Ali-Hassan, Brice Dutheil, David Saff, Rafael Winterhalter,
dependabot\[bot]
- Bump org.junit.platform:junit-platform-launcher from 1.11.0 to 1.11.1
[(#&#8203;3451)](https://github.com/mockito/mockito/pull/3451)
- Bump bytebuddy from 1.15.1 to 1.15.2
[(#&#8203;3450)](https://github.com/mockito/mockito/pull/3450)
- Update Documentation of ArgumentCaptor.java
[(#&#8203;3448)](https://github.com/mockito/mockito/pull/3448)
- Split subprojects
[(#&#8203;3447)](https://github.com/mockito/mockito/pull/3447)
- Separate extensions from integration tests
[(#&#8203;3443)](https://github.com/mockito/mockito/issues/3443)
- Bump org.eclipse.platform:org.eclipse.osgi from 3.20.0 to 3.21.0
[(#&#8203;3440)](https://github.com/mockito/mockito/pull/3440)
- Bump com.gradle.enterprise from 3.18 to 3.18.1
[(#&#8203;3439)](https://github.com/mockito/mockito/pull/3439)
- Allow for installing a Java agent within the Mockito jar, without
exposing Byte Buddy's attach mechanism.
[(#&#8203;3437)](https://github.com/mockito/mockito/pull/3437)
- Bump bytebuddy from 1.15.0 to 1.15.1
[(#&#8203;3434)](https://github.com/mockito/mockito/pull/3434)
- Fixes [#&#8203;3419](https://github.com/mockito/mockito/issues/3419):
Disable mocks with an error message
[(#&#8203;3424)](https://github.com/mockito/mockito/pull/3424)
- Accessing a mock after clearInlineMocks could provide much more useful
error message.
[(#&#8203;3419)](https://github.com/mockito/mockito/issues/3419)

</details>

<details>
<summary>Kotlin/kotlinx.coroutines
(org.jetbrains.kotlinx:kotlinx-coroutines-core)</summary>

###
[`v1.9.0`](https://github.com/Kotlin/kotlinx.coroutines/blob/HEAD/CHANGES.md#Version-190)

[Compare
Source](https://github.com/Kotlin/kotlinx.coroutines/compare/1.8.1...1.9.0)

##### Features

- Wasm/WASI target support
([#&#8203;4064](https://github.com/Kotlin/kotlinx.coroutines/issues/4064)).
Thanks, [@&#8203;igoriakovlev](https://github.com/igoriakovlev)!
- `limitedParallelism` now optionally accepts the name of the dispatcher
view for easier debugging
([#&#8203;4023](https://github.com/Kotlin/kotlinx.coroutines/issues/4023)).
- No longer initialize `Dispatchers.IO` on the JVM when other standard
dispatchers are accessed
([#&#8203;4166](https://github.com/Kotlin/kotlinx.coroutines/issues/4166)).
Thanks, [@&#8203;metalhead8816](https://github.com/metalhead8816)!
- Introduced the `Flow<T>.chunked(size: Int): Flow<List<T>>` operator
that groups emitted values into groups of the given size
([#&#8203;1290](https://github.com/Kotlin/kotlinx.coroutines/issues/1290)).
- Closeable dispatchers are instances of `AutoCloseable` now
([#&#8203;4123](https://github.com/Kotlin/kotlinx.coroutines/issues/4123)).

##### Fixes

- Calling `hasNext` on a `Channel`'s iterator is idempotent
([#&#8203;4065](https://github.com/Kotlin/kotlinx.coroutines/issues/4065)).
Thanks, [@&#8203;gitpaxultek](https://github.com/gitpaxultek)!
- `CoroutineScope()` created without an explicit dispatcher uses
`Dispatchers.Default` on Native
([#&#8203;4074](https://github.com/Kotlin/kotlinx.coroutines/issues/4074)).
Thanks, [@&#8203;whyoleg](https://github.com/whyoleg)!
- Fixed a bug that prevented non-Android `Dispatchers.Main` from
initializing when the Firebase dependency is used
([#&#8203;3914](https://github.com/Kotlin/kotlinx.coroutines/issues/3914)).
- Ensured a more intuitive ordering of tasks in `runBlocking`
([#&#8203;4134](https://github.com/Kotlin/kotlinx.coroutines/issues/4134)).
- Forbid casting a `Mutex` to `Semaphore`
([#&#8203;4176](https://github.com/Kotlin/kotlinx.coroutines/issues/4176)).
- Worked around a stack overflow that may occur when calling
`asDeferred` on a `Future` many times
([#&#8203;4156](https://github.com/Kotlin/kotlinx.coroutines/issues/4156)).

##### Deprecations and promotions

- Advanced the deprecation levels for `BroadcastChannel`-based API
([#&#8203;4197](https://github.com/Kotlin/kotlinx.coroutines/issues/4197)).
- Advanced the deprecation levels for the old `kotlinx-coroutines-test`
API
([#&#8203;4198](https://github.com/Kotlin/kotlinx.coroutines/issues/4198)).
- Deprecated `Job.cancelFutureOnCompletion`
([#&#8203;4173](https://github.com/Kotlin/kotlinx.coroutines/issues/4173)).
- Promoted `CoroutineDispatcher.limitedParallelism` to stable
([#&#8203;3864](https://github.com/Kotlin/kotlinx.coroutines/issues/3864)).
- Promoted `CoroutineStart.ATOMIC` from `ExperimentalCoroutinesApi` to
`DelicateCoroutinesApi`
([#&#8203;4169](https://github.com/Kotlin/kotlinx.coroutines/issues/4169)).
- Promoted `CancellableContinuation.resume` with an `onCancellation`
lambda to stable, providing extra arguments to the lambda
([#&#8203;4088](https://github.com/Kotlin/kotlinx.coroutines/issues/4088)).
- Marked the classes and interfaces that are not supposed to be
inherited from with the new `InternalForInheritanceCoroutinesApi` opt-in
([#&#8203;3770](https://github.com/Kotlin/kotlinx.coroutines/issues/3770)).
- Marked the classes and interfaces inheriting from which is not stable
with the new `ExperimentalForInheritanceCoroutinesApi` opt-in
([#&#8203;3770](https://github.com/Kotlin/kotlinx.coroutines/issues/3770)).

##### Other

- Kotlin was updated to 2.0
([#&#8203;4137](https://github.com/Kotlin/kotlinx.coroutines/issues/4137)).
- Reworked the documentation for `CoroutineStart` and `Channel`-based
API
([#&#8203;4147](https://github.com/Kotlin/kotlinx.coroutines/issues/4147),
[#&#8203;4148](https://github.com/Kotlin/kotlinx.coroutines/issues/4148),
[#&#8203;4167](https://github.com/Kotlin/kotlinx.coroutines/issues/4167)).
Thanks, [@&#8203;globsterg](https://github.com/globsterg)!
- Simplified the internal implementation of `Job`
([#&#8203;4053](https://github.com/Kotlin/kotlinx.coroutines/issues/4053)).
-   Small tweaks, fixes, and documentation improvements.

</details>

<details>
<summary>redis/jedis (redis.clients:jedis)</summary>

### [`v5.2.0`](https://github.com/redis/jedis/releases/tag/v5.2.0):
5.2.0 GA

#### Enhanced Client-side caching

We are happy to announce that improved [server-assisted, client-side
caching](https://redis.io/docs/manual/client-side-caching/) is now
generally available! Special thanks to all our beta testers for their
valuable feedback, which helped us refine and improve the initial
implementation.

Client-side caching is supported exclusively with the RESP3 protocol
with Redis >= 7.4 and is available in UnifiedJedis, JedisPooled, and
JedisCluster and other classes.

##### How to try Client-Side Caching

1. [Install
Jedis](https://redis.io/docs/connect/clients/java/jedis/#install)
**5.2.0**
2.  Use the following code example to get started:

```java
public class CSCExampleTest {
  public static void main() {

    HostAndPort node = HostAndPort.from("localhost:6379");
    JedisClientConfig clientConfig = DefaultJedisClientConfig.builder()
        .resp3()                // RESP3 protocol is required for client-side caching
        //.user("myuser")       // Redis server username (optional)
        //.password("mypass")   // Redis user's password (optional)
        .build();

    CacheConfig cacheConfig = getCacheConfig();
    Cache cache = CacheFactory.getCache(cacheConfig);

    try (UnifiedJedis client = new UnifiedJedis(node, clientConfig, cache)) {
      client.set("foo", "bar");
      client.get("foo");
      client.get("foo"); // Cache hit

      System.out.println("Cache size: " + cache.getSize()); // 1
      System.out.println(cache.getStats().toString());

      //Let's change the value of "foo" to invalidate the value stored in the local cache
      client.mset("foo", "new_value", "ignore_me:1", "another_value");

      Thread.sleep(1000); // wait for the cache invalidation to happen

      System.out.println(client.get("foo")); // Cache miss
      System.out.println(cache.getStats().toString());

      client.get("ignore_me:1"); // Client will ignore this key

      System.out.println("Cache size: " + cache.getSize()); // still 1

      // check the cache stats
      System.out.println(cache.getStats().toString());

    } catch (InterruptedException e) {
      throw new RuntimeException(e);
    }
  }

  private static CacheConfig getCacheConfig() {

    // This is a simple cacheable implementation that ignores keys starting with "ignore_me"
    Cacheable cacheable = new DefaultCacheable() {

      final String IGNORE_PREFIX = "ignore_me";

      @&#8203;Override
      public boolean isCacheable(ProtocolCommand command, List<Object> keys) {
        // assuming we'll only execute methods with string keys
        List<String> stringKeys = keys.stream()
            .filter(obj -> obj instanceof String)
            .map(obj -> (String) obj)
            .collect(Collectors.toList());

        for (String key : stringKeys) {
          if (key.startsWith(IGNORE_PREFIX)) {
            return false;
          }
        }

        return isDefaultCacheableCommand(command);
      }
    };

    // Create a cache with a maximum size of 10000 entries
    return CacheConfig.builder()
        .maxSize(10000)
        .cacheable(cacheable)
        .build();
  }
}
```

It is possible to limit or ignore commands or keys for client-side
caching. The `getCacheConfig` method presented above provides an example
of how to achieve that.

#### 🔥 Breaking Changes

- JedisConnectionException contains HostAndPort from
DefaultJedisSocketFactory
([#&#8203;3896](https://github.com/redis/jedis/issues/3896))
- Address change in JSON.GET command without path
([#&#8203;3858](https://github.com/redis/jedis/issues/3858))
- Modify and fail-fast GeoSearchParam
([#&#8203;3827](https://github.com/redis/jedis/issues/3827))
- Support transaction from UnifiedJedis without calling multi first
([#&#8203;3804](https://github.com/redis/jedis/issues/3804))
- Reduce the log level of validateObject to WARN
([#&#8203;3750](https://github.com/redis/jedis/issues/3750))

#### 🧪 Experimental Features

- Support automatic namespacing
([#&#8203;3781](https://github.com/redis/jedis/issues/3781))
- Added support for ADDSCORES argument in FT.AGGREGATE
([#&#8203;3908](https://github.com/redis/jedis/issues/3908))
- Support IGNORE and other optional arguments for timeseries commands
([#&#8203;3860](https://github.com/redis/jedis/issues/3860))

#### 🚀 New Features

- Support Hash field expiration
([#&#8203;3826](https://github.com/redis/jedis/issues/3826))
- Add equals and hashCode to Timeseries Params classes
([#&#8203;3959](https://github.com/redis/jedis/issues/3959))
- Decoding FT.SEARCH reply can be disabled at field level
([#&#8203;3926](https://github.com/redis/jedis/issues/3926))
- Get enriched Connection information
([#&#8203;3745](https://github.com/redis/jedis/issues/3745))
- Support execute the read-only command on replica nodes
([#&#8203;3848](https://github.com/redis/jedis/issues/3848))
- JedisConnectionException contains HostAndPort from
DefaultJedisSocketFactory
([#&#8203;3896](https://github.com/redis/jedis/issues/3896))
- Support \[S]PUBLISH in pipelines and transactions
([#&#8203;3859](https://github.com/redis/jedis/issues/3859))
- Support Hash field expiration
([#&#8203;3826](https://github.com/redis/jedis/issues/3826))
- Custom connection pool to MultiClusterPooledConnectionProvider
([#&#8203;3801](https://github.com/redis/jedis/issues/3801))
- PubSub handle array of messages for RESP2
([#&#8203;3811](https://github.com/redis/jedis/issues/3811))
- Support transaction from UnifiedJedis without calling multi first
([#&#8203;3804](https://github.com/redis/jedis/issues/3804))
- Add last entry id for XREADs and support XREADs reply as map
([#&#8203;3791](https://github.com/redis/jedis/issues/3791))
- Add Experimental, Internal and VisibleForTesting annotations
([#&#8203;3790](https://github.com/redis/jedis/issues/3790))
- Implement equals and hashcode in Params classes
([#&#8203;3728](https://github.com/redis/jedis/issues/3728))
- Add support for redis command: CLIENT TRACKINGINFO
([#&#8203;3751](https://github.com/redis/jedis/issues/3751))
- Support the MAXAGE option for CLIENT KILL
([#&#8203;3754](https://github.com/redis/jedis/issues/3754))
- Polish [#&#8203;3741](https://github.com/redis/jedis/issues/3741)
([#&#8203;3746](https://github.com/redis/jedis/issues/3746))
- Add support for the NOVALUES option of HSCAN
([#&#8203;3741](https://github.com/redis/jedis/issues/3741))
- Support issuing Latency commands
([#&#8203;3729](https://github.com/redis/jedis/issues/3729))

#### 🐛 Bug Fixes

- Accept null replies for BZPOPMAX and BZPOPMIN commands
([#&#8203;3930](https://github.com/redis/jedis/issues/3930))
- Fix empty LUA table reply
([#&#8203;3924](https://github.com/redis/jedis/issues/3924))
- Ensure closing connection in Pipeline
([#&#8203;3865](https://github.com/redis/jedis/issues/3865))
- Address change in JSON.GET command without path
([#&#8203;3858](https://github.com/redis/jedis/issues/3858))
- Consider null values in empty StreamPendingSummary
([#&#8203;3793](https://github.com/redis/jedis/issues/3793))
- Fix UnifiedJedis pexpireAt glitch
([#&#8203;3782](https://github.com/redis/jedis/issues/3782))
- Use expiryOption in PipelineBase.expireAt
([#&#8203;3777](https://github.com/redis/jedis/issues/3777))
- Stop connection fetching before sync/exec
([#&#8203;3756](https://github.com/redis/jedis/issues/3756))
- Check for thread interrupt in subscribe process of PubSub
([#&#8203;3726](https://github.com/redis/jedis/issues/3726))
- Avoid NPE in MultiNodePipelineBase.java
([#&#8203;3697](https://github.com/redis/jedis/issues/3697))
- Fix probable missing (RESP3) protocol processing
([#&#8203;3692](https://github.com/redis/jedis/issues/3692))
- Use circuit breaker fallback exception list
([#&#8203;3664](https://github.com/redis/jedis/issues/3664))

#### 🧰 Maintenance

- Deprecate Triggers and Functions feature
([#&#8203;3968](https://github.com/redis/jedis/issues/3968))
- Bump org.apache.httpcomponents.client5:httpclient5-fluent from 5.3.1
to 5.4 ([#&#8203;3962](https://github.com/redis/jedis/issues/3962))
- Bump org.apache.maven.plugins:maven-surefire-plugin from 3.3.1 to
3.5.0 ([#&#8203;3950](https://github.com/redis/jedis/issues/3950))
- Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.8.0 to
3.10.0 ([#&#8203;3949](https://github.com/redis/jedis/issues/3949))
- Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.5 to 3.2.6
([#&#8203;3957](https://github.com/redis/jedis/issues/3957))
- Added JavaDoc for basic JedisCluster constructors
([#&#8203;3304](https://github.com/redis/jedis/issues/3304))
- Bump org.locationtech.jts:jts-core from 1.19.0 to 1.20.0
([#&#8203;3948](https://github.com/redis/jedis/issues/3948))
- Add A-A failover scenario test
([#&#8203;3935](https://github.com/redis/jedis/issues/3935))
- Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.4 to 3.2.5
([#&#8203;3936](https://github.com/redis/jedis/issues/3936))
- Fix codecov upload
([#&#8203;3933](https://github.com/redis/jedis/issues/3933))
- Rename readonly config param to specify Redis Cluster
([#&#8203;3932](https://github.com/redis/jedis/issues/3932))
- Modify Connection.toIdentityString and test
([#&#8203;3931](https://github.com/redis/jedis/issues/3931))
- Revert "Creating CODEOWNERS for the examples
([#&#8203;3570](https://github.com/redis/jedis/issues/3570))"
([#&#8203;3897](https://github.com/redis/jedis/issues/3897))
- Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to
3.3.1 ([#&#8203;3891](https://github.com/redis/jedis/issues/3891))
- Bump org.hamcrest:hamcrest from 2.2 to 3.0
([#&#8203;3914](https://github.com/redis/jedis/issues/3914))
- Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0
([#&#8203;3909](https://github.com/redis/jedis/issues/3909))
- Bump net.javacrumbs.json-unit:json-unit from 2.38.0 to 2.40.1
([#&#8203;3903](https://github.com/redis/jedis/issues/3903))
- Bump org.apache.maven.plugins:maven-release-plugin from 3.0.1 to 3.1.1
([#&#8203;3890](https://github.com/redis/jedis/issues/3890))
- Fixed typo in Javadoc
([#&#8203;3917](https://github.com/redis/jedis/issues/3917))
- Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.1 to 3.4.2
([#&#8203;3910](https://github.com/redis/jedis/issues/3910))
- Bump com.kohlschutter.junixsocket:junixsocket-core from 2.9.1 to
2.10.0 ([#&#8203;3901](https://github.com/redis/jedis/issues/3901))
- Bump jackson.version from 2.17.1 to 2.17.2
([#&#8203;3902](https://github.com/redis/jedis/issues/3902))
- Add Scenario tests
([#&#8203;3847](https://github.com/redis/jedis/issues/3847))
- Modify the judgment that reads a response as empty to isEmpty method
([#&#8203;3888](https://github.com/redis/jedis/issues/3888))
- Replace `synchronized` with `j.u.c.l.ReentrantLock` for Loom
([#&#8203;3480](https://github.com/redis/jedis/issues/3480))
- Extract messages of unsupported exception as constants
([#&#8203;3887](https://github.com/redis/jedis/issues/3887))
- Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.0
([#&#8203;3851](https://github.com/redis/jedis/issues/3851))
- Bump org.sonatype.plugins:nexus-staging-maven-plugin from 1.6.13 to
1.7.0 ([#&#8203;3850](https://github.com/redis/jedis/issues/3850))
- Bump com.google.code.gson:gson from 2.10.1 to 2.11.0
([#&#8203;3842](https://github.com/redis/jedis/issues/3842))
- Merge doc tests into main branch to keep in-sync with the code
([#&#8203;3861](https://github.com/redis/jedis/issues/3861))
- Deprecate unused Set<Tuple> builders
([#&#8203;3857](https://github.com/redis/jedis/issues/3857))
- Disable Redis Graph tests
([#&#8203;3856](https://github.com/redis/jedis/issues/3856))
- Introduce EndpointConfig and load endpoint settings from the
endpoints.json file
([#&#8203;3836](https://github.com/redis/jedis/issues/3836))
- Address Gears test fail - Cleanup Function libraries
([#&#8203;3840](https://github.com/redis/jedis/issues/3840))
- Bump jackson.version from 2.17.0 to 2.17.1
([#&#8203;3833](https://github.com/redis/jedis/issues/3833))
- Add methods in CommandArguments and RawableFactory
([#&#8203;3834](https://github.com/redis/jedis/issues/3834))
- Modify and fail-fast GeoSearchParam
([#&#8203;3827](https://github.com/redis/jedis/issues/3827))
- Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.0 to 3.4.1
([#&#8203;3822](https://github.com/redis/jedis/issues/3822))
- Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.3 to 3.2.4
([#&#8203;3823](https://github.com/redis/jedis/issues/3823))
- Bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0 to 3.4.0
([#&#8203;3819](https://github.com/redis/jedis/issues/3819))
- Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.3
([#&#8203;3818](https://github.com/redis/jedis/issues/3818))
- Add more tests for the CommandObjects class
([#&#8203;3809](https://github.com/redis/jedis/issues/3809))
- Resolve compile warnings
([#&#8203;3810](https://github.com/redis/jedis/issues/3810))
- Bump com.kohlschutter.junixsocket:junixsocket-core from 2.9.0 to 2.9.1
([#&#8203;3806](https://github.com/redis/jedis/issues/3806))
- Bump org.jacoco:jacoco-maven-plugin from 0.8.11 to 0.8.12
([#&#8203;3805](https://github.com/redis/jedis/issues/3805))
- Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1
([#&#8203;3807](https://github.com/redis/jedis/issues/3807))
- Deprecate unused JSON.ARRAPPEND in CommandObjects
([#&#8203;3798](https://github.com/redis/jedis/issues/3798))
- Extensive unit tests for the CommandObjects class
([#&#8203;3796](https://github.com/redis/jedis/issues/3796))
- Add extensive tests for UnifiedJedis
([#&#8203;3788](https://github.com/redis/jedis/issues/3788))
- Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.1 to 3.2.2
([#&#8203;3794](https://github.com/redis/jedis/issues/3794))
- Add Experimental, Internal and VisibleForTesting annotations
([#&#8203;3790](https://github.com/redis/jedis/issues/3790))
- Add TS.INFO \[DEGUB] and CF.MEXISTS in pipelined commands
([#&#8203;3787](https://github.com/redis/jedis/issues/3787))
- Bump org.apache.maven.plugins:maven-compiler-plugin from 3.12.1 to
3.13.0 ([#&#8203;3786](https://github.com/redis/jedis/issues/3786))
- Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.0 to 3.2.1
([#&#8203;3785](https://github.com/redis/jedis/issues/3785))
- Pipelined tests for lists and sets, and API typo fix
([#&#8203;3772](https://github.com/redis/jedis/issues/3772))
- Extensive unit tests for PipeliningBase
([#&#8203;3778](https://github.com/redis/jedis/issues/3778))
- Bump jackson.version from 2.16.2 to 2.17.0
([#&#8203;3776](https://github.com/redis/jedis/issues/3776))
- Bump org.apache.maven.plugins:maven-gpg-plugin from 3.1.0 to 3.2.0
([#&#8203;3775](https://github.com/redis/jedis/issues/3775))
- Fix typo in SetPipelineCommands method name
([#&#8203;3773](https://github.com/redis/jedis/issues/3773))
- Streamline test execution
([#&#8203;3760](https://github.com/redis/jedis/issues/3760))
- Add pipelined tests for sorted sets
([#&#8203;3771](https://github.com/redis/jedis/issues/3771))
- Geo pipelined tests
([#&#8203;3767](https://github.com/redis/jedis/issues/3767))
- Reenable clustering tests
([#&#8203;3764](https://github.com/redis/jedis/issues/3764))
- GETSET command is deprecated since Redis 6.2.0
([#&#8203;3768](https://github.com/redis/jedis/issues/3768))
- Add tests for Stream pipelined commands
([#&#8203;3763](https://github.com/redis/jedis/issues/3763))
- Bump jackson.version from 2.16.1 to 2.16.2
([#&#8203;3762](https://github.com/redis/jedis/issues/3762))
- Bump org.json:json from
[`2024020`](https://github.com/redis/jedis/commit/20240205) to
[`2024030`](https://github.com/redis/jedis/commit/20240303)
([#&#8203;3752](https://github.com/redis/jedis/issues/3752))
- Add Hashes pipeline commands unit tests
([#&#8203;3288](https://github.com/redis/jedis/issues/3288))
- Add unit tests for pipelining - migrate and db commands
([#&#8203;3759](https://github.com/redis/jedis/issues/3759))
- Reduce the log level of validateObject to WARN
([#&#8203;3750](https://github.com/redis/jedis/issues/3750))
- Bump org.json:json from
[`2023101`](https://github.com/redis/jedis/commit/20231013) to
[`2024020`](https://github.com/redis/jedis/commit/20240205)
([#&#8203;3706](https://github.com/redis/jedis/issues/3706))
- Bump com.kohlschutter.junixsocket:junixsocket-core from 2.8.3 to 2.9.0
([#&#8203;3724](https://github.com/redis/jedis/issues/3724))
-   Running doctests also on emb-examples ([#&

</details>

GitOrigin-RevId: 8a275b1c484ffdcd889591afa909c0ac94f02667
himadripal pushed a commit to himadripal/spark that referenced this pull request Oct 19, 2024
…42.7.4 and `mssql` to 12.8.1.jre11

### What changes were proposed in this pull request?

This PR aims to upgrade `h2` to 2.3.232, `postgresql` to 42.7.4 and `mssql` to 12.8.1.jre11.

### Why are the changes needed?

1. For `h2`, there are some issues fixed in version 2.3.232(full release notes: https://www.h2database.com/html/changelog.html):

    - [Issue apache#3945](h2database/h2database#3945): Column not found in correlated subquery, when referencing outer column from LEFT JOIN .. ON clause
    - [Issue apache#4097](h2database/h2database#4097): StackOverflowException when using multiple SELECT statements in one query (2.3.230)
    - [Issue apache#3982](h2database/h2database#3982): Potential issue when using ROUND
    - [Issue apache#3894](h2database/h2database#3894): Race condition causing stale data in query last result cache
    - [Issue apache#4075](h2database/h2database#4075): infinite loop in compact
    - [Issue apache#4091](h2database/h2database#4091): Wrong case with linked table to postgresql
    - [Issue apache#4088](h2database/h2database#4088): BadGrammarException when the same alias is used within two different CTEs

2. For `postgresql`, there are some issues fixed and improvements in version 42.7.4(full release notes: https://jdbc.postgresql.org/changelogs/2024-08-22-42.7.4-release/):

    - fix: PgInterval ignores case for represented interval string [PR apache#3344](pgjdbc/pgjdbc#3344)
    - perf: Avoid extra copies when receiving int4 and int2 in PGStream [PR apache#3295](pgjdbc/pgjdbc#3295)
    - fix: Add support for Infinity::numeric values in ResultSet.getObject [PR apache#3304](pgjdbc/pgjdbc#3304)
    - fix: Ensure order of results for getDouble [PR apache#3301](pgjdbc/pgjdbc#3301)
    - perf: Replace BufferedOutputStream with unsynchronized PgBufferedOutputStream, allow configuring different Java and SO_SNDBUF buffer sizes [PR apache#3248](pgjdbc/pgjdbc#3248)
    - fix: Fix SSL tests [PR apache#3260](pgjdbc/pgjdbc#3260)
    - fix: Support bytea in preferQueryMode=simple [PR apache#3243](pgjdbc/pgjdbc#3243)
    - fix: Fix [Issue apache#3234](pgjdbc/pgjdbc#3234) - Return -1 as update count for stored procedure calls [PR apache#3235](pgjdbc/pgjdbc#3235)
    - fix: Fix [Issue apache#3224](pgjdbc/pgjdbc#3224) - conversion for TIME ‘24:00’ to LocalTime breaks in binary-mode [PR apache#3225](pgjdbc/pgjdbc#3225)

3. For `mssql`,  there are some issues fixed in 12.8.1.jre11(full release notes: https://github.com/microsoft/mssql-jdbc/releases/tag/v12.8.1):

    - Adjusted DESTINATION_COL_METADATA_LOCK, in SQLServerBulkCopy, so that is properly released in all cases [PR apache#2492](microsoft/mssql-jdbc#2492)
    - Reverted "Execute Stored Procedures Directly" feature, as well as subsequent changes related to the feature [PR apache#2493](microsoft/mssql-jdbc#2493)
    - Changed driver behavior to allow prepared statement objects to be reused, preventing a "multiple queries are not allowed" error [PR apache#2494](microsoft/mssql-jdbc#2494)

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Pass GA.

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes apache#47810 from wayneguow/ug_h2.

Authored-by: Wei Guo <guow93@gmail.com>
Signed-off-by: Kent Yao <yao@apache.org>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants