Skip to content

build(deps): bump cia.project.versions.javers from 7.11.2 to 7.11.5#8741

Merged
pethers merged 3 commits into
masterfrom
dependabot/maven/cia.project.versions.javers-7.11.5
Jul 6, 2026
Merged

build(deps): bump cia.project.versions.javers from 7.11.2 to 7.11.5#8741
pethers merged 3 commits into
masterfrom
dependabot/maven/cia.project.versions.javers-7.11.5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 6, 2026

Copy link
Copy Markdown
Contributor

Bumps cia.project.versions.javers from 7.11.2 to 7.11.5.
Updates org.javers:javers-core from 7.11.2 to 7.11.5

Commits

Updates org.javers:javers-spring-jpa from 7.11.2 to 7.11.5

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps `cia.project.versions.javers` from 7.11.2 to 7.11.5.

Updates `org.javers:javers-core` from 7.11.2 to 7.11.5
- [Release notes](https://github.com/javers/javers/releases)
- [Commits](javers/javers@v7.11.2...v7.11.5)

Updates `org.javers:javers-spring-jpa` from 7.11.2 to 7.11.5
- [Release notes](https://github.com/javers/javers/releases)
- [Commits](javers/javers@v7.11.2...v7.11.5)

---
updated-dependencies:
- dependency-name: org.javers:javers-core
  dependency-version: 7.11.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.javers:javers-spring-jpa
  dependency-version: 7.11.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies java Pull requests that update Java code labels Jul 6, 2026
Copilot AI review requested due to automatic review settings July 6, 2026 09:44
@dependabot
dependabot Bot requested a review from pethers as a code owner July 6, 2026 09:44
@dependabot dependabot Bot added dependencies java Pull requests that update Java code labels Jul 6, 2026

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot can't review bot-authored pull requests automatically. A user with Copilot access can request a review manually.

@github-actions

github-actions Bot commented Jul 6, 2026

Copy link
Copy Markdown

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

Snapshot Warnings

⚠️: No snapshots were found for the head SHA 1e7bbcc.
Ensure that dependencies are being submitted on PR branches and consider enabling retry-on-snapshot-warnings. See the documentation for more information and troubleshooting advice.

Scanned Files

None

@pethers

pethers commented Jul 6, 2026

Copy link
Copy Markdown
Member

@copilot analyse and fix issues

[INFO] --- compiler:3.15.0:compile (default-compile) @ service.data.impl ---
Warning: Can't extract module name from jakarta.transaction-api-1.3.3.jar: Module 'java.transaction' is already on the module path!
Warning: Can't extract module name from jakarta.activation-2.0.1.jar: Module 'jakarta.activation' is already on the module path!
Warning: *************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************
Warning: * Required filename-based automodules detected: [aws-java-sdk-secretsmanager-1.12.797.jar, aws-java-sdk-core-1.12.797.jar, aws-secretsmanager-jdbc-2.1.2.jar, aws-secretsmanager-caching-java-2.2.0.jar, javers-spring-jpa-7.11.5.jar, javers-spring-7.11.5.jar, javers-core-7.11.5.jar, javers-persistence-sql-7.11.5.jar, lucene-analyzers-common-8.11.4.jar, hyperjaxb3-ejb-runtime-0.6.2.jar, jaxb2-basics-runtime-0.13.1.jar, ehcache-3.12.0.jar, cache-api-1.1.1.jar]. Please don't publish this project to a public artifact repository! *
Warning: *************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 55 source files with javac [debug:lines,vars,source parameters release 21 module-path] to target/classes
[INFO] -------------------------------------------------------------
Error: COMPILATION ERROR :
[INFO] -------------------------------------------------------------
Error: module not found: java.activation
[INFO] 1 error
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for cia-all 2026-SNAPSHOT:
[INFO]

[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 55 source files with javac [debug:lines,vars,source parameters release 21 module-path] to target/classes
[INFO] -------------------------------------------------------------
Error: COMPILATION ERROR :
[INFO] -------------------------------------------------------------
Error: module not found: java.activation
[INFO] 1 error

…ers-spring-jpa

Co-authored-by: pethers <1726836+pethers@users.noreply.github.com>

Copilot AI commented Jul 6, 2026

Copy link
Copy Markdown
Contributor

@copilot analyse and fix issues

[INFO] --- compiler:3.15.0:compile (default-compile) @ service.data.impl ---
...

Fixed in 1e7bbcc. Root cause: javers-spring-jpa 7.11.5 switched its transitive hibernate-core dependency from groupId org.hibernate to org.hibernate.orm (Hibernate ORM 7.1.8.Final), which wasn't covered by the existing exclusion in service.data.impl/pom.xml. That pulled in jakarta.xml.bind-api:4.0.2 (module jakarta.xml.bind), winning the version conflict over jakarta.xml.bind-api:2.3.3 (module java.xml.bind) needed by the project's own JAXB tooling, which broke the module path and caused the "module not found: java.activation" compile error. Added an exclusion for org.hibernate.orm:hibernate-core and verified mvn -pl service.data.impl -am clean compile/install and unit tests pass.

@sonarqubecloud

sonarqubecloud Bot commented Jul 6, 2026

Copy link
Copy Markdown

@github-actions

github-actions Bot commented Jul 6, 2026

Copy link
Copy Markdown

📚 Javadoc Generated

The Javadoc documentation has been generated for this PR. Download the javadoc artifact from the workflow run to view the complete API documentation with UML diagrams.

@pethers
pethers merged commit d773f5b into master Jul 6, 2026
11 checks passed
@pethers
pethers deleted the dependabot/maven/cia.project.versions.javers-7.11.5 branch July 6, 2026 15:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies java Pull requests that update Java code size/XS

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants