An open index of dependabot pull requests across open source projects.

build(deps): bump the dependencies group with 13 updates

Merged
Number: #3680
Type: Pull Request
State: Merged
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: May 26, 2025 at 12:50 AM UTC
(about 1 year ago)
Updated: May 26, 2025 at 01:38 PM UTC
(about 1 year ago)
Merged: May 26, 2025 at 01:38 PM UTC
(about 1 year ago)
by jknack
Time to Close: about 13 hours
Labels:
dependencies java
Description:

Bumps the dependencies group with 13 updates:

Package From To
org.hibernate.orm:hibernate-core 6.6.15.Final 7.0.0.Final
io.rest-assured:rest-assured 5.5.2 5.5.5
io.dropwizard.metrics:metrics-core 4.2.30 4.2.32
io.dropwizard.metrics:metrics-healthchecks 4.2.30 4.2.32
io.dropwizard.metrics:metrics-jvm 4.2.30 4.2.32
org.mockito:mockito-core 5.17.0 5.18.0
org.mockito:mockito-junit-jupiter 5.17.0 5.18.0
org.hibernate.validator:hibernate-validator 8.0.2.Final 9.0.0.Final
org.glassfish.expressly:expressly 5.0.0 6.0.0
software.amazon.awssdk:bom 2.31.45 2.31.50
org.jline:jline 3.30.1 3.30.3
org.jline:jline-terminal-jna 3.30.1 3.30.3
io.smallrye.reactive:mutiny 2.8.0 2.9.0

Updates org.hibernate.orm:hibernate-core from 6.6.15.Final to 7.0.0.Final

Release notes

Sourced from org.hibernate.orm:hibernate-core's releases.

Hibernate ORM 7.0.0.Final released

Today, we published a new release of Hibernate ORM 7.0: 7.0.0.Final.

You can find the full list of 7.0.0.Final changes here.

What's new

  • See the website for requirements and compatibilities.
  • See the What's New guide for details about new features and capabilities.
  • See the Migration Guide for details about migration from version 6.6 to 7.0.

Conclusion

For additional details, see:

See also the following resources related to supported APIs:

Visit the website for details on getting in touch with us.

Hibernate ORM 7.0.0.CR2 released

Today, we published a new release of Hibernate ORM 7.0: 7.0.0.CR2.

You can find the full list of 7.0.0.CR2 changes here.

What's new

  • See the website for requirements and compatibilities.
  • See the What's New guide for details about new features and capabilities.
  • See the Migration Guide for details about migration from version 6.6 to 7.0.

Conclusion

For additional details, see:

... (truncated)

Changelog

Sourced from org.hibernate.orm:hibernate-core's changelog.

Changes in 7.0.0.Final (May 19, 2025)

https://hibernate.atlassian.net/projects/HHH/versions/33439

** Task * [HHH-19474] - Release 7.0

Changes in 7.0.0.CR2 (May 14, 2025)

https://hibernate.atlassian.net/projects/HHH/versions/33340

** Bug * [HHH-19425] - incorrect class literals in Processor-generated code * [HHH-19389] - use of @​Struct on databases without UDTs * [HHH-19386] - MutationSepectification#getResultType should return null

** Deprecation * [HHH-19440] - Deprecate exposing of LockOptions

** Improvement * [HHH-19460] - mis-named leads to NPE * [HHH-19456] - Upgrade to hibernate-models 1.0.0.CR3 * [HHH-19449] - how does client obtain a BindableType * [HHH-19448] - API/SPI split for BindableType/BindingContext * [HHH-19447] - org.hibernate.query.procedure * [HHH-19445] - methods of ProcedureCall accept BasicTypeReference * [HHH-19444] - [SQLiteDialect] Fix ViolatedConstraintNameExtractor * [HHH-19442] - ProcedureCall should not extend NameableQuery * [HHH-19438] - move OutputableType * [HHH-19428] - Support @​ListIndexBase in mapping.xml * [HHH-19422] - Introduce @​CollectionIdJavaClass * [HHH-19420] - Support batch-size for collections in mapping.xml * [HHH-19399] - setting to enable logging of SQLExceptions * [HHH-19397] - LIMIT clause does not work without ORDER BY clause * [HHH-19324] - Switch tests using hbm.xml to use mapping.xml * [HHH-19310] - Simplified declaration of type for basic mappings in XML * [HHH-19299] - with LIST classification interpreted as BAG * [HHH-19209] - Verify and fix ID class generation for inner classes

** New Feature * [HHH-19450] - Have processor generate EnabledFetchProfile for all discovered profiles

Changes in 7.0.0.CR1 (April 24, 2025)

https://hibernate.atlassian.net/projects/HHH/versions/33078

... (truncated)

Commits
  • 9ff2e66 Pre-steps for release : 7.0.0.Final
  • c9dc199 extract a method
  • 853b76a remove some obsolete code
  • 7bd857c HHH-19440 - Deprecate exposing of LockOptions
  • d7c6c6a add more links to Short Guide
  • a65e301 add not-null assertions to catch something that should not be allowed to happen
  • 6d94c0a don't create UniqueKeys for Columns with no assigned names
  • fa964ed javadoc / code cleanup in ImplicitNamingStrategyJpaCompliantImpl
  • 11671ba squash! code cleanups in AnnotatedColumn
  • 73c484e add to @​sees to jdoc
  • Additional commits viewable in compare view

Updates io.rest-assured:rest-assured from 5.5.2 to 5.5.5

Changelog

Sourced from io.rest-assured:rest-assured's changelog.

Changelog 5.5.5 (2025-05-22)

  • The rest-assured-bom project is back and works

Changelog 5.5.4 (2025-05-22)

  • The rest-assured-bom project is back

Changelog 5.5.3 (2025-05-22)

  • Greatly improved csrf support. When applying csrf, it'll automatically forward the cookies to returns from the GET request to the csrf token and apply it to the actual request. These cookies will also be applied to the CookieFilter automatically (if configured) and SessionFilter (if configured). For example: given(). csrf("/login"). formParam("name", "My New Name"). when(). post("/users/123"). then(). statusCode(200);

    Now the cookies returned from the GET request to login will be automatically applied to the POST to "/users/123".

    If you have a CookieFilter defined for multiple requests, the cookies returned by GET to /login will be automatically stored in the CookieFilter and used in the second request.

      var cookieFilter = new CookieFilter()
      given().filter(cookieFilter).csrf("/login").formParam("name", "My New Name").when().post("/users/123").then().statusCode(200);
      given().filter(cookieFilter).when().get("/users/123").then().statusCode(200);
    

    You can disable this behavior by setting automaticallyApplyCookies to false the csrf config: given(). config(config().csrfConfig(csrfConfig().automaticallyApplyCookies(false))). csrf("/login"). when(). ...

Commits
  • ee33ab5 [maven-release-plugin] prepare release rest-assured-5.5.5
  • e75c4c4 [ci skip] Using parent pom in bom
  • beb3ceb [ci skip] Replicating central-publishing-maven-plugin in bom
  • 83330b9 [ci skip] Adding flatten plugin to bom project
  • 69e91bb [ci skip] Fixing distributionManagement in rest-assured-bom
  • 0d08008 [ci skip] Temporary removing auto publish to avoid issues
  • cab697d [ci skip] Preparing changelog for release
  • b40c1b6 [maven-release-plugin] prepare for next development iteration
  • 2a2f338 [maven-release-plugin] prepare release rest-assured-5.5.4
  • fb7e9dd [ci skip] Adding missing things to the bom project
  • Additional commits viewable in compare view

Updates io.dropwizard.metrics:metrics-core from 4.2.30 to 4.2.32

Release notes

Sourced from io.dropwizard.metrics:metrics-core's releases.

v4.2.32

What's Changed

Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.31...v4.2.32

v4.2.31

What's Changed

... (truncated)

Commits
  • 0edf937 [maven-release-plugin] prepare release v4.2.32
  • a16e1c0 fix(deps): update dependency org.apache.httpcomponents.client5:httpclient5 to...
  • 52272bf chore(deps): update dependency org.mockito:mockito-core to v5.18.0 (#4802)
  • 7729d3b fix(deps): update dependency org.jdbi:jdbi3-core to v3.49.4 (#4800)
  • 5cf3bcc fix(deps): update jetty monorepo to v12.0.21 (#4801)
  • 28bc4a4 fix(deps): update dependency org.jdbi:jdbi3-core to v3.49.3 (#4795)
  • ddbd9e7 fix(deps): update jetty monorepo to v12.0.20 (#4796)
  • 20fa629 fix(deps): update dependency org.checkerframework:checker-qual to v3.49.3 (#4...
  • aaec525 fix(deps): update dependency org.jdbi:jdbi3-core to v3.49.2 (#4792)
  • 6df2a7c fix(deps): update dependency org.jdbi:jdbi3-core to v3.49.1 (#4787)
  • Additional commits viewable in compare view

Updates io.dropwizard.metrics:metrics-healthchecks from 4.2.30 to 4.2.32

Release notes

Sourced from io.dropwizard.metrics:metrics-healthchecks's releases.

v4.2.32

What's Changed

Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.31...v4.2.32

v4.2.31

What's Changed

... (truncated)

Commits
  • 0edf937 [maven-release-plugin] prepare release v4.2.32
  • a16e1c0 fix(deps): update dependency org.apache.httpcomponents.client5:httpclient5 to...
  • 52272bf chore(deps): update dependency org.mockito:mockito-core to v5.18.0 (#4802)
  • 7729d3b fix(deps): update dependency org.jdbi:jdbi3-core to v3.49.4 (#4800)
  • 5cf3bcc fix(deps): update jetty monorepo to v12.0.21 (#4801)
  • 28bc4a4 fix(deps): update dependency org.jdbi:jdbi3-core to v3.49.3 (#4795)
  • ddbd9e7 fix(deps): update jetty monorepo to v12.0.20 (#4796)
  • 20fa629 fix(deps): update dependency org.checkerframework:checker-qual to v3.49.3 (#4...
  • aaec525 fix(deps): update dependency org.jdbi:jdbi3-core to v3.49.2 (#4792)
  • 6df2a7c fix(deps): update dependency org.jdbi:jdbi3-core to v3.49.1 (#4787)
  • Additional commits viewable in compare view

Updates io.dropwizard.metrics:metrics-jvm from 4.2.30 to 4.2.32

Release notes

Sourced from io.dropwizard.metrics:metrics-jvm's releases.

v4.2.32

What's Changed

Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.31...v4.2.32

v4.2.31

What's Changed

... (truncated)

Commits
  • 0edf937 [maven-release-plugin] prepare release v4.2.32
  • a16e1c0 fix(deps): update dependency org.apache.httpcomponents.client5:httpclient5 to...
  • 52272bf chore(deps): update dependency org.mockito:mockito-core to v5.18.0 (#4802)
  • 7729d3b fix(deps): update dependency org.jdbi:jdbi3-core to v3.49.4 (#4800)
  • 5cf3bcc fix(deps): update jetty monorepo to v12.0.21 (#4801)
  • 28bc4a4 fix(deps): update dependency org.jdbi:jdbi3-core to v3.49.3 (#4795)
  • ddbd9e7 fix(deps): update jetty monorepo to v12.0.20 (#4796)
  • 20fa629 fix(deps): update dependency org.checkerframework:checker-qual to v3.49.3 (#4...
  • aaec525 fix(deps): update dependency org.jdbi:jdbi3-core to v3.49.2 (#4792)
  • 6df2a7c fix(deps): update dependency org.jdbi:jdbi3-core to v3.49.1 (#4787)
  • Additional commits viewable in compare view

Updates io.dropwizard.metrics:metrics-healthchecks from 4.2.30 to 4.2.32

Release notes

Sourced from io.dropwizard.metrics:metrics-healthchecks's releases.

v4.2.32

What's Changed

Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.31...v4.2.32

v4.2.31

What's Changed

Pull Request Statistics
Commits:
1
Files Changed:
5
Additions:
+9
Deletions:
-9
Package Dependencies
Ecosystem:
maven
Version Change:
2.31.45 → 2.31.50
Update Type:
Patch
Ecosystem:
maven
Version Change:
5.0.0 → 6.0.0
Update Type:
Major
Ecosystem:
maven
Version Change:
8.0.2.Final → 9.0.0.Final
Update Type:
Major
Ecosystem:
maven
Version Change:
5.17.0 → 5.18.0
Update Type:
Minor
Ecosystem:
maven
Version Change:
5.17.0 → 5.18.0
Update Type:
Minor
Ecosystem:
maven
Version Change:
5.5.2 → 5.5.5
Update Type:
Patch
Ecosystem:
maven
Version Change:
2.8.0 → 2.9.0
Update Type:
Minor
Ecosystem:
maven
Version Change:
3.30.1 → 3.30.3
Update Type:
Patch
Ecosystem:
maven
Version Change:
6.6.15.Final → 7.0.0.Final
Update Type:
Major
Ecosystem:
maven
Version Change:
3.30.1 → 3.30.3
Update Type:
Patch
Ecosystem:
maven
Version Change:
4.2.30 → 4.2.32
Update Type:
Patch
Ecosystem:
maven
Version Change:
4.2.30 → 4.2.32
Update Type:
Patch
Ecosystem:
maven
Version Change:
4.2.30 → 4.2.32
Update Type:
Patch
Technical Details
ID: 655094
UUID: 2542759776
Node ID: PR_kwDOAYRJs86Xj29g
Host: GitHub
Repository: jooby-project/jooby
Merge State: Unknown