Skip to content

Bump the dev-dependencies group with 6 updates#21

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/gradle/dev-dependencies-abd5fd5db0
Jun 2, 2025
Merged

Bump the dev-dependencies group with 6 updates#21
github-actions[bot] merged 1 commit intomainfrom
dependabot/gradle/dev-dependencies-abd5fd5db0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 2, 2025

Bumps the dev-dependencies group with 6 updates:

Package From To
software.amazon.awssdk:bom 2.31.50 2.31.54
com.mchange:c3p0 0.11.0 0.11.1
org.junit.jupiter:junit-jupiter 5.12.2 5.13.0
org.postgresql:postgresql 42.7.5 42.7.6
org.testcontainers:testcontainers 1.21.0 1.21.1
org.testcontainers:postgresql 1.21.0 1.21.1

Updates software.amazon.awssdk:bom from 2.31.50 to 2.31.54

Updates com.mchange:c3p0 from 0.11.0 to 0.11.1

Changelog

Sourced from com.mchange:c3p0's changelog.

c3p0-0.11.1 -- in BasicResourcePool, forceKillAcquires() accidentally failed to surrender its lock, leading to deadlocks following a full round of acquisition failures. Many thanks to @​pwielgolaski on github for tracking down the issue, to @​driseley on github for providing a reproduction of the issue, and to @​michalgutkowski on github for providing a pull request with the fix. c3p0-0.11.0 -- Additional testing. c3p0-0.11.0-pre2 -- Define new property cancelAutomaticallyClosedStatements, which, if true, ensures that Statement.cancel() will be called prior to Statement.close() when c3p0 automatically close()es statements because a client has neglected to, a Connection with open Statements has exceeded its unreturnedConnectionTimeout, or the Statement cache is expiring a PreparedStatement. Thanks to Andreas Dangel (in 2014!) for pointing out scenarios where this might be helpful, and offering a PR demonstrating the basic fix, and Luis Paolini for reminding me that I flaked 11 years ago and this is still worth pursuing. c3p0-0.11.0-pre1 -- Rewrite BasicResourcePool and GooGooStatementCache in terms of ReentrantLock and Condition.{await/signalAll} rather than native monitors and wait()/notifyAll(), because wait() pins loom virtual threads. Many thanks to alex-kormukhin for calling attention to this issue and proposing the fix! -- Double check after termination of BasicResourcePool.awaitAvailable(...) that following notification/termination a resource (Connection) remains available. Many thanks to C3Stones and xtb359 on github for calling attention to this issue. -- Prevent fragility under non-bootstrap / non-system CLASSLOADERs under Java 8, where references to java.sql.ShardingKey not available under Java 8 provoke NoClassDefFoundError. Bifurcate Connection proxies, generate version without sharding key methods under JVMs where ShardingKey is unavailable, full JDBC 4.3 Connection API proxies where ShardingKey is present. Thanks to Force Rs on github for finding the issue and suggesting the solution! c3p0-0.10.2 -- Prevent freeze due to re-waiting if a non-Exception Throwable occurs while acquiring a PreparedStatement to cache. Thanks Totyo Totev! c3p0-0.10.1 -- Implement more and "louder" (log ugly stack traces) validation of config properties. -- Modify former InUseLock (now InternalUseLock) and NewProxyConnection to use ReentrantLock rather than native monitors, to prevent pinning when clients run on loom virtual threads. Thanks Alex Kormukhin and Jeffrey Tucker! -- Implement config parameter markSessionBoundaries, so that users can disable JDBC 4.3 beginRequest / endRequest session boundary marking when JDBC drivers so undesirable things with those hints. Thanks Bikas Anand! -- Implement more careful examination of begin/endRequest methods, to take into account the case where those methods exist on the JDBC driver Connection implementation, but not in the Connection interface of a pre-Java-9 JVM.

... (truncated)

Commits
  • 73e77ed Update CHANGELOG, build.mill publishVersion for 0.11.1 final. Add RELEASE_NOT...
  • b1b2aa6 Add mill wrapper script, .mill-version file.
  • 9ad6a36 Merge pull request #190 from michalgutkowski/patch-1
  • bc24ad0 add missing unlock()
  • See full diff in compare view

Updates org.junit.jupiter:junit-jupiter from 5.12.2 to 5.13.0

Release notes

Sourced from org.junit.jupiter:junit-jupiter's releases.

JUnit 5.13.0 = Platform 1.13.0 + Jupiter 5.13.0 + Vintage 5.13.0

See Release Notes.

New Contributors

Full Changelog: junit-team/junit-framework@r5.12.2...r5.13.0

JUnit 5.13.0-RC1 = Platform 1.13.0-RC1 + Jupiter 5.13.0-RC1 + Vintage 5.13.0-RC1

See Release Notes.

New Contributors

Full Changelog: junit-team/junit-framework@r5.13.0-M3...r5.13.0-RC1

JUnit 5.13.0-M3 = Platform 1.13.0-M3 + Jupiter 5.13.0-M3 + Vintage 5.13.0-M3

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.0-M2...r5.13.0-M3

JUnit 5.13.0-M2 = Platform 1.13.0-M2 + Jupiter 5.13.0-M2 + Vintage 5.13.0-M2

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.0-M1...r5.13.0-M2

JUnit 5.13.0-M1 = Platform 1.13.0-M1 + Jupiter 5.13.0-M1 + Vintage 5.13.0-M1

See Release Notes.

New Contributors

Full Changelog: junit-team/junit-framework@r5.12.1...r5.13.0-M1

Commits
  • f539f92 Release 5.13.0
  • a54ad65 Use set/get on AtomicBoolean compatibility with Java 8
  • 9bb6a0f Finalize 5.13.0 release notes
  • 5f0e4e6 Remove short-circuiting to ensure all classes are checked for cycles (#4598)
  • 36bb005 Improve assertion failure message in TestClassPredicatesTests
  • 2c86dfa Avoid publishing Gradle Module Metadata for shadowRuntimeElements
  • 4b27910 Allow publishing files to an existing directory
  • b819306 Fix console launcher's --uid option (#4589)
  • df46651 Fix :junit-platform-console:compileModule
  • 182a268 Force Gradle to update snapshots
  • Additional commits viewable in compare view

Updates org.postgresql:postgresql from 42.7.5 to 42.7.6

Release notes

Sourced from org.postgresql:postgresql's releases.

v42.7.6

Changes

  • Prepare release notes for release 42_7_6 (new format) @​davecramer (#3628)
  • fix: isValid incorrectly called execute, instead of executeWithFlags fixes Issue #3630 @​davecramer (#3631)
  • add override @​davecramer (#3629)
  • add the ability to turn off automatic LSN flush @​davecramer (#3403)
  • test: add tests with reWriteBatchedInserts=true @​vlsi (#3616)
  • test: add CI executions with adaptive_fetch=true by default @​vlsi (#3615)
  • test: simplify TestUtil.openDB, add tests with various assumeMinServerVersion values @​vlsi (#3614)
  • Deprecate group startup parms @​davecramer (#3613)
  • Add back application name setting @​joejensen (#3509)
  • Copr: Use Java 21 as the build dependency @​mkoncek (#3607)
  • fix indentation of return child to allow built pass in Checkstyle's CIs @​mohitsatr (#3611)
  • Set column name explicitely when using current_database() in queries @​kneth (#3526)
  • add PgMessageType and use static variables for protocol literals @​davecramer (#3609)
  • Handle protocol 3.2 and wider cancel keys. @​davecramer (#3592)
  • refactor empty resultset to use empty result set if the catalog is not correct @​davecramer (#3588)
  • Use query to find the current catalog instead of relying on the database in the connection URL or connection properties as this could be different if connected through a pooler or proxy @​davecramer (#3565)
  • ci: add Java 24 tests @​davecramer (#3580)
  • docs: Relabel 42.7.4 as past version as it is no longer the latest @​sehrope (#3586)
  • test: remove stale logging message from SslTest @​vlsi (#3584)
  • chore: appply the latest byte-buddy version for tests so we support the latest Java versions @​vlsi (#3583)
  • fix: make PgConnection#abort compatible with Java 24 @​vlsi (#3582)
  • chore(deps): update plugin com.github.burrunan.s3-build-cache to v1.8.5 @​renovate-bot (#3573)
  • Fix JavadocTagContinuationIndentation in AfterBeforeParameterResolver @​Anmol202005 (#3566)
  • Revert "use in row values instead of union all (#3510)" @​vlsi (#3524)
  • use in row values instead of union all @​davecramer (#3510)
  • feat: enhanced DatabaseMetadata.getIndexInfo() method, added index comment as REMARKS property @​raminorujov (#3513)
  • Nit: correct message in main.yml test action @​ecki (#3503)
  • chore: use import instead of require to support modern NodeJS @​vlsi (#3502)
  • chore: use PostgreSQL 17 rather than 17rc1 for CI tests @​vlsi (#3501)
  • chore: add ErrorProne verification to catch bugs ealier @​vlsi (#3493)
  • fix: ArrayIndexOutOfBounds when write big object into GSS enabled connection, make GSSInputStream robust in face of streams that produce incomplete reads @​vlsi (#3500)
  • refactor: factor out duplicated .getBytes() when converting date/time to Date/Time/Timestamp @​vlsi (#3497)
  • chore: exclude Oracle Java 17 from CI tests @​vlsi (#3499)
  • chore: remove unused Travis CI configuration @​vlsi (#3498)
  • Undeprecate sslfactoryarg connection property @​sehrope (#3496)
  • fix:Fix sending extra_float_digits @​davecramer (#3491)

🐛 Bug Fixes

  • fix: EOFException on PreparedStatement#toString with unset bytea parameter since 42.7.4 @​MrEasy (#3369)

🧰 Maintenance

  • chore: use Java 21 for building pgjdbc by default @​vlsi (#3612)

⬆️ Dependencies

... (truncated)

Changelog

Sourced from org.postgresql:postgresql's changelog.

[42.7.6]

Features

  • fix: Enhanced DatabaseMetadata.getIndexInfo() method, added index comment as REMARKS property [PR #3513](pgjdbc/pgjdbc#3513)

Performance Improvements

  • performance: Improve ResultSetMetadata.fetchFieldMetaData by using IN row values instead of UNION ALL for improved query performance (later reverted) [PR #3510](pgjdbc/pgjdbc#3510)
  • feat:Use a single simple query for all startup parameters, so groupStartupParameters is no longer needed [PR #3613](pgjdbc/pgjdbc#3613)

Bug Fixes

Protocol & Connection Handling

Metadata & Catalog Handling

  • fix: Set column name explicitly when using current_database() in queries [PR #3526](pgjdbc/pgjdbc#3526)
  • fix: Use query to find the current catalog instead of relying on the database in the connection URL [pull #3565](pgjdbc/pgjdbc#3565)
  • fix: Refactored empty resultset to use empty result set if the catalog is not correct [PR #3588](pgjdbc/pgjdbc#3588)

API Improvements

Infrastructure & Build Improvements

Java Support

Testing & Quality

Code Quality

... (truncated)

Commits
  • 689708f Prepare release notes for release 42_7_6 (new format) (#3628)
  • 0a88ea4 fix: EOFException on PreparedStatement#toString with unset bytea parameter si...
  • 2de9b94 fix: make sure Connection.isValid correctly uses executeWithFlags fixes Issu...
  • d9e2087 add override (#3629)
  • 665b27b add the ability to turn off automatic LSN flush (#3403)
  • 253c682 chore(deps): update burrunan/gradle-cache-action action to v3
  • 2d1ae0c chore(deps): update plugin com.gradle.develocity to v4
  • baeb893 fix(deps): update dependency org.openrewrite.rewrite:org.openrewrite.rewrite....
  • e24d599 fix(deps): update dependency com.google.errorprone:error_prone_core to v2.38.0
  • 1617c68 fix(deps): update dependency net.ltgt.errorprone:net.ltgt.errorprone.gradle.p...
  • Additional commits viewable in compare view

Updates org.testcontainers:testcontainers from 1.21.0 to 1.21.1

Release notes

Sourced from org.testcontainers:testcontainers's releases.

1.21.1

What's Changed

🚀 Features & Enhancements

🐛 Bug Fixes

  • Use generic init script filename when copying it into a Cassandra container (#9606) @​maximevw

📖 Documentation

📦 Dependency updates

Commits

Updates org.testcontainers:postgresql from 1.21.0 to 1.21.1

Release notes

Sourced from org.testcontainers:postgresql's releases.

1.21.1

What's Changed

🚀 Features & Enhancements

🐛 Bug Fixes

  • Use generic init script filename when copying it into a Cassandra container (#9606) @​maximevw

📖 Documentation

📦 Dependency updates

Commits

Updates org.testcontainers:postgresql from 1.21.0 to 1.21.1

Release notes

Sourced from org.testcontainers:postgresql's releases.

1.21.1

What's Changed

🚀 Features & Enhancements

🐛 Bug Fixes

  • Use generic init script filename when copying it into a Cassandra container (#9606) @​maximevw

📖 Documentation

📦 Dependency updates

Commits

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 dev-dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| software.amazon.awssdk:bom | `2.31.50` | `2.31.54` |
| [com.mchange:c3p0](https://github.com/swaldman/c3p0) | `0.11.0` | `0.11.1` |
| [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5) | `5.12.2` | `5.13.0` |
| [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) | `42.7.5` | `42.7.6` |
| [org.testcontainers:testcontainers](https://github.com/testcontainers/testcontainers-java) | `1.21.0` | `1.21.1` |
| [org.testcontainers:postgresql](https://github.com/testcontainers/testcontainers-java) | `1.21.0` | `1.21.1` |


Updates `software.amazon.awssdk:bom` from 2.31.50 to 2.31.54

Updates `com.mchange:c3p0` from 0.11.0 to 0.11.1
- [Changelog](https://github.com/swaldman/c3p0/blob/0.11.x/CHANGELOG)
- [Commits](swaldman/c3p0@v0.11.0...v0.11.1)

Updates `org.junit.jupiter:junit-jupiter` from 5.12.2 to 5.13.0
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit-framework@r5.12.2...r5.13.0)

Updates `org.postgresql:postgresql` from 42.7.5 to 42.7.6
- [Release notes](https://github.com/pgjdbc/pgjdbc/releases)
- [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md)
- [Commits](pgjdbc/pgjdbc@REL42.7.5...REL42.7.6)

Updates `org.testcontainers:testcontainers` from 1.21.0 to 1.21.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.21.0...1.21.1)

Updates `org.testcontainers:postgresql` from 1.21.0 to 1.21.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.21.0...1.21.1)

Updates `org.testcontainers:postgresql` from 1.21.0 to 1.21.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.21.0...1.21.1)

---
updated-dependencies:
- dependency-name: software.amazon.awssdk:bom
  dependency-version: 2.31.54
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: com.mchange:c3p0
  dependency-version: 0.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter
  dependency-version: 5.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: org.postgresql:postgresql
  dependency-version: 42.7.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: org.testcontainers:testcontainers
  dependency-version: 1.21.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: org.testcontainers:postgresql
  dependency-version: 1.21.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: org.testcontainers:postgresql
  dependency-version: 1.21.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Jun 2, 2025
@github-actions github-actions bot merged commit d2d4ad4 into main Jun 2, 2025
5 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/dev-dependencies-abd5fd5db0 branch June 2, 2025 17:02
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.

0 participants