Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 22, 2025

Bumps the backend-prod group with 7 updates in the / directory:

Package From To
software.amazon.awssdk:s3 2.40.8 2.40.13
org.flywaydb:flyway-core 11.19.0 11.19.1
org.flywaydb:flyway-mysql 11.19.0 11.19.1
org.mariadb.jdbc:mariadb-java-client 3.5.6 3.5.7
org.apache.httpcomponents.client5:httpclient5 5.5.1 5.6
io.hypersistence:hypersistence-utils-hibernate-63 3.13.3 3.14.1
org.codehaus.mojo:exec-maven-plugin 3.6.2 3.6.3

Bumps the backend-prod group with 6 updates in the /server directory:

Package From To
software.amazon.awssdk:s3 2.40.8 2.40.13
org.flywaydb:flyway-core 11.19.0 11.19.1
org.flywaydb:flyway-mysql 11.19.0 11.19.1
org.mariadb.jdbc:mariadb-java-client 3.5.6 3.5.7
org.apache.httpcomponents.client5:httpclient5 5.5.1 5.6
io.hypersistence:hypersistence-utils-hibernate-63 3.13.3 3.14.1

Updates software.amazon.awssdk:s3 from 2.40.8 to 2.40.13

Updates org.flywaydb:flyway-core from 11.19.0 to 11.19.1

Release notes

Sourced from org.flywaydb:flyway-core's releases.

Flyway 11.19.1

See release notes here

Commits

Updates org.flywaydb:flyway-mysql from 11.19.0 to 11.19.1

Updates org.mariadb.jdbc:mariadb-java-client from 3.5.6 to 3.5.7

Release notes

Sourced from org.mariadb.jdbc:mariadb-java-client's releases.

MariaDB Connector/Java 3.5.7

3.5.7 (Dec 2025)

Full Changelog

Key Enhancements

  • CONJ-1282 - Added TLS SNI (Server Name Indication) support
  • CONJ-1271 - Added MariaDbDataTruncation exception that includes MariaDB error code and error message

Issues Resolved

  • CONJ-1291 - Fixed ConnectionPoolDataSource incompatibility and connection leaks due to internal ConnectionEventListener in MariaDB Connector/J 3.5.x
  • CONJ-1286 - Fixed MariaDbPoolPinnedConnection thread-safety issue
  • CONJ-1283 - Fixed rewriteBatchedStatements introduced in 3.5.6 bug when having parentesis after VALUES parts
  • CONJ-1287 - Fixed authentication plugin multi-exchange prefix (0x01) handling introduced in MDEV-37554
  • CONJ-1290 - Fixed NullPointerException in MultiPrimaryReplicaClient
  • CONJ-1295 - Fixed MariaDbClob compilation with JDK 26+
Changelog

Sourced from org.mariadb.jdbc:mariadb-java-client's changelog.

3.5.7 (Dec 2025)

Full Changelog

Key Enhancements

  • CONJ-1282 - Added TLS SNI (Server Name Indication) support
  • CONJ-1271 - Added MariaDbDataTruncation exception that includes MariaDB error code and error message

Issues Resolved

  • CONJ-1291 - Fixed ConnectionPoolDataSource incompatibility and connection leaks due to internal ConnectionEventListener in MariaDB Connector/J 3.5.x
  • CONJ-1286 - Fixed MariaDbPoolPinnedConnection thread-safety issue
  • CONJ-1283 - Fixed rewriteBatchedStatements introduced in 3.5.6 bug when having parentesis after VALUES parts
  • CONJ-1287 - Fixed authentication plugin multi-exchange prefix (0x01) handling introduced in MDEV-37554
  • CONJ-1290 - Fixed NullPointerException in MultiPrimaryReplicaClient
  • CONJ-1295 - Fixed MariaDbClob compilation with JDK 26+
Commits
  • 46c3a4d [CONJ-1296] ResultSetMetaData.getSchemas() column labels might be returned in...
  • 6d9179b bump 3.5.7 version
  • 5c9b41c [CONJ-1271] Add MariaDbDataTruncation class to properly handle data truncati...
  • 1b48cd0 [CONJ-1283] fix INSERT rewrite detection when VALUES clause has trailing pare...
  • 6c0fb70 Merge branch 'fork/necposs/fix/conj-1286' into develop
  • efd77b1 [CONJ-1290] fix syncNewState to use previous client state when switching betw...
  • 0559d02 [CONJ-1291] PooledConnection behavior clarification.
  • 995eecd [CONJ-1293] add unit test
  • 52e5e20 [misc] micro optimization
  • ae3704d [misc] code style correction: fix IPUtility
  • Additional commits viewable in compare view

Updates org.apache.httpcomponents.client5:httpclient5 from 5.5.1 to 5.6

Changelog

Sourced from org.apache.httpcomponents.client5:httpclient5's changelog.

Release 5.6 ALPHA1

This is the first ALPHA release in the 5.6 release series. It adds several features such as transport content decompression and content compression for the async transport, support for Unix sockets, experimental support for SCRAM-SHA-256 authentication scheme, and Micrometer/OTel observations & metrics.

Commons Compress, Brotli codec, and ZStd codec are optional dependencies and get wired into the execution pipeline only if present on the classpath.

Notable changes and features included in the 5.6 series:

  • Unix domain socket support.

  • Support for pluggable content codecs via Commons-Compress in the classic transport. (optional).

  • Support for transparent content decompression and content compression with deflate, gzip, zstd (optional), and brotli (optional) codecs in the async transport.

  • Micrometer/OTel observations & metrics (optinal).

  • Off-lock connection disposal by the classic pooling connection manager. Experimental.

  • SCRAM-SHA-256 authentication scheme (RFC 7804). Experimental.

  • Request Priority support (RFC 9218). Experimental.

Compatibility notes:

  • As of this version, HttpClient uses BUILTIN HostnameVerificationPolicy by default, delegating host verification to JSSE security manager. One must explicitly configure the TLS strategy to continue using the hostname verifier shipped with HttpClient.

  • Five-second TCP keep-alive is now enabled by default.

Change Log

  • RequestConfig: Un-deprecate #setProxy. Contributed by Ryan Schmitt

  • Stale connection check support in PoolingAsyncClientConnectionManager. Contributed by Ryan Schmitt

  • ConnectionConfig: #idleTimeout support. Contributed by Ryan Schmitt

... (truncated)

Commits
  • decd193 HttpClient 5.6 release
  • 11ea8e5 Updated release notes for HttpClient 5.6 release
  • 77fa61a Limit the length of content codec list that can be processed automatically
  • 81b7971 Upgraded HttpCore to version 5.4
  • 2c7fe0f Add OFFLOCK pool concurrency policy backed by RouteSegmentedConnPool (#765)
  • 1f4dea7 Fixed Micrometer and OpenTelemetry dependency declaration
  • d2fadd2 Tag TLS handshake timeout tests with slow
  • e52e466 TestTlsHandshakeTimeout: Disable assertions on Java 8
  • 77f52f0 Upgraded HttpClient version to 5.6-alpha2-SNAPSHOT
  • 48e0f25 HttpClient 5.6-alpha1 release
  • Additional commits viewable in compare view

Updates io.hypersistence:hypersistence-utils-hibernate-63 from 3.13.3 to 3.14.1

Changelog

Sourced from io.hypersistence:hypersistence-utils-hibernate-63's changelog.

Version 3.14.1 - December 17, 2025

Deprecate all ArrayTypes, with the exception of the EnumArrayType #823

Version 3.14.0 - December 16, 2025

The Hibernate SessionFactory cannot be built due to a ClassCastException after upgrading to 3.13.3 #821

Add support for Hibernate 7.2.0.CR4

Commits
  • b28c619 [maven-release-plugin] prepare release hypersistence-utils-parent-3.14.1
  • e0590a0 Update changelog for the 3.14.1 release
  • 8812b18 Deprecate all ArrayTypes, with the exception of the EnumArrayType #823
  • 0895613 Bump version up
  • 1c3b14e [maven-release-plugin] prepare for next development iteration
  • acc9347 [maven-release-plugin] prepare release hypersistence-utils-parent-3.14.0
  • 57d5869 Update changelog for the 3.14.0 release
  • 1200e6a The Hibernate SessionFactory cannot be built due to a ClassCastException afte...
  • e434ecd Upgrade Hibernate version to 7.2.0.Final
  • 76d2011 Add support for Hibernate 7.2.0.CR4
  • Additional commits viewable in compare view

Updates org.codehaus.mojo:exec-maven-plugin from 3.6.2 to 3.6.3

Release notes

Sourced from org.codehaus.mojo:exec-maven-plugin's releases.

3.6.3

📝 Documentation updates

👻 Maintenance

📦 Dependency updates

Commits
  • fe1fa8c [maven-release-plugin] prepare release 3.6.3
  • 5b3feca Bump asm.version from 9.9 to 9.9.1
  • efc7faa Bump org.apache.commons:commons-exec from 1.5.0 to 1.6.0
  • cdaf267 JUnit 5 best practices (#505)
  • f3f5997 Move ExecJavaMojoTest, ExecMojoTest to JUnit 5
  • 03b87b5 Document thread group isolation limitation in java goal (#503)
  • 7a66c3e Add support for JEP 512 for for package-private static main methods with and ...
  • a6d01ef Move to JUnit 5
  • 88d5961 [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Updates software.amazon.awssdk:s3 from 2.40.8 to 2.40.13

Updates org.flywaydb:flyway-core from 11.19.0 to 11.19.1

Release notes

Sourced from org.flywaydb:flyway-core's releases.

Flyway 11.19.1

See release notes here

Commits

Updates org.flywaydb:flyway-mysql from 11.19.0 to 11.19.1

Updates org.mariadb.jdbc:mariadb-java-client from 3.5.6 to 3.5.7

Release notes

Sourced from org.mariadb.jdbc:mariadb-java-client's releases.

MariaDB Connector/Java 3.5.7

3.5.7 (Dec 2025)

Full Changelog

Key Enhancements

  • CONJ-1282 - Added TLS SNI (Server Name Indication) support
  • CONJ-1271 - Added MariaDbDataTruncation exception that includes MariaDB error code and error message

Issues Resolved

  • CONJ-1291 - Fixed ConnectionPoolDataSource incompatibility and connection leaks due to internal ConnectionEventListener in MariaDB Connector/J 3.5.x
  • CONJ-1286 - Fixed MariaDbPoolPinnedConnection thread-safety issue
  • CONJ-1283 - Fixed rewriteBatchedStatements introduced in 3.5.6 bug when having parentesis after VALUES parts
  • CONJ-1287 - Fixed authentication plugin multi-exchange prefix (0x01) handling introduced in MDEV-37554
  • CONJ-1290 - Fixed NullPointerException in MultiPrimaryReplicaClient
  • CONJ-1295 - Fixed MariaDbClob compilation with JDK 26+
Changelog

Sourced from org.mariadb.jdbc:mariadb-java-client's changelog.

3.5.7 (Dec 2025)

Full Changelog

Key Enhancements

  • CONJ-1282 - Added TLS SNI (Server Name Indication) support
  • CONJ-1271 - Added MariaDbDataTruncation exception that includes MariaDB error code and error message

Issues Resolved

  • CONJ-1291 - Fixed ConnectionPoolDataSource incompatibility and connection leaks due to internal ConnectionEventListener in MariaDB Connector/J 3.5.x
  • CONJ-1286 - Fixed MariaDbPoolPinnedConnection thread-safety issue
  • CONJ-1283 - Fixed rewriteBatchedStatements introduced in 3.5.6 bug when having parentesis after VALUES parts
  • CONJ-1287 - Fixed authentication plugin multi-exchange prefix (0x01) handling introduced in MDEV-37554
  • CONJ-1290 - Fixed NullPointerException in MultiPrimaryReplicaClient
  • CONJ-1295 - Fixed MariaDbClob compilation with JDK 26+
Commits
  • 46c3a4d [CONJ-1296] ResultSetMetaData.getSchemas() column labels might be returned in...
  • 6d9179b bump 3.5.7 version
  • 5c9b41c [CONJ-1271] Add MariaDbDataTruncation class to properly handle data truncati...
  • 1b48cd0 [CONJ-1283] fix INSERT rewrite detection when VALUES clause has trailing pare...
  • 6c0fb70 Merge branch 'fork/necposs/fix/conj-1286' into develop
  • efd77b1 [CONJ-1290] fix syncNewState to use previous client state when switching betw...
  • 0559d02 [CONJ-1291] PooledConnection behavior clarification.
  • 995eecd [CONJ-1293] add unit test
  • 52e5e20 [misc] micro optimization
  • ae3704d [misc] code style correction: fix IPUtility
  • Additional commits viewable in compare view

Updates org.apache.httpcomponents.client5:httpclient5 from 5.5.1 to 5.6

Changelog

Sourced from org.apache.httpcomponents.client5:httpclient5's changelog.

Release 5.6 ALPHA1

This is the first ALPHA release in the 5.6 release series. It adds several features such as transport content decompression and content compression for the async transport, support for Unix sockets, experimental support for SCRAM-SHA-256 authentication scheme, and Micrometer/OTel observations & metrics.

Commons Compress, Brotli codec, and ZStd codec are optional dependencies and get wired into the execution pipeline only if present on the classpath.

Notable changes and features included in the 5.6 series:

  • Unix domain socket support.

  • Support for pluggable content codecs via Commons-Compress in the classic transport. (optional).

  • Support for transparent content decompression and content compression with deflate, gzip, zstd (optional), and brotli (optional) codecs in the async transport.

  • Micrometer/OTel observations & metrics (optinal).

  • Off-lock connection disposal by the classic pooling connection manager. Experimental.

  • SCRAM-SHA-256 authentication scheme (RFC 7804). Experimental.

  • Request Priority support (RFC 9218). Experimental.

Compatibility notes:

  • As of this version, HttpClient uses BUILTIN HostnameVerificationPolicy by default, delegating host verification to JSSE security manager. One must explicitly configure the TLS strategy to continue using the hostname verifier shipped with HttpClient.

  • Five-second TCP keep-alive is now enabled by default.

Change Log

  • RequestConfig: Un-deprecate #setProxy. Contributed by Ryan Schmitt

  • Stale connection check support in PoolingAsyncClientConnectionManager. Contributed by Ryan Schmitt

  • ConnectionConfig: #idleTimeout support. Contributed by Ryan Schmitt

... (truncated)

Commits
  • decd193 HttpClient 5.6 release
  • 11ea8e5 Updated release notes for HttpClient 5.6 release
  • 77fa61a Limit the length of content codec list that can be processed automatically
  • 81b7971 Upgraded HttpCore to version 5.4
  • 2c7fe0f Add OFFLOCK pool concurrency policy backed by RouteSegmentedConnPool (#765)
  • 1f4dea7 Fixed Micrometer and OpenTelemetry dependency declaration
  • d2fadd2 Tag TLS handshake timeout tests with slow
  • e52e466 TestTlsHandshakeTimeout: Disable assertions on Java 8
  • 77f52f0 Upgraded HttpClient version to 5.6-alpha2-SNAPSHOT
  • 48e0f25 HttpClient 5.6-alpha1 release
  • Additional commits viewable in compare view

Updates io.hypersistence:hypersistence-utils-hibernate-63 from 3.13.3 to 3.14.1

Changelog

Sourced from io.hypersistence:hypersistence-utils-hibernate-63's changelog.

Version 3.14.1 - December 17, 2025

Deprecate all ArrayTypes, with the exception of the EnumArrayType #823

Version 3.14.0 - December 16, 2025

The Hibernate SessionFactory cannot be built due to a ClassCastException after upgrading to 3.13.3 #821

Add support for Hibernate 7.2.0.CR4

Commits
  • b28c619 [maven-release-plugin] prepare release hypersistence-utils-parent-3.14.1
  • e0590a0 Update changelog for the 3.14.1 release
  • 8812b18 Deprecate all ArrayTypes, with the exception of the EnumArrayType #823
  • 0895613 Bump version up
  • 1c3b14e [maven-release-plugin] prepare for next development iteration
  • acc9347 [maven-release-plugin] prepare release hypersistence-utils-parent-3.14.0
  • 57d5869 Update changelog for the 3.14.0 release
  • 1200e6a The Hibernate SessionFactory cannot be built due to a ClassCastException afte...
  • e434ecd Upgrade Hibernate version to 7.2.0.Final
  • 76d2011 Add support for Hibernate 7.2.0.CR4
  • Additional commits viewable in compare view

Updates software.amazon.awssdk:s3 from 2.40.8 to 2.40.13

Updates org.flywaydb:flyway-core from 11.19.0 to 11.19.1

Release notes

Sourced from org.flywaydb:flyway-core's releases.

Flyway 11.19.1

See release notes here

Commits

Updates org.flywaydb:flyway-mysql from 11.19.0 to 11.19.1

Updates org.mariadb.jdbc:mariadb-java-client from 3.5.6 to 3.5.7

Release notes

Sourced from org.mariadb.jdbc:mariadb-java-client's releases.

MariaDB Connector/Java 3.5.7

3.5.7 (Dec 2025)

Full Changelog

Key Enhancements

  • CONJ-1282 - Added TLS SNI (Server Name Indication) support
  • CONJ-1271 - Added MariaDbDataTruncation exception that includes MariaDB error code and error message

Issues Resolved

  • CONJ-1291 - Fixed ConnectionPoolDataSource incompatibility and connection leaks due to internal ConnectionEventListener in MariaDB Connector/J 3.5.x
  • CONJ-1286 - Fixed MariaDbPoolPinnedConnection thread-safety issue
  • CONJ-1283 - Fixed rewriteBatchedStatements introduced in 3.5.6 bug when having parentesis after VALUES parts
  • CONJ-1287 - Fixed authentication plugin multi-exchange prefix (0x01) handling introduced in MDEV-37554
  • CONJ-1290 - Fixed NullPointerException in MultiPrimaryReplicaClient
  • CONJ-1295 - Fixed MariaDbClob compilation with JDK 26+
Changelog

Sourced from org.mariadb.jdbc:mariadb-java-client's changelog.

3.5.7 (Dec 2025)

Full Changelog

Key Enhancements

  • CONJ-1282 - Added TLS SNI (Server Name Indication) support
  • CONJ-1271 - Added MariaDbDataTruncation exception that includes MariaDB error code and error message

Issues Resolved

  • CONJ-1291 - Fixed ConnectionPoolDataSource incompatibility and connection leaks due to internal ConnectionEventListener in MariaDB Connector/J 3.5.x
  • CONJ-1286 - Fixed MariaDbPoolPinnedConnection thread-safety issue
  • CONJ-1283 - Fixed rewriteBatchedStatements introduced in 3.5.6 bug when having parentesis after VALUES parts
  • CONJ-1287 - Fixed authentication plugin multi-exchange prefix (0x01) handling introduced in MDEV-37554
  • CONJ-1290 - Fixed NullPointerException in MultiPrimaryReplicaClient
  • CONJ-1295 - Fixed MariaDbClob compilation with JDK 26+
Commits
  • 46c3a4d [CONJ-1296] ResultSetMetaData.getSchemas() column labels might be returned in...
  • 6d9179b bump 3.5.7 version
  • 5c9b41c [CONJ-1271] Add MariaDbDataTruncation class to properly handle data truncati...
  • 1b48cd0 [CONJ-1283] fix INSERT rewrite detection when VALUES clause has trailing pare...
  • 6c0fb70 Merge branch 'fork/necposs/fix/conj-1286' into develop
  • efd77b1 [CONJ-1290] fix syncNewState to use previous client state when switching betw...
  • 0559d02 [CONJ-1291] PooledConnection behavior clarification.
  • 995eecd [CONJ-1293] add unit test
  • 52e5e20 [misc] micro optimization
  • ae3704d [misc] code style correction: fix IPUtility
  • Additional commits viewable in compare view

Updates org.apache.httpcomponents.client5:httpclient5 from 5.5.1 to 5.6

Changelog

Sourced from org.apache.httpcomponents.client5:httpclient5's changelog.

Release 5.6 ALPHA1

This is the first ALPHA release in the 5.6 release series. It adds several features such as transport content decompression and content compression for the async transport, support for Unix sockets, experimental support for SCRAM-SHA-256 authentication scheme, and Micrometer/OTel observations & metrics.

Commons Compress, Brotli codec, and ZStd codec are optional dependencies and get wired into the execution pipeline only if present on the classpath.

Notable changes and features included in the 5.6 series:

  • Unix domain socket support.

  • Support for pluggable content codecs via Commons-Compress in the classic transport. (optional).

  • Support for transparent content decompression and content compression with deflate, gzip, zstd (optional), and brotli (optional) codecs in the async transport.

  • Micrometer/OTel observations & metrics (optinal).

  • Off-lock connection disposal by the classic pooling connection manager. Experimental.

  • SCRAM-SHA-256 authentication scheme (RFC 7804). Experimental.

  • Request Priority support (RFC 9218). Experimental.

Compatibility notes:

  • As of this version, HttpClient uses BUILTIN HostnameVerificationPolicy by default, delegating host verification to JSSE security manager. One must explicitly configure the TLS strategy to continue using the hostname verifier shipped with HttpClient.

  • Five-second TCP keep-alive is now enabled by default.

Change Log

  • RequestConfig: Un-deprecate #setProxy. Contributed by Ryan Schmitt

  • Stale connection check support in PoolingAsyncClientConnectionManager. Contributed by Ryan Schmitt

  • ConnectionConfig: #idleTimeout support. Contributed by Ryan Schmitt

... (truncated)

Commits
  • decd193 HttpClient 5.6 release
  • 11ea8e5 Updated release notes for HttpClient 5.6 release
  • 77fa61a Limit the length of content codec list that can be processed automatically
  • 81b7971 Upgraded HttpCore to version 5.4
  • 2c7fe0f Add OFFLOCK pool concurrency policy backed by RouteSegmentedConnPool (#765)
  • 1f4dea7 Fixed Micrometer and OpenTelemetry dependency declaration
  • d2fadd2 Tag TLS handshake timeout tests with slow
  • e52e466 TestTlsHandshakeTimeout: Disable assertions on Java 8
  • 77f52f0 Upgraded HttpClient version to 5.6-alpha2-SNAPSHOT
  • 48e0f25 HttpClient 5.6-alpha1 release
  • Additional commits viewable in compare view

Updates io.hypersistence:hypersistence-utils-hibernate-63 from 3.13.3 to 3.14.1

Changelog

Sourced from io.hypersistence:hypersistence-utils-hibernate-63's changelog.

Version 3.14.1 - December 17, 2025

Deprecate all ArrayTypes, with the exception of the EnumArrayType #823

Version 3.14.0 - December 16, 2025

The Hibernate SessionFactory cannot be built due to a ClassCastException after upgrading to 3.13.3 #821

Add support for Hibernate 7.2.0.CR4

Commits
  • b28c619 [maven-release-plugin] prepare release hypersistence-utils-parent-3.14.1
  • e0590a0 Update changelog for the 3.14.1 release
  • 8812b18 Deprecate all ArrayTypes, with the exception of the EnumArrayType #823
  • 0895613 Bump version up
  • 1c3b14e [maven-release-plugin] prepare for next development iteration
  • acc9347 [maven-release-plugin] prepare release hypersistence-utils-parent-3.14.0
  • 57d5869 Update changelog for the 3.14.0 release
  • 1200e6a The Hibernate SessionFactory cannot be built due to a ClassCastException afte...
  • e434ecd Upgrade Hibernate version to 7.2.0.Final
  • 76d2011 Add support for Hibernate 7.2.0.CR4
  • Additional commits viewable in compare view

Updates software.amazon.awssdk:s3 from 2.40.8 to 2.40.13

Updates org.flywaydb:flyway-core from 11.19.0 to 11.19.1

Release notes

Sourced from org.flywaydb:flyway-core's releases.

Flyway 11.19.1

See release notes here

Commits

Updates org.flywaydb:flyway-mysql from 11.19.0 to 11.19.1

Updates org.mariadb.jdbc:mariadb-java-client from 3.5.6 to 3.5.7

Release notes

Sourced from org.mariadb.jdbc:mariadb-java-client's releases.

MariaDB Connector/Java 3.5.7

3.5.7 (Dec 2025)

Full Changelog

Key Enhancements

  • CONJ-1282 - Added TLS SNI (Server Name Indication) support
  • CONJ-1271 - Added MariaDbDataTruncation exception that includes MariaDB error code and error message

Issues Resolved

  • CONJ-1291 - Fixed ConnectionPoolDataSource incompatibility and connection leaks due to internal ConnectionEventListener in MariaDB Connector/J 3.5.x
  • CONJ-1286 - Fixed MariaDbPoolPinnedConnection thread-safety issue
  • CONJ-1283 - Fixed rewriteBatchedStatements introduced in 3.5.6 bug when having parentesis after VALUES parts
  • CONJ-1287 - Fixed authentication plugin multi-exchange prefix (0x01) handling introduced in MDEV-37554
  • CONJ-1290 - Fixed NullPointerException in MultiPrimaryReplicaClient
  • CONJ-1295 - Fixed MariaDbClob compilation with JDK 26+
Changelog

Sourced from org.mariadb.jdbc:mariadb-java-client's changelog.

3.5.7 (Dec 2025)

Full Changelog

Key Enhancements

  • CONJ-1282 - Added TLS SNI (Server Name Indication) support
  • CONJ-1271 - Added MariaDbDataTruncation exception that includes MariaDB error code and error message

Issues Resolved

  • CONJ-1291 - Fixed ConnectionPoolDataSource incompatibility and connection leaks due to internal ConnectionEventListener in MariaDB Connector/J 3.5.x
  • CONJ-1286 - Fixed MariaDbPoolPinnedConnection thread-safety issue
  • CONJ-1283 - Fixed rewriteBatchedStatements introduced in 3.5.6 bug when having parentesis after VALUES parts
  • CONJ-1287 - Fixed authentication plugin multi-exchange prefix (0x01) handling introduced in MDEV-37554
  • CONJ-1290 - Fixed NullPointerException in MultiPrimaryReplicaClient
  • CONJ-1295 - Fixed MariaDbClob compilation with JDK 26+
Commits
  • 46c3a4d [CONJ-1296] ResultSetMetaData.getSchemas() column labels might be returned in...
  • 6d9179b bump 3.5.7 version
  • 5c9b41c [CONJ-1271] Add MariaDbDataTruncation class to properly handle data truncati...
  • 1b48cd0 [CONJ-1283] fix INSERT rewrite detection when VALUES clause has trailing pare...
  • 6c0fb70 Merge branch 'fork/necposs/fix/conj-1286' into develop
  • efd77b1 [CONJ-1290] fix syncNewState to use previous client state when switching betw...
  • 0559d02 [CONJ-1291] PooledConnection behavior clarification.
  • 995eecd [CONJ-1293] add unit test
  • 52e5e20 [misc] micro optimization
  • ae3704d [misc] code style correction: fix IPUtility
  • Additional commits viewable in compare view

Updates org.apache.httpcomponents.client5:httpclient5 from 5.5.1 to 5.6

Changelog

Sourced from org.apache.httpcomponents.client5:httpclient5's changelog.

Release 5.6 ALPHA1

This is the first ALPHA release in the 5.6 release series. It adds several features such as transport content decompression and content compression for the async transport, support for Unix sockets, experimental support for SCRAM-SHA-256 authentication scheme, and Micrometer/OTel observations & metrics.

Commons Compress, Brotli codec, and ZStd codec are optional dependencies and get wired into the execution pipeline only if present on the classpath.

Notable changes and features included in the 5.6 series:

  • Unix domain socket support.

  • Support for pluggable content codecs via Commons-Compress in the classic transport. (optional).

  • Support for transparent content decompression and content compression with deflate, gzip, zstd (optional), and brotli (optional) codecs in the async transport.

  • Micrometer/OTel observations & metrics (optinal).

  • Off-lock connection disposal by the classic pooling connection manager. Experimental.

  • SCRAM-SHA-256 authentication scheme (RFC 7804). Experimental.

  • Request Priority support (RFC 9218). Experimental.

Compatibility notes:

  • As of this version, HttpClient uses BUILTIN HostnameVerificationPolicy by default, delegating host verification to JSSE security manager. One must explicitly configure the TLS strategy to continue using the hostname verifier shipped with HttpClient.

  • Five-second TCP keep-alive is now enabled by default.

Change Log

  • RequestConfig: Un-deprecate #setProxy. Contributed by Ryan Schmitt

  • Stale connection check support in PoolingAsyncClientConnectionManager. Contributed by Ryan Schmitt

  • ConnectionConfig: #idleTimeout support. Contributed by Ryan Schmitt

... (truncated)

Commits
  • decd193 HttpClient 5.6 release
  • 11ea8e5 Updated release notes for HttpClient 5.6 release
  • 77fa61a Limit the length of content codec list that can be processed automatically
  • 81b7971 Upgraded HttpCore to version 5.4
  • 2c7fe0f Add OFFLOCK pool concurrency policy backed by RouteSegmentedConnPool (#765)
  • 1f4dea7 Fixed Micrometer and OpenTelemetry dependency declaration
  • d2fadd2 Tag TLS handshake timeout tests with slow
  • e52e466 TestTlsHandshakeTimeout: Disable assertions on Java 8
  • 77f52f0 Upgraded HttpClient version to 5.6-alpha2-SNAPSHOT
  • 48e0f25 HttpClient 5.6-alpha1 release
  • Additional commits viewable in compare view

Updates io.hypersistence:hypersistence-utils-hibernate-63 from 3.13.3 to 3.14.1

Changelog

Sourced from io.hypersistence:hypersistence-utils-hibernate-63's changelog.

Version 3.14.1 - December 17, 2025

Deprecate all ArrayTypes, with the exception of the EnumArrayType #823

Version 3.14.0 - December 16, 2025

The Hibernate SessionFactory cannot be built due to a ClassCastException after upgrading to 3.13.3 #821

Add support for Hibernate 7.2.0.CR4

Commits
  • b28c619 [maven-release-plugin] prepare release hypersistence-utils-parent-3.14.1
  • e0590a0 Update changelog for the 3.14.1 release
  • 8812b18 Deprecate all ArrayTypes, with the exception of the EnumArrayType #823
  • 0895613 Bump version up
  • 1c3b14e [maven-release-plugin] prepare for next development iteration
  • acc9347 [maven-release-plugin] prepare release hypersistence-utils-parent-3.14.0
  • 57d5869 Update changelog for the 3.14.0 release
  • 1200e6a The Hibernate SessionFactory cannot be built due to a ClassCastException afte...
  • e434ecd Upgrade Hibernate version to 7.2.0.Final
  • 76d2011 Add support for Hibernate 7.2.0.CR4
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Dec 22, 2025
Bumps the backend-prod group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| software.amazon.awssdk:s3 | `2.40.8` | `2.40.13` |
| [org.flywaydb:flyway-core](https://github.com/flyway/flyway) | `11.19.0` | `11.19.1` |
| org.flywaydb:flyway-mysql | `11.19.0` | `11.19.1` |
| [org.mariadb.jdbc:mariadb-java-client](https://github.com/mariadb-corporation/mariadb-connector-j) | `3.5.6` | `3.5.7` |
| [org.apache.httpcomponents.client5:httpclient5](https://github.com/apache/httpcomponents-client) | `5.5.1` | `5.6` |
| [io.hypersistence:hypersistence-utils-hibernate-63](https://github.com/vladmihalcea/hypersistence-utils) | `3.13.3` | `3.14.1` |
| [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) | `3.6.2` | `3.6.3` |

Bumps the backend-prod group with 6 updates in the /server directory:

| Package | From | To |
| --- | --- | --- |
| software.amazon.awssdk:s3 | `2.40.8` | `2.40.13` |
| [org.flywaydb:flyway-core](https://github.com/flyway/flyway) | `11.19.0` | `11.19.1` |
| org.flywaydb:flyway-mysql | `11.19.0` | `11.19.1` |
| [org.mariadb.jdbc:mariadb-java-client](https://github.com/mariadb-corporation/mariadb-connector-j) | `3.5.6` | `3.5.7` |
| [org.apache.httpcomponents.client5:httpclient5](https://github.com/apache/httpcomponents-client) | `5.5.1` | `5.6` |
| [io.hypersistence:hypersistence-utils-hibernate-63](https://github.com/vladmihalcea/hypersistence-utils) | `3.13.3` | `3.14.1` |



Updates `software.amazon.awssdk:s3` from 2.40.8 to 2.40.13

Updates `org.flywaydb:flyway-core` from 11.19.0 to 11.19.1
- [Release notes](https://github.com/flyway/flyway/releases)
- [Commits](flyway/flyway@flyway-11.19.0...flyway-11.19.1)

Updates `org.flywaydb:flyway-mysql` from 11.19.0 to 11.19.1

Updates `org.mariadb.jdbc:mariadb-java-client` from 3.5.6 to 3.5.7
- [Release notes](https://github.com/mariadb-corporation/mariadb-connector-j/releases)
- [Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/blob/main/CHANGELOG.md)
- [Commits](mariadb-corporation/mariadb-connector-j@3.5.6...3.5.7)

Updates `org.apache.httpcomponents.client5:httpclient5` from 5.5.1 to 5.6
- [Changelog](https://github.com/apache/httpcomponents-client/blob/master/RELEASE_NOTES.txt)
- [Commits](apache/httpcomponents-client@rel/v5.5.1...rel/v5.6)

Updates `io.hypersistence:hypersistence-utils-hibernate-63` from 3.13.3 to 3.14.1
- [Changelog](https://github.com/vladmihalcea/hypersistence-utils/blob/master/changelog.txt)
- [Commits](vladmihalcea/hypersistence-utils@hypersistence-utils-parent-3.13.3...hypersistence-utils-parent-3.14.1)

Updates `org.codehaus.mojo:exec-maven-plugin` from 3.6.2 to 3.6.3
- [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases)
- [Commits](mojohaus/exec-maven-plugin@3.6.2...3.6.3)

Updates `software.amazon.awssdk:s3` from 2.40.8 to 2.40.13

Updates `org.flywaydb:flyway-core` from 11.19.0 to 11.19.1
- [Release notes](https://github.com/flyway/flyway/releases)
- [Commits](flyway/flyway@flyway-11.19.0...flyway-11.19.1)

Updates `org.flywaydb:flyway-mysql` from 11.19.0 to 11.19.1

Updates `org.mariadb.jdbc:mariadb-java-client` from 3.5.6 to 3.5.7
- [Release notes](https://github.com/mariadb-corporation/mariadb-connector-j/releases)
- [Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/blob/main/CHANGELOG.md)
- [Commits](mariadb-corporation/mariadb-connector-j@3.5.6...3.5.7)

Updates `org.apache.httpcomponents.client5:httpclient5` from 5.5.1 to 5.6
- [Changelog](https://github.com/apache/httpcomponents-client/blob/master/RELEASE_NOTES.txt)
- [Commits](apache/httpcomponents-client@rel/v5.5.1...rel/v5.6)

Updates `io.hypersistence:hypersistence-utils-hibernate-63` from 3.13.3 to 3.14.1
- [Changelog](https://github.com/vladmihalcea/hypersistence-utils/blob/master/changelog.txt)
- [Commits](vladmihalcea/hypersistence-utils@hypersistence-utils-parent-3.13.3...hypersistence-utils-parent-3.14.1)

Updates `software.amazon.awssdk:s3` from 2.40.8 to 2.40.13

Updates `org.flywaydb:flyway-core` from 11.19.0 to 11.19.1
- [Release notes](https://github.com/flyway/flyway/releases)
- [Commits](flyway/flyway@flyway-11.19.0...flyway-11.19.1)

Updates `org.flywaydb:flyway-mysql` from 11.19.0 to 11.19.1

Updates `org.mariadb.jdbc:mariadb-java-client` from 3.5.6 to 3.5.7
- [Release notes](https://github.com/mariadb-corporation/mariadb-connector-j/releases)
- [Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/blob/main/CHANGELOG.md)
- [Commits](mariadb-corporation/mariadb-connector-j@3.5.6...3.5.7)

Updates `org.apache.httpcomponents.client5:httpclient5` from 5.5.1 to 5.6
- [Changelog](https://github.com/apache/httpcomponents-client/blob/master/RELEASE_NOTES.txt)
- [Commits](apache/httpcomponents-client@rel/v5.5.1...rel/v5.6)

Updates `io.hypersistence:hypersistence-utils-hibernate-63` from 3.13.3 to 3.14.1
- [Changelog](https://github.com/vladmihalcea/hypersistence-utils/blob/master/changelog.txt)
- [Commits](vladmihalcea/hypersistence-utils@hypersistence-utils-parent-3.13.3...hypersistence-utils-parent-3.14.1)

Updates `software.amazon.awssdk:s3` from 2.40.8 to 2.40.13

Updates `org.flywaydb:flyway-core` from 11.19.0 to 11.19.1
- [Release notes](https://github.com/flyway/flyway/releases)
- [Commits](flyway/flyway@flyway-11.19.0...flyway-11.19.1)

Updates `org.flywaydb:flyway-mysql` from 11.19.0 to 11.19.1

Updates `org.mariadb.jdbc:mariadb-java-client` from 3.5.6 to 3.5.7
- [Release notes](https://github.com/mariadb-corporation/mariadb-connector-j/releases)
- [Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/blob/main/CHANGELOG.md)
- [Commits](mariadb-corporation/mariadb-connector-j@3.5.6...3.5.7)

Updates `org.apache.httpcomponents.client5:httpclient5` from 5.5.1 to 5.6
- [Changelog](https://github.com/apache/httpcomponents-client/blob/master/RELEASE_NOTES.txt)
- [Commits](apache/httpcomponents-client@rel/v5.5.1...rel/v5.6)

Updates `io.hypersistence:hypersistence-utils-hibernate-63` from 3.13.3 to 3.14.1
- [Changelog](https://github.com/vladmihalcea/hypersistence-utils/blob/master/changelog.txt)
- [Commits](vladmihalcea/hypersistence-utils@hypersistence-utils-parent-3.13.3...hypersistence-utils-parent-3.14.1)

---
updated-dependencies:
- dependency-name: software.amazon.awssdk:s3
  dependency-version: 2.40.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.flywaydb:flyway-core
  dependency-version: 11.19.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.flywaydb:flyway-mysql
  dependency-version: 11.19.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.mariadb.jdbc:mariadb-java-client
  dependency-version: 3.5.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.apache.httpcomponents.client5:httpclient5
  dependency-version: '5.6'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-prod
- dependency-name: io.hypersistence:hypersistence-utils-hibernate-63
  dependency-version: 3.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-prod
- dependency-name: org.codehaus.mojo:exec-maven-plugin
  dependency-version: 3.6.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: software.amazon.awssdk:s3
  dependency-version: 2.40.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.flywaydb:flyway-core
  dependency-version: 11.19.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.flywaydb:flyway-mysql
  dependency-version: 11.19.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.mariadb.jdbc:mariadb-java-client
  dependency-version: 3.5.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.apache.httpcomponents.client5:httpclient5
  dependency-version: '5.6'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-prod
- dependency-name: io.hypersistence:hypersistence-utils-hibernate-63
  dependency-version: 3.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-prod
- dependency-name: software.amazon.awssdk:s3
  dependency-version: 2.40.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.flywaydb:flyway-core
  dependency-version: 11.19.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.flywaydb:flyway-mysql
  dependency-version: 11.19.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.mariadb.jdbc:mariadb-java-client
  dependency-version: 3.5.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.apache.httpcomponents.client5:httpclient5
  dependency-version: '5.6'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-prod
- dependency-name: io.hypersistence:hypersistence-utils-hibernate-63
  dependency-version: 3.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-prod
- dependency-name: software.amazon.awssdk:s3
  dependency-version: 2.40.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.flywaydb:flyway-core
  dependency-version: 11.19.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.flywaydb:flyway-mysql
  dependency-version: 11.19.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.mariadb.jdbc:mariadb-java-client
  dependency-version: 3.5.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend-prod
- dependency-name: org.apache.httpcomponents.client5:httpclient5
  dependency-version: '5.6'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-prod
- dependency-name: io.hypersistence:hypersistence-utils-hibernate-63
  dependency-version: 3.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend-prod
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/maven/backend-prod-b81a2caf56 branch from 650078f to f9dbcaf Compare December 24, 2025 11:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant