Skip to content

fix(deps): bump the prod-deps group across 1 directory with 7 updates#254

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/maven/prod-deps-5701fbb789
Open

fix(deps): bump the prod-deps group across 1 directory with 7 updates#254
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/maven/prod-deps-5701fbb789

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 18, 2026

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps the prod-deps group with 5 updates in the / directory:

Package From To
org.springframework.boot:spring-boot-starter-parent 3.4.3 4.0.1
org.folio:folio-spring-base 9.0.0 9.1.0
org.folio:folio-spring-system-user 9.0.0 9.1.0
org.folio:util 35.4.0 35.4.2
org.folio:mod-pubsub-client 2.16.0 2.16.3

Updates org.springframework.boot:spring-boot-starter-parent from 3.4.3 to 4.0.1

Release notes

Sourced from org.springframework.boot:spring-boot-starter-parent's releases.

v4.0.1

⚠️ Noteworthy Changes

  • Hibernate has been upgraded to 7.2.0.Final in response to Hibernate 7.1 moving to limited support
  • spring-boot-starter-kotlin-serialization has been renamed to to spring-boot-starter-kotlinx-serialization-json and spring-boot-starter-kotlin-serialization-test has been renamed to spring-boot-starter-kotlinx-serialization-json-test. This change aligns the starters' names with those of their respective modules
  • Using TestRestTemplate now requires a dependency on spring-boot-restclient

🐞 Bug Fixes

  • JsonMixinModuleEntriesBeanRegistrationAotProcessor does not handle deprecated code #48564
  • JdbcSessionAutoConfiguration may not match when using the auto-configured DataSource #48552
  • @ServiceConnection for LgtmStackContainer fails when logging endpoint is configured due to multiple OtlpLoggingConnectionDetails beans #48536
  • WebApplicationType does not consider modules when deduced from classpath #48517
  • Spring Session auto-configuration fails in a war deployment as ServerProperties is not available #48493
  • Opentelemetry logging export requires actuator module #48488
  • RabbitHealthIndicator reports an error when version is missing from the connection's server properties #48487
  • Actuator Info class has inconsistent nullability annotations and cannot be built with null value #48480
  • Profiles retained during AOT processing are not configured in a native image #48476
  • Security matchers and WebServerNamespace resolution can fail with NoClassDefFoundError when used in a traditional WAR deployment #48388
  • HealthEndpointGroupMembershipValidator does not consider reactive health indicators causing NoSuchHealthContributorException to be thrown #48387
  • spring.jackson.default-property-inclusion is not applied to content inclusion #48343
  • TestRestTemplate.getRootUri() returns empty string #48330
  • Redis health check reports an error when redis_version is missing from the INFO response #48328
  • Parent's MeterRegistry beans are closed when child context closes #48325
  • HttpMessageConverters picks up converter beans for both client and server #48310
  • Conditions to auto-configure a RestClient are outdated with the modularization #48308
  • A custom JwtTypeValidator that replaces the default can no longer be configured #48301
  • PropertiesRestClientHttpServiceGroupConfigurer has highest precedence, preventing other configurers from being ordered ahead of it #48296
  • SpringBootTest.UseMainMethod.WHEN_AVAILABLE and ALWAYS are incompatible with package-private or parameter-less main method #48275
  • Conditions to auto-configure RestClient-based HTTP service clients are outdated with the modularization #48274
  • Starter for Kotlinx Serialization Json is misnamed #48262
  • ApplicationServletEnvironment is no longer configured in war deployments #48254
  • RestClient.Builder bean present in @SpringBootTest due to spring-boot-starter-webmvc-test, but missing at runtime without restclient starter #48253
  • ProblemDetail is rendered to XML incorrectly #48222

📔 Documentation

  • Harmonize Kotlin example for HTTP Service client support #48577
  • Document HttpMessageConverters detection changes in 4.0.1 #48574
  • Improve javadoc for when to use class names rather than class references #48569
  • Documentation has an outdated reference to the Jackson Kotlin Module #48534
  • Caching documentation should clarify how to use a no-op implementation to run a test suite #48532
  • Document that the default rolling policy for Log4j2 requires logging.file.path to be set #48527
  • Review documentation and migration guide about changes in @AutoConfigureCache #48522
  • License header in build samples is displayed in the reference documentation #48478
  • Configuring Two DataSources How-To code sample is inconsistent #48449
  • Fix links to source files on GitHub #48398
  • Documentation contains broken links to GitHub source files #48394
  • Document that org.aspectj.weaver.Advice must be on the classpath to enable support for Micrometer's annotations #48360
  • Correct the annotation in the Kotlin @ConfigurationPropertiesSource example #48357
  • Polish TestRestTemplate examples in the reference guide #48336

... (truncated)

Commits
  • b2bc463 Release v4.0.1
  • 252b218 Correct renaming of Kotlinx Serialization JSON starters
  • 2fa73c2 Merge pull request #48577 from jwalter
  • 3e68988 Polish "Harmonize Kotlin example for HTTP Service client support"
  • 423373b Harmonize Kotlin example for HTTP Service client support
  • f61ac29 Document HttpMessageConverters detection changes
  • 2519a5d Merge branch '3.5.x'
  • 4fc3ca3 Next development version (v3.5.10-SNAPSHOT)
  • aaf66f4 Merge branch '3.5.x'
  • 08e2cab Polish javadoc for when to use class names rather than class references
  • Additional commits viewable in compare view

Updates org.folio:folio-spring-base from 9.0.0 to 9.1.0

Release notes

Sourced from org.folio:folio-spring-base's releases.

v9.0.2

folio-spring-base

v9.0.1

cql submodule

  • FOLSPRINGS-185 Implement case insensitive accents ignoring CQL queries - backport, opt in only. To opt in call Cql2JpaCriteria.setCaseAccentsHandlingEnabled(true). Then a CQL search in a String field ignores case (= is case insensitive) and ignores accents by default; this is for consistency with RMB based modules. Use the annotations @RespectCase and/or @RespectAccents in the entity class to change this new default.

When enabling case insensitive and/or accents ignoring CQL queries you need to update database indices accordingly, for example:

DROP INDEX IF EXISTS idx_medreq_requester_barcode;
CREATE INDEX idx_medreq_requester_barcode ON ${database.defaultSchemaName}.mediated_request(lower(f_unaccent(requester_barcode)));

For test code that executes SQL you may need to add f_unaccent database method. Example: jpa-cql-general-it-schema.sql, @​Sql

Changelog

Sourced from org.folio:folio-spring-base's changelog.

9.1.0 2025-04-23

Replacing OkHttpClient by ApacheHttpClient, adding configuration

Commits
  • a9c940e [maven-release-plugin] prepare release v9.1.0
  • f71312f Replacing OkHttpClient by ApacheHttpClient, adding configuration
  • 4eab61d Replacing OkHttpClient by ApacheHttpClient, adding configuration
  • e0ac99d Replacing OkHttpClient by ApacheHttpClient, adding configuration
  • See full diff in compare view

Updates org.folio:folio-spring-system-user from 9.0.0 to 9.1.0

Release notes

Sourced from org.folio:folio-spring-system-user's releases.

v9.0.2

folio-spring-base

v9.0.1

cql submodule

  • FOLSPRINGS-185 Implement case insensitive accents ignoring CQL queries - backport, opt in only. To opt in call Cql2JpaCriteria.setCaseAccentsHandlingEnabled(true). Then a CQL search in a String field ignores case (= is case insensitive) and ignores accents by default; this is for consistency with RMB based modules. Use the annotations @RespectCase and/or @RespectAccents in the entity class to change this new default.

When enabling case insensitive and/or accents ignoring CQL queries you need to update database indices accordingly, for example:

DROP INDEX IF EXISTS idx_medreq_requester_barcode;
CREATE INDEX idx_medreq_requester_barcode ON ${database.defaultSchemaName}.mediated_request(lower(f_unaccent(requester_barcode)));

For test code that executes SQL you may need to add f_unaccent database method. Example: jpa-cql-general-it-schema.sql, @​Sql

Changelog

Sourced from org.folio:folio-spring-system-user's changelog.

9.1.0 2025-04-23

Replacing OkHttpClient by ApacheHttpClient, adding configuration

Commits
  • a9c940e [maven-release-plugin] prepare release v9.1.0
  • f71312f Replacing OkHttpClient by ApacheHttpClient, adding configuration
  • 4eab61d Replacing OkHttpClient by ApacheHttpClient, adding configuration
  • e0ac99d Replacing OkHttpClient by ApacheHttpClient, adding configuration
  • See full diff in compare view

Updates org.folio:folio-spring-system-user from 9.0.0 to 9.1.0

Release notes

Sourced from org.folio:folio-spring-system-user's releases.

v9.0.2

folio-spring-base

v9.0.1

cql submodule

  • FOLSPRINGS-185 Implement case insensitive accents ignoring CQL queries - backport, opt in only. To opt in call Cql2JpaCriteria.setCaseAccentsHandlingEnabled(true). Then a CQL search in a String field ignores case (= is case insensitive) and ignores accents by default; this is for consistency with RMB based modules. Use the annotations @RespectCase and/or @RespectAccents in the entity class to change this new default.

When enabling case insensitive and/or accents ignoring CQL queries you need to update database indices accordingly, for example:

DROP INDEX IF EXISTS idx_medreq_requester_barcode;
CREATE INDEX idx_medreq_requester_barcode ON ${database.defaultSchemaName}.mediated_request(lower(f_unaccent(requester_barcode)));

For test code that executes SQL you may need to add f_unaccent database method. Example: jpa-cql-general-it-schema.sql, @​Sql

Changelog

Sourced from org.folio:folio-spring-system-user's changelog.

9.1.0 2025-04-23

Replacing OkHttpClient by ApacheHttpClient, adding configuration

Commits
  • a9c940e [maven-release-plugin] prepare release v9.1.0
  • f71312f Replacing OkHttpClient by ApacheHttpClient, adding configuration
  • 4eab61d Replacing OkHttpClient by ApacheHttpClient, adding configuration
  • e0ac99d Replacing OkHttpClient by ApacheHttpClient, adding configuration
  • See full diff in compare view

Updates org.projectlombok:lombok from 1.18.36 to 1.18.42

Changelog

Sourced from org.projectlombok:lombok's changelog.

v1.18.42 (September 18th, 2025)

  • FEATURE: All the various @Log annotations now allow you to change their access level (they still default to private). #2280. Thanks to new contributor Liam Pace!
  • BUGFIX: Javadoc parsing was broken in Netbeans and ErrorProne for JDK25 #3940.

v1.18.40 (September 4th, 2025)

  • PLATFORM: JDK25 support added #3859.
  • BUGFIX: Recent versions of eclipse (or the eclipse-based java lang server for VSCode) caused java.lang.IllegalArgumentException: Document does not match the AST. [Issue #3886](projectlombok/lombok#3886).
  • PERFORMANCE: @ExtensionMethod is now significantly faster [Issue #3866](projectlombok/lombok#3866).
  • BUGFIX: the command line config tool would emit incorrect output for nullity annotations. [Issue #3931](projectlombok/lombok#3931).
  • FEATURE: @Jacksonized @Accessors(fluent=true) automatically creates the relevant annotations such that Jackson correctly identifies fluent accessors. [Issue #3265](projectlombok/lombok#3265), [Issue #3270](projectlombok/lombok#3270).
  • IMPROBABLE BREAKING CHANGE: From versions 1.18.16 to 1.18.38, lombok automatically copies certain Jackson annotations (e.g., @JsonProperty) from fields to the corresponding accessors (getters/setters). However, it turned out to be harmful in certain situations. Thus, Lombok does not automatically copy those annotations any more. You can restore the old behavior using the config key lombok.copyJacksonAnnotationsToAccessors = true.

v1.18.38 (March 31st, 2025)

  • PLATFORM: JDK24 support added.
  • FEATURE: Lombok's nullity annotation now supports JSpecify out of the box, using config key jspecify.
  • BUGFIX: Recent eclipse releases would get you 'negative length' error. The bug had always been in lombok but didn't matter until recent releases. [Issue #3823](projectlombok/lombok#3823).
  • BUGFIX: The 'extract local variable' refactor script of VSCode wouldn't replace all occurrences if run on a method call to a lombok generated method. [Issue #3783](projectlombok/lombok#3783).
Commits
  • 2031eb0 [release] pre-release version bump for v1.18.42
  • c95a6c1 Merge branch 'logger-access'
  • 71d85ca #2280 Add delivery of this 'access for logging' to the changelog.
  • 99ba3e3 [trivial] Slightly reworded the javadoc on each @Log annotation's `access()...
  • e9cf11e [trivial][style]
  • a6d5568 [deprecation] Marked AccessLevel.MODULE as deprecated. It was written for a...
  • 492011d Refactored to use Javac/Eclipse utility function
  • c1f7f66 Update copyright in logger files
  • f63f40a Add myself to AUTHORS
  • 9152c34 Fix failing tests
  • Additional commits viewable in compare view

Updates org.folio:util from 35.4.0 to 35.4.2

Release notes

Sourced from org.folio:util's releases.

v35.4.2

Vert.x compatibility

Restrictions when using RMB's or Vert.x' Postgres client:

  • RMB >= 35.4.2 requires Vert.x >= 4.5.23.
  • RMB 35.4.0 and 35.4.1 require Vert.x <= 4.5.22.

v35.4.1

Changelog

Sourced from org.folio:util's changelog.

35.4.2 2025-12-17

35.4.1 2025-12-08

Commits
  • 2c99658 [maven-release-plugin] prepare release v35.4.2
  • 20052e2 NEWS for 35.4.2
  • b693022 Merge pull request #1219 from folio-org/RMB-1043
  • 130add2 RMB-1043: Vert.x 4.5.23 fixing CVE-2025-67735 Netty CRLF injection
  • b182807 Merge pull request #1214 from folio-org/release-35.4.1
  • f410bf8 [maven-release-plugin] prepare for next development iteration
  • e5ebd2f [maven-release-plugin] prepare release v35.4.1
  • 47f5a01 NEWS for 35.4.1
  • 45c4abc Merge pull request #1210 from folio-org/RMB-1036-sunflower
  • 32d7ba0 Merge pull request #1208 from folio-org/RMB-1023-sunflower
  • Additional commits viewable in compare view

Updates org.folio:mod-pubsub-client from 2.16.0 to 2.16.3

Release notes

Sourced from org.folio:mod-pubsub-client's releases.

v2.16.3

v2.16.2

2026-01-02 v2.16.2

  • MODPUBSUB-340 Always close producer; more logging; remove executor

v2.16.1

Changelog

Sourced from org.folio:mod-pubsub-client's changelog.

2026-01-08 v2.16.3

2026-01-02 v2.16.2

  • MODPUBSUB-340 Always close producer; more logging; remove executor

2025-04-23 v2.16.1

Commits
  • 93397b4 [maven-release-plugin] prepare release v2.16.3
  • a1fe6b6 Update NEWS
  • c055a4d MODPUBSUB-336 Upgrade to Vert.x 4.5.23 and RMB 35.4.2
  • d519763 Merge pull request #306 from folio-org/bugfix-release-2.16.2
  • 61af6bd [maven-release-plugin] prepare for next development iteration
  • 2ec1a34 [maven-release-plugin] prepare release v2.16.2
  • 914cae2 Update NEWS
  • 644f482 Add test coverage
  • 22fa06e MODPUBSUB-326: Always close producer; more logging; remove executor
  • a580207 MODPUBSUB-326: Log event type, topic, payload size when event publishing fails
  • Additional commits viewable in compare view

Updates org.hibernate.orm:hibernate-jpamodelgen from 6.6.8.Final to 7.2.0.Final

Release notes

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

Release 7.2.0

Hibernate ORM 7.2.0.Final released

Today, we published a new release of Hibernate ORM 7.2: 7.2.0.Final.

You can find the full list of 7.2.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.

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.

Release 7.2.0.CR4

Hibernate ORM 7.2.0.CR4 released

Today, we published a new release of Hibernate ORM 7.2: 7.2.0.CR4.

You can find the full list of 7.2.0.CR4 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.

Conclusion

... (truncated)

Changelog

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

Changes in 7.2.0.Final (December 12, 2025)

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

Changes in 7.2.0.CR4 (December 10, 2025)

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

** Bug * HHH-19980 In JTA after-completion callbacks may get ignored * HHH-19979 processor should handle @​NamedEntityGraph with defaulted name * HHH-19975 Calling entityManager.find(clazz, id) with null id throws NullPointerException * HHH-19972 OptionalTableUpdateOperation can fail on PostgreSQL < 15 and CockroachDB * HHH-19963 Wrong references in entity fields with circular associations * HHH-19958 <generated> tag in orm.xml is not implemented * HHH-19955 Thread-safety issue in EntityEntryContext resulting in NullPointerException for Session.contains() calls. * HHH-19843 Bean Validation may fail on operations with stateless session * HHH-18871 Nested NativeQuery mappings causing 'Could not locate TableGroup' exception after migration * HHH-18217 StatelessSession.upsert() for entity with all-null non-id fields, or no non-id field

** Improvement * HHH-19943 Comparison of generic nested EmbeddedId's fails for JPQL and Criteria API * HHH-19215 Extends Dialect#addQueryHints to support straight_join syntax

Changes in 7.2.0.CR3 (November 25, 2025)

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

** Bug * HHH-19939 broken caching for MERGE and REFRESH load plans * HHH-19937 duplicate version check after refresh * HHH-19936 Parameter casts for by-id lookups don't take column definition into account * HHH-19932 NullPointerException in SqmInterpretationsKey::toString * HHH-19926 NullPointerException when executing JPQL IN clause with null parameter on entity association * HHH-19925 Locking root(s) should be based on select-clause, not from-clause * HHH-19924 Session#find with LockMode.UPGRADE_NOWAIT casues AssetionError when no entity with the provided id exists in the database * HHH-19922 org.hibernate.orm:hibernate-platform:pom:7.1.7.Final is missing * HHH-19918 Avoid reflection when instantiating known FormatMapper * HHH-19910 EntityInitializer#resolveInstance wrongly initializes existing detached instance * HHH-19906 JsonGeneratingVisitor#visit doesn't handle plural types correctly * HHH-19905 Implicit join re-use with nested inner and left joins causes ParsingException * HHH-19895 hibernate-core 6.6.30.Final breaks compatibility on entities with composite keys for multiple variants of DB2 * HHH-19758 HQL parse failure with SLL can lead to wrong parse * HHH-19749 [Oracle] Merge with @​SecondaryTable may generate invalid NUMERIC type casts

... (truncated)

Commits
  • 6f77c21 [Jenkins release job] Preparing release 7.2.0.Final
  • 6f9e75e [Jenkins release job] changelog.txt updated by release build 7.2.0.Final
  • a182a10 Revert "HHH-7287 - Problem in caching proper natural-id-values when obtaining...
  • 6a7ba40 Revert "HHH-7287 - Problem in caching proper natural-id-values when obtaining...
  • 1c98c9e Revert "HHH-3192 - SchemaValidator column nullability check"
  • 5612c9b Revert "Workaround JDK 17 javac bug for switch expression compilation"
  • 6e1ae87 Revert "HHH-19976 Don't adopt AdjustableBasicType name to create derived type"
  • 4328313 HHH-19976 Don't adopt AdjustableBasicType name to create derived type
  • 64a86dc Workaround JDK 17 javac bug for switch expression compilation
  • 3b8dc32 HHH-3192 - SchemaValidator column nullability check
  • 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 prod-deps group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [org.springframework.boot:spring-boot-starter-parent](https://github.com/spring-projects/spring-boot) | `3.4.3` | `4.0.1` |
| [org.folio:folio-spring-base](https://github.com/folio-org/folio-spring-support) | `9.0.0` | `9.1.0` |
| [org.folio:folio-spring-system-user](https://github.com/folio-org/folio-spring-support) | `9.0.0` | `9.1.0` |
| [org.folio:util](https://github.com/folio-org/raml-module-builder) | `35.4.0` | `35.4.2` |
| [org.folio:mod-pubsub-client](https://github.com/folio-org/mod-pubsub) | `2.16.0` | `2.16.3` |



Updates `org.springframework.boot:spring-boot-starter-parent` from 3.4.3 to 4.0.1
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.4.3...v4.0.1)

Updates `org.folio:folio-spring-base` from 9.0.0 to 9.1.0
- [Release notes](https://github.com/folio-org/folio-spring-support/releases)
- [Changelog](https://github.com/folio-org/folio-spring-support/blob/v9.1.0/NEWS.md)
- [Commits](folio-org/folio-spring-support@v9.0.0...v9.1.0)

Updates `org.folio:folio-spring-system-user` from 9.0.0 to 9.1.0
- [Release notes](https://github.com/folio-org/folio-spring-support/releases)
- [Changelog](https://github.com/folio-org/folio-spring-support/blob/v9.1.0/NEWS.md)
- [Commits](folio-org/folio-spring-support@v9.0.0...v9.1.0)

Updates `org.folio:folio-spring-system-user` from 9.0.0 to 9.1.0
- [Release notes](https://github.com/folio-org/folio-spring-support/releases)
- [Changelog](https://github.com/folio-org/folio-spring-support/blob/v9.1.0/NEWS.md)
- [Commits](folio-org/folio-spring-support@v9.0.0...v9.1.0)

Updates `org.projectlombok:lombok` from 1.18.36 to 1.18.42
- [Changelog](https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown)
- [Commits](projectlombok/lombok@v1.18.36...v1.18.42)

Updates `org.folio:util` from 35.4.0 to 35.4.2
- [Release notes](https://github.com/folio-org/raml-module-builder/releases)
- [Changelog](https://github.com/folio-org/raml-module-builder/blob/v35.4.2/NEWS.md)
- [Commits](folio-org/raml-module-builder@v35.4.0...v35.4.2)

Updates `org.folio:mod-pubsub-client` from 2.16.0 to 2.16.3
- [Release notes](https://github.com/folio-org/mod-pubsub/releases)
- [Changelog](https://github.com/folio-org/mod-pubsub/blob/v2.16.3/NEWS.md)
- [Commits](folio-org/mod-pubsub@v2.16.0...v2.16.3)

Updates `org.hibernate.orm:hibernate-jpamodelgen` from 6.6.8.Final to 7.2.0.Final
- [Release notes](https://github.com/hibernate/hibernate-orm/releases)
- [Changelog](https://github.com/hibernate/hibernate-orm/blob/7.2.0/changelog.txt)
- [Commits](hibernate/hibernate-orm@6.6.8...7.2.0)

---
updated-dependencies:
- dependency-name: org.springframework.boot:spring-boot-starter-parent
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-deps
- dependency-name: org.folio:folio-spring-base
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.folio:folio-spring-system-user
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.folio:folio-spring-system-user
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.projectlombok:lombok
  dependency-version: 1.18.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-deps
- dependency-name: org.folio:util
  dependency-version: 35.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-deps
- dependency-name: org.folio:mod-pubsub-client
  dependency-version: 2.16.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-deps
- dependency-name: org.hibernate.orm:hibernate-jpamodelgen
  dependency-version: 7.2.0.Final
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-deps
...

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 Jan 18, 2026
@dependabot dependabot bot requested a review from a team as a code owner January 18, 2026 11:53
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Jan 18, 2026
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