Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 26, 2025

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: dropwizard/metrics@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: dropwizard/metrics@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: dropwizard/metrics@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: dropwizard/metrics@v4.2.31...v4.2.32

v4.2.31

What's Changed

Bumps the dependencies group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [org.hibernate.orm:hibernate-core](https://github.com/hibernate/hibernate-orm) | `6.6.15.Final` | `7.0.0.Final` |
| [io.rest-assured:rest-assured](https://github.com/rest-assured/rest-assured) | `5.5.2` | `5.5.5` |
| [io.dropwizard.metrics:metrics-core](https://github.com/dropwizard/metrics) | `4.2.30` | `4.2.32` |
| [io.dropwizard.metrics:metrics-healthchecks](https://github.com/dropwizard/metrics) | `4.2.30` | `4.2.32` |
| [io.dropwizard.metrics:metrics-jvm](https://github.com/dropwizard/metrics) | `4.2.30` | `4.2.32` |
| [org.mockito:mockito-core](https://github.com/mockito/mockito) | `5.17.0` | `5.18.0` |
| [org.mockito:mockito-junit-jupiter](https://github.com/mockito/mockito) | `5.17.0` | `5.18.0` |
| [org.hibernate.validator:hibernate-validator](https://github.com/hibernate/hibernate-validator) | `8.0.2.Final` | `9.0.0.Final` |
| [org.glassfish.expressly:expressly](https://github.com/eclipse-ee4j/expressly) | `5.0.0` | `6.0.0` |
| software.amazon.awssdk:bom | `2.31.45` | `2.31.50` |
| [org.jline:jline](https://github.com/jline/jline3) | `3.30.1` | `3.30.3` |
| [org.jline:jline-terminal-jna](https://github.com/jline/jline3) | `3.30.1` | `3.30.3` |
| [io.smallrye.reactive:mutiny](https://github.com/smallrye/smallrye-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](https://github.com/hibernate/hibernate-orm/releases)
- [Changelog](https://github.com/hibernate/hibernate-orm/blob/main/changelog.txt)
- [Commits](hibernate/hibernate-orm@6.6.15...7.0.0)

Updates `io.rest-assured:rest-assured` from 5.5.2 to 5.5.5
- [Changelog](https://github.com/rest-assured/rest-assured/blob/master/changelog.txt)
- [Commits](rest-assured/rest-assured@rest-assured-5.5.2...rest-assured-5.5.5)

Updates `io.dropwizard.metrics:metrics-core` from 4.2.30 to 4.2.32
- [Release notes](https://github.com/dropwizard/metrics/releases)
- [Commits](dropwizard/metrics@v4.2.30...v4.2.32)

Updates `io.dropwizard.metrics:metrics-healthchecks` from 4.2.30 to 4.2.32
- [Release notes](https://github.com/dropwizard/metrics/releases)
- [Commits](dropwizard/metrics@v4.2.30...v4.2.32)

Updates `io.dropwizard.metrics:metrics-jvm` from 4.2.30 to 4.2.32
- [Release notes](https://github.com/dropwizard/metrics/releases)
- [Commits](dropwizard/metrics@v4.2.30...v4.2.32)

Updates `io.dropwizard.metrics:metrics-healthchecks` from 4.2.30 to 4.2.32
- [Release notes](https://github.com/dropwizard/metrics/releases)
- [Commits](dropwizard/metrics@v4.2.30...v4.2.32)

Updates `io.dropwizard.metrics:metrics-jvm` from 4.2.30 to 4.2.32
- [Release notes](https://github.com/dropwizard/metrics/releases)
- [Commits](dropwizard/metrics@v4.2.30...v4.2.32)

Updates `org.mockito:mockito-core` from 5.17.0 to 5.18.0
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v5.17.0...v5.18.0)

Updates `org.mockito:mockito-junit-jupiter` from 5.17.0 to 5.18.0
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v5.17.0...v5.18.0)

Updates `org.mockito:mockito-junit-jupiter` from 5.17.0 to 5.18.0
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v5.17.0...v5.18.0)

Updates `org.hibernate.validator:hibernate-validator` from 8.0.2.Final to 9.0.0.Final
- [Changelog](https://github.com/hibernate/hibernate-validator/blob/main/changelog.txt)
- [Commits](hibernate/hibernate-validator@8.0.2.Final...9.0.0.Final)

Updates `org.glassfish.expressly:expressly` from 5.0.0 to 6.0.0
- [Release notes](https://github.com/eclipse-ee4j/expressly/releases)
- [Commits](eclipse-ee4j/expressly@5.0.0-RELEASE...6.0.0-RELEASE)

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

Updates `org.jline:jline` from 3.30.1 to 3.30.3
- [Release notes](https://github.com/jline/jline3/releases)
- [Commits](jline/jline3@jline-3.30.1...jline-3.30.3)

Updates `org.jline:jline-terminal-jna` from 3.30.1 to 3.30.3
- [Release notes](https://github.com/jline/jline3/releases)
- [Commits](jline/jline3@jline-3.30.1...jline-3.30.3)

Updates `org.jline:jline-terminal-jna` from 3.30.1 to 3.30.3
- [Release notes](https://github.com/jline/jline3/releases)
- [Commits](jline/jline3@jline-3.30.1...jline-3.30.3)

Updates `io.smallrye.reactive:mutiny` from 2.8.0 to 2.9.0
- [Release notes](https://github.com/smallrye/smallrye-mutiny/releases)
- [Commits](smallrye/smallrye-mutiny@2.8.0...2.9.0)

---
updated-dependencies:
- dependency-name: org.hibernate.orm:hibernate-core
  dependency-version: 7.0.0.Final
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: io.rest-assured:rest-assured
  dependency-version: 5.5.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.dropwizard.metrics:metrics-core
  dependency-version: 4.2.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.dropwizard.metrics:metrics-healthchecks
  dependency-version: 4.2.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.dropwizard.metrics:metrics-jvm
  dependency-version: 4.2.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.dropwizard.metrics:metrics-healthchecks
  dependency-version: 4.2.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.dropwizard.metrics:metrics-jvm
  dependency-version: 4.2.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.mockito:mockito-core
  dependency-version: 5.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.mockito:mockito-junit-jupiter
  dependency-version: 5.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.mockito:mockito-junit-jupiter
  dependency-version: 5.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.hibernate.validator:hibernate-validator
  dependency-version: 9.0.0.Final
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: org.glassfish.expressly:expressly
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: software.amazon.awssdk:bom
  dependency-version: 2.31.50
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jline:jline
  dependency-version: 3.30.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jline:jline-terminal-jna
  dependency-version: 3.30.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jline:jline-terminal-jna
  dependency-version: 3.30.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.smallrye.reactive:mutiny
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: 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 May 26, 2025
@jknack jknack added this to the 3.9.0 milestone May 26, 2025
@jknack jknack merged commit e843422 into 3.x May 26, 2025
0 of 5 checks passed
@dependabot dependabot bot deleted the dependabot/maven/dependencies-6e83614486 branch May 26, 2025 13:38
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.

2 participants