Bumps the testcontainers group with 2 updates: org.mariadb.jdbc:mariadb-java-client and org.postgresql:postgresql.
Updates org.mariadb.jdbc:mariadb-java-client
from 3.5.5 to 3.5.6
Release notes
Sourced from org.mariadb.jdbc:mariadb-java-client's releases.
MariaDB Connector/Java 3.5.6
3.5.6 (Sep 2025)
Full Changelog
Key Enhancements
- CONJ-1238 - rewriteBatchStatements implementation
- CONJ-1274 - server prepared statement client failover to client prepared statement
Issues Resolved
- CONJ-1278 - prepared statement caching enablement correction, same than 2.x
- CONJ-1279 - metadata table name addition for 12.1 after MDEV-28933
- CONJ-1280 - permit having multiple command with initSql option
- CONJ-1276 - Connection#isValid(int timeout) does not obey the passed in timeout if the network is down.
Changelog
Sourced from org.mariadb.jdbc:mariadb-java-client's changelog.
3.5.6 (Sep 2025)
Full Changelog
Key Enhancements
- CONJ-1238 - rewriteBatchStatements implementation
- CONJ-1274 - server prepared statement client failover to client prepared statement
Issues Resolved
- CONJ-1278 - prepared statement caching enablement correction, same than 2.x
- CONJ-1279 - metadata table name addition for 12.1 after MDEV-28933
- CONJ-1280 - permit having multiple command with initSql option
- CONJ-1276 - Connection#isValid(int timeout) does not obey the passed in timeout if the network is down.
Commits
0bffb46
Merge branch 'develop'
8e5f44d
bump 3.5.6
d870e13
[CONJ-1274] have server prepared statement client failover
b43a845
[misc] failover during a transaction must only throw one error
13f120e
[misc] correct github action to test main branch
b3701fb
[misc] test improvement
7903a4b
[misc] updating CI links to mariadb-corporation account
bcb0981
[misc] updating CI links to mariadb-corporation account
79609b8
[CONJ-1276] Connection#isValid(int timeout) does not obey the passed in timeo...
fac4146
[CONJ-1272] Tests fail with early access JVM builds
- Additional commits viewable in compare view
Updates org.postgresql:postgresql
from 42.7.7 to 42.7.8
Release notes
Sourced from org.postgresql:postgresql's releases.
v42.7.8
Notable changes:
- Releases are signed with a new PGP key which is generated at GitHub Actions and stored only there
@vlsi
(#3701)
Changes
- fix: Update release plugin config to use .set(...) for props and inject nexus secrets via props
@sehrope
(#3802)
- update version to 42.7.8
@davecramer
(#3801)
- change logs for version 42.7.8
@davecramer
(#3797)
- Fix getNotifications() documentation
@pdewacht
(#3800)
- fix(deps): update dependency om.ongres.scram:scram-client to 3.2
@jorsol
(#3799)
- Add configurable boolean-to-numeric conversion for ResultSet getters
@vwassan
(#3796)
- Update CONTRIBUTING.md
@davecramer
(#3794)
- perf: remove QUERY_ONESHOT flag when calling getMetaData
@ShenFeng312
(#3783)
- test: add bench for batch insert via unnest with arrays
@lantalex
(#3782)
- fix: Change "PST" timezone in TimestampTest to "Pacific Standard Time"
@simon-greatrix
(#3774)
- Use
BufferedInputStream
with FileInputStream
@jgardn3r
(#3750)
- Fix #3747: Incorrect class comparison in PGXmlFactoryFactory validation
@eitch
(#3748)
- fix: traverse the current dimension to get the correct pos in PgArray#calcRemainingDataLength
@sly461
(#3746)
- test: add channelBinding to SslTest
@vlsi
(#3665)
- fix: remove excessive ReentrantLock.lock usages
@vlsi
(#3703)
- test: add ossf-scorecard security scanning
@vlsi
(#3695)
- fix indentation to let CI pass
@mohitsatr
(#3682)
- test: extract pgjdbc/testFixtures to testkit project
@vlsi
(#3666)
- fix: make sure getImportedExportedKeys returns columns in consistent order
@vlsi
(#3663)
- feat: use PreparedStatement for DatabaseMetaData.getCrossReference, getImportedKeys, getExportedKeys
@vlsi
(#3641)
- Add "SELF_REFERENCING_COL_NAME" field to getTables' ResultSetMetaData to fix NullPointerException
@SophiahHo
(#3660)
🐛 Bug Fixes
- fix: avoid IllegalStateException: Timer already cancelled when StatementCancelTimerTask.run throws a runtime error
@vlsi
(#3778)
- fix: avoid NullPointerException when cancelling a query if cancel key is not known yet
@vlsi
(#3780)
- fix: unable to open replication connection to servers < 12
@vlsi
(#3678)
🧰 Maintenance
- chore: fix published project name
@vlsi
(#3809)
- chore: update publish to Central Portal task name after bumping nmcp
@vlsi
(#3808)
- fix(deps): update com.gradleup.nmcp to 1.1.0
@vlsi
(#3807)
- Revert "fix: Update release plugin config to use .set(...) for props and inject nexus creds via gradle props"
@vlsi
(#3803)
- chore: group com.gradleup.nmcp version updates
@vlsi
(#3805)
- chore: use bump org.apache.bcel:bcel test dependency in testCompileClasspath as well
@vlsi
(#3775)
- Fix typo in PGReplicationStream.java
@atorik
(#3758)
- chore: remove JDK versions from the key workflow names
@vlsi
(#3759)
- chore: add GitHub Actions workflow for generating release PGP key
@vlsi
(#3701)
- chore: replace StandardCharsets with Charsets to simplify code
@vlsi
(#3751)
- chore: migrate publish workflow to Central Portal publishing via com.gradleup.nmcp
@vlsi
(#3686)
- chore: adjust the default branch name for ossf scorecard scan
@vlsi
(#3697)
- chore: add top-level read-only permissions for GitHub Actions when missing
@vlsi
(#3696)
- chore: use config:best-practices preset for Renovate
@vlsi
(#3687)
... (truncated)
Changelog
Sourced from org.postgresql:postgresql's changelog.
[42.7.8] (2025年09月18日)
Added
Changed
- perf: remove QUERY_ONESHOT flag when calling getMetaData [PR #3783](pgjdbc/pgjdbc#3783)
- perf: use
BufferedInputStream
with FileInputStream
[PR #3750](pgjdbc/pgjdbc#3750)
- perf: enable server-prepared statements for DatabaseMetaData
Fixed
- fix: avoid NullPointerException when cancelling a query if cancel key is not known yet
- fix: Change "PST" timezone in TimestampTest to "Pacific Standard Time" [PR #3774](pgjdbc/pgjdbc#3774)
- fix: traverse the current dimension to get the correct pos in PgArray#calcRemainingDataLength [PR #3746](pgjdbc/pgjdbc#3746)
- fix: make sure getImportedExportedKeys returns columns in consistent order
- fix: Add "SELF_REFERENCING_COL_NAME" field to getTables' ResultSetMetaData to fix NullPointerException [PR #3660](pgjdbc/pgjdbc#3660)
- fix: unable to open replication connection to servers < 12
- fix: avoid closing statement caused by driver's internal ResultSet#close()
- fix: return empty metadata for empty catalog names as it was before
- fix: Incorrect class comparison in PGXmlFactoryFactory validation
Commits
9a5492d
chore: fix published project name
ca064f8
chore: update publish to Central Portal task name after bumping nmcp
3d97bb8
fix: avoid IllegalStateException: Timer already cancelled when StatementCanc...
faa7dfc
test: move BaseTest4 to testkit module
dbf2847
fix(deps): update com.gradleup.nmcp to 1.1.0
9245e26
Revert "fix: Update release plugin config to use .set(...) for props and inje...
8e833c3
chore: group com.gradleup.nmcp version updates
ec5a088
fix: Update release plugin config to use .set(...) for props and inject nexus...
c03db58
update version to 42.7.8 (#3801)
50ff169
change logs for version 42.7.8 (#3797)
- 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
Bumps the testcontainers group with 2 updates: org.mariadb.jdbc:mariadb-java-client and org.postgresql:postgresql.
Updates
org.mariadb.jdbc:mariadb-java-client
from 3.5.5 to 3.5.6Release notes
Sourced from org.mariadb.jdbc:mariadb-java-client's releases.
Changelog
Sourced from org.mariadb.jdbc:mariadb-java-client's changelog.
Commits
0bffb46
Merge branch 'develop'8e5f44d
bump 3.5.6d870e13
[CONJ-1274] have server prepared statement client failoverb43a845
[misc] failover during a transaction must only throw one error13f120e
[misc] correct github action to test main branchb3701fb
[misc] test improvement7903a4b
[misc] updating CI links to mariadb-corporation accountbcb0981
[misc] updating CI links to mariadb-corporation account79609b8
[CONJ-1276] Connection#isValid(int timeout) does not obey the passed in timeo...fac4146
[CONJ-1272] Tests fail with early access JVM buildsUpdates
org.postgresql:postgresql
from 42.7.7 to 42.7.8Release notes
Sourced from org.postgresql:postgresql's releases.
... (truncated)
Changelog
Sourced from org.postgresql:postgresql's changelog.
Commits
9a5492d
chore: fix published project nameca064f8
chore: update publish to Central Portal task name after bumping nmcp3d97bb8
fix: avoid IllegalStateException: Timer already cancelled when StatementCanc...faa7dfc
test: move BaseTest4 to testkit moduledbf2847
fix(deps): update com.gradleup.nmcp to 1.1.09245e26
Revert "fix: Update release plugin config to use .set(...) for props and inje...8e833c3
chore: group com.gradleup.nmcp version updatesec5a088
fix: Update release plugin config to use .set(...) for props and inject nexus...c03db58
update version to 42.7.8 (#3801)50ff169
change logs for version 42.7.8 (#3797)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