Skip to content

chore(deps): bump the maven-dependencies group with 7 updates - #2876

Merged
lprimak merged 1 commit into
mainfrom
dependabot/maven/maven-dependencies-815cd983de
Sep 1, 2026
Merged

chore(deps): bump the maven-dependencies group with 7 updates#2876
lprimak merged 1 commit into
mainfrom
dependabot/maven/maven-dependencies-815cd983de

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the maven-dependencies group with 7 updates:

Package From To
org.apache.groovy:groovy-all 5.1.0 5.1.1
org.apache.groovy:groovy 5.1.0 5.1.1
org.hibernate.orm:hibernate-core 7.4.5.Final 7.4.6.Final
org.jsoup:jsoup 1.23.1 1.23.2
jakarta.json.bind:jakarta.json.bind-api 3.0.2 3.0.3
io.openliberty.tools:liberty-maven-plugin 3.12.2 3.12.3
com.flowlogix:flowlogix-jee 11.4.2 11.4.3

Updates org.apache.groovy:groovy-all from 5.1.0 to 5.1.1

Commits

Updates org.apache.groovy:groovy from 5.1.0 to 5.1.1

Commits

Updates org.apache.groovy:groovy from 5.1.0 to 5.1.1

Commits

Updates org.hibernate.orm:hibernate-core from 7.4.5.Final to 7.4.6.Final

Release notes

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

Release 7.4.6

Hibernate ORM 7.4.6.Final released

Today, we published a new release of Hibernate ORM 7.4: 7.4.6.Final.

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

Changelog

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

Changes in 7.4.6.Final (August 23, 2026)

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

** Bug * HHH-20788 [Quarkus 3.20.5 / Hibernate ORM 6.6.40.Final] quarkus.otel.logs.enabled=true fails SessionFactory build for TABLE_PER_CLASS collections * HHH-20783 hibernate.transactions{result="failure"} metric can transiently go negative due to non-atomic counter reads, breaking the whole Prometheus scrape on Micrometer 1.14+ * HHH-20779 Envers: unwrap proxies in collection-change audit work units * HHH-20776 CriteriaBuilder.literal() mistypes an enum constant declared with a class body * HHH-20772 ARRAY_AGG column in Jakarta Data query method cannot be mapped to result type property * HHH-20743 hibernate-maven-plugin enhance goal computes wrong class names when fileSets directory differs from classesDirectory * HHH-20707 Missing import for inner interface type in CDI accessor metamodel methods * HHH-20696 Implicit name of list index columns not applied by MetadataBuilder * HHH-20661 HQL UNION fails when unioning java.util.Date from different attribute paths * HHH-20624 StackOverflowError when creating entity manager with attribute converter hierarchy with generic parameter * HHH-20515 Adjust default for SessionCheckMode on Session.findMultiple() * HHH-20472 Generated metamodel class missing List import * HHH-20452 @​OneToMany mapping silently dropped when orm.xml contributes a partial overlay (entity-listeners only) to an entity whose @​Id is inherited from a @​MappedSuperclass * HHH-20438 Basic-array body predicates fail with AssertionError from SqmMappingModelHelper.resolveSqmPath * HHH-20348 DataException / ClassCastException when aggregating primitive

** Task * HHH-20736 Tune the content of javadocs to reduce the size of files published to Maven Central * HHH-20710 Update to hibernate-models 1.1.2

Commits
  • 43e2e9a [Jenkins release job] Preparing release 7.4.6.Final
  • cd34e60 [Jenkins release job] changelog.txt updated by release build 7.4.6.Final
  • 229571c HHH-20710 Add test for generic Map subtype resolution with JSON mapping
  • de419ce HHH-20710 Update to hibernate-models 1.1.2
  • 284a4be HHH-20788 Return null for TablePerSubclass and clarify informational nature o...
  • f74ba58 Make testsuite fit for JDK 28 Valhalla preview
  • 33465fe Add JDK 28 to the testing JDK list
  • 5e398fd Skip some tests causing nightly failures on MySQL due to a bug
  • cf53ffa HHH-20783 Add a dedicated failed-transactions counter to Statistics
  • f4e0be3 HHH-20772 add @​Incubating to new Processor options
  • Additional commits viewable in compare view

Updates org.jsoup:jsoup from 1.23.1 to 1.23.2

Release notes

Sourced from org.jsoup:jsoup's releases.

jsoup 1.23.2

jsoup 1.23.2 is out now. This release focuses largely on bug fixes, specification correctness, and performance improvements.

It brings closer alignment with the HTML, XML, URL, and form submission specifications; improves XML and W3C DOM conversion; and makes HTTP workloads more efficient through streamed request bodies and broader JDK HttpClient reuse.

This version also includes new node insertion methods for Elements, and DOM mutations now reject operations that would create a cycle.

jsoup is a Java library for working with real-world HTML and XML. It provides a very convenient API for extracting and manipulating data, using the best of HTML5 DOM methods and CSS selectors.

Download jsoup now.

Improvements

  • Improved consecutive StreamParser.selectFirst() calls during progressive parsing, so later matches are returned with their parsed contents when earlier selections had left them as parser lookahead. E.g., given <title>One</title><p id=hit>Full</p><p>Next</p>, selecting title and then #hit now advances the partial lookahead and returns <p id="hit">Full</p>, rather than returning an empty <p id="hit"></p> before its content is parsed. The updated readiness tracking follows StreamParser's normal emission order across implicit HTML structure and parser recovery. #2551
  • Improved XML parser performance and memory use for documents with many nested namespace declarations by recording namespace changes within each element scope. #2556
  • Improved W3CDom conversion performance for documents with many nested namespace declarations. The W3C converter now uses the same optimized namespace tracking as the XML parser. #2559
  • Improved W3CDom XML conversion to retain processing instructions, comments outside the root element, and CDATA sections, which were previously dropped or converted to text. #2572
  • DOM mutation methods, including child insertion and replacement, now reject operations that would create a cycle, such as making a node its own child or moving an ancestor beneath a descendant. #2552
  • Added Elements#before(Node), after(Node), prepend(Node), and append(Node) to match the existing HTML string methods. #953
  • Large file-backed uploads through Connection.requestBodyStream(InputStream) now stream directly with the JDK HttpClient on Java 11+, rather than being loaded fully into memory first. #2575
  • Extended Java 11+ HTTP client reuse from requests sharing a Jsoup.newSession() to ordinary Jsoup.connect() calls, reducing transport thread and connection setup churn under sustained request loads. Sessions with custom authentication or SSL contexts continue to use their own client. #2584

Changes

  • Aligned the XML parser stack depth and lookups to the configured maximum, which now defaults to 512 for both HTML and XML. Use Parser#setMaxDepth(int) to configure. #2570

Bug Fixes

  • Fixed W3CDom namespace conversion in several cases: #2559
    • Namespace declarations and prefixed attributes now carry the correct namespace URI, so namespace-aware DOM lookups work as expected.
    • Attributes added after parsing, or included through subtree conversion, now use inherited prefix declarations.
    • Namespace declarations now apply regardless of attribute order, and an empty declaration shadows an inherited binding only within its scope.
    • With namespace awareness disabled, inherited and undeclared prefixes now receive the declarations needed for XML serialization.
    • Valid HTML names that are not XML QNames, such as a:b:c, are normalized. Attributes that still cannot be represented are skipped, and unrepresentable elements no longer change the surrounding tree.
  • Fixed W3CDom conversion of programmatically created or renamed elements whose names can be represented in a jsoup HTML DOM but are not valid XML names, such as 1abc. These names are now normalized (e.g. _1abc) instead of causing a NullPointerException. #2560
  • Fixed XML doctype serialization when a system identifier contains a double quote, which could otherwise produce invalid XML. #2571
  • XML serialization now repairs element and attribute names that start with an invalid character, rather than outputting null elements or dropping attributes. For example, an attribute named 1a is written as _1a. Additional leading underscores keep repaired attribute names unique if they conflict with another attribute. #2573
  • Supplementary Unicode characters are now escaped correctly when serializing with non-UTF, non-ASCII output charsets such as ISO-8859-1. Previously, characters could be emitted unescaped when their low 16-bit value was representable by the configured charset, causing replacement or corruption when the output was encoded. #2578
  • Fixed the JDK HttpClient implementation to accept responses missing a Content-Type header, matching the HttpURLConnection implementation. #2549
  • Fixed HTTP response content-type matching to handle media types case-insensitively and recognize structured +xml suffixes, including vendor-specific media types. #2550
  • HTTP request URL normalization now percent-encodes ASCII control characters, DEL, and embedded fragment delimiters, keeping normalized URLs valid for HTTP requests while preserving existing escapes. #2585
  • Corrected multipart form encoding to percent-escape CR and LF in field names and filenames, matching the HTML form submission specification. Multipart file content-types containing CR or LF are now rejected with a ValidationException. #2555
  • Aligned trailing comment placement with the HTML specification: comments after </body> remain children of the html element, while comments after </html> remain children of the document. #2557
  • When using the optional re2j regular expression engine, memory allocation errors caused by complex selector patterns at match time are now normalized to a ValidationException with a Pattern complexity error message.
  • Fixed parsing of malformed SVG and MathML content so that breakout HTML tags are placed according to the HTML specification. #2562
  • Fixed deeply nested malformed HTML parsing that could lose the document body because stack lookups did not align to the configured maximum parser depth. #2569
  • Aligned RCDATA, RAWTEXT, and script-data parsing with the HTML specification: malformed end tags no longer consume following markup, unclosed title/textarea content stays text through EOF, and custom text tags match exact names. #2577
  • Improved URL validation during HTTP/HTTPS URL resolution and cleaning; resolved URLs without a host are now rejected instead of being accepted based only on their scheme prefix, aligning to RFC 9110. Valid relative links and non-HTTP(S) schemes are unchanged. #2579
  • Redirects with malformed single-slash HTTP locations now use standard URL resolution to align with browsers. #2580
  • Template fragment parsing now handles unmatched </template> tags without throwing a ValidationException. #2581
  • Improved source tracking for adopted formatting elements and malformed markup ending at EOF. #2582

... (truncated)

Changelog

Sourced from org.jsoup:jsoup's changelog.

1.23.2 (2026-Aug-26)

Improvements

  • Improved consecutive StreamParser.selectFirst(...) calls during progressive parsing, so later matches are returned with their parsed contents when earlier selections had left them as parser lookahead. E.g., given <title>One</title><p id=hit>Full</p><p>Next</p>, selecting title and then #hit now advances the partial lookahead and returns <p id="hit">Full</p>, rather than returning an empty <p id="hit"></p> before its content is parsed. The updated readiness tracking follows StreamParser's normal emission order across implicit HTML structure and parser recovery. #2551
  • Improved XML parser performance and memory use for documents with many nested namespace declarations by recording namespace changes within each element scope. #2556
  • Improved W3CDom conversion performance for documents with many nested namespace declarations. The W3C converter now uses the same optimized namespace tracking as the XML parser. #2559
  • Improved W3CDom XML conversion to retain processing instructions, comments outside the root element, and CDATA sections, which were previously dropped or converted to text. #2572
  • DOM mutation methods, including child insertion and replacement, now reject operations that would create a cycle, such as making a node its own child or moving an ancestor beneath a descendant. #2552
  • Added Elements#before(Node), after(Node), prepend(Node), and append(Node) to match the existing HTML string methods. #953
  • Large file-backed uploads through Connection.requestBodyStream(InputStream) now stream directly with the JDK HttpClient on Java 11+, rather than being loaded fully into memory first. #2575
  • Extended Java 11+ HTTP client reuse from requests sharing a Jsoup.newSession() to ordinary Jsoup.connect(...) calls, reducing transport thread and connection setup churn under sustained request loads. Sessions with custom authentication or SSL contexts continue to use their own client. #2584

Changes

  • Aligned the XML parser stack depth and lookups to the configured maximum, which now defaults to 512 for both HTML and XML. Use Parser#setMaxDepth(int) to configure. #2570

Bug Fixes

  • Fixed W3CDom namespace conversion in several cases: #2559
    • Namespace declarations and prefixed attributes now carry the correct namespace URI, so namespace-aware DOM lookups work as expected.
    • Attributes added after parsing, or included through subtree conversion, now use inherited prefix declarations.
    • Namespace declarations now apply regardless of attribute order, and an empty declaration shadows an inherited binding only within its scope.
    • With namespace awareness disabled, inherited and undeclared prefixes now receive the declarations needed for XML serialization.
    • Valid HTML names that are not XML QNames, such as a:b:c, are normalized. Attributes that still cannot be represented are skipped, and unrepresentable elements no longer change the surrounding tree.
  • Fixed W3CDom conversion of programmatically created or renamed elements whose names can be represented in a jsoup HTML DOM but are not valid XML names, such as 1abc. These names are now normalized (e.g. _1abc) instead of causing a NullPointerException. #2560
  • Fixed XML doctype serialization when a system identifier contains a double quote, which could otherwise produce invalid XML. #2571
  • XML serialization now repairs element and attribute names that start with an invalid character, rather than outputting null elements or dropping attributes. For example, an attribute named 1a is written as _1a. Additional leading underscores keep repaired attribute names unique if they conflict with another attribute. #2573
  • Supplementary Unicode characters are now escaped correctly when serializing with non-UTF, non-ASCII output charsets such as ISO-8859-1. Previously, characters could be emitted unescaped when their low 16-bit value was representable by the configured charset, causing replacement or corruption when the output was encoded. #2578
  • Fixed the JDK HttpClient implementation to accept responses missing a Content-Type header, matching the HttpURLConnection implementation. #2549
  • Fixed HTTP response content-type matching to handle media types case-insensitively and recognize structured +xml suffixes, including vendor-specific media types. #2550
  • HTTP request URL normalization now percent-encodes ASCII control characters, DEL, and embedded fragment delimiters, keeping normalized URLs valid for HTTP requests while preserving existing escapes. #2585
  • Corrected multipart form encoding to percent-escape CR and LF in field names and filenames, matching the HTML form submission specification. Multipart file content-types containing CR or LF are now rejected with a ValidationException. #2555
  • Aligned trailing comment placement with the HTML specification: comments after </body> remain children of the html element, while comments after </html> remain children of the document. #2557
  • When using the optional re2j regular expression engine, memory allocation errors caused by complex selector patterns at match time are now normalized to a ValidationException with a Pattern complexity error message.
  • Fixed parsing of malformed SVG and MathML content so that breakout HTML tags are placed according to the HTML specification. #2562
  • Fixed deeply nested malformed HTML parsing that could lose the document body because stack lookups did not align to the configured maximum parser depth. #2569
  • Aligned RCDATA, RAWTEXT, and script-data parsing with the HTML specification: malformed end tags no longer consume following markup, unclosed title/textarea content stays text through EOF, and custom text tags match exact names. #2577
  • Improved URL validation during HTTP/HTTPS URL resolution and cleaning; resolved URLs without a host are now rejected instead of being accepted based only on their scheme prefix, aligning to RFC 9110. Valid relative links and non-HTTP(S) schemes are unchanged. #2579
  • Redirects with malformed single-slash HTTP locations now use standard URL resolution to align with browsers. #2580
  • Template fragment parsing now handles unmatched </template> tags without throwing a ValidationException. #2581
  • Improved source tracking for adopted formatting elements and malformed markup ending at EOF. #2582
Commits
  • fbc7775 [maven-release-plugin] prepare release jsoup-1.23.2
  • 133ebde Release 1.23.2 notes
  • be2a74a Encode control chars during request URL normalization (#2585)
  • 868f2eb Java 11 HTTP client reuse covers ordinary connections (#2584)
  • 19c758e Get Animal Sniffer to run over test code as well.
  • 17bb839 Fix source tracking through HTML repair and malformed EOF (#2582)
  • cad054a Template stack checks need to exclude the fragment context (#2581)
  • 46b6208 Paranoimia
  • 66be2da HTTP redirects use standard URL resolution for single-slash locations (#2580)
  • b035b62 Make hostless HTTP(S) URLs fail resolution and cleaning (#2579)
  • Additional commits viewable in compare view

Updates jakarta.json.bind:jakarta.json.bind-api from 3.0.2 to 3.0.3

Release notes

Sourced from jakarta.json.bind:jakarta.json.bind-api's releases.

3.0.3

What's Changed

Full Changelog: jakartaee/jsonb-api@3.0.2...3.0.3

Commits
  • d2beb53 Prepare release jakarta.json.bind:jakarta.json.bind-parent:3.0.3
  • ca865cd Merge pull request #419 from KyleAure/fix-char-encoding-test-failures-downstream
  • 0278fe2 Apply suggestions from code review
  • c5a80c3 Fix tests that make wrong assumptions about character encoding
  • 3e455fd Merge pull request #417 from KyleAure/347-disable-testCreatorDeserialization
  • 4ce3833 challenge: skip test testCreatorDeserialization
  • 374cc54 Merge pull request #414 from KyleAure/344-SerializersCustomizationCDITest-dow...
  • cf22cdc fix: #344 tck challenge SerializersCustomizationCDITest
  • 6c8e882 Prepare next development cycle jakarta.json.bind:jakarta.json.bind-parent:3.0...
  • See full diff in compare view

Updates io.openliberty.tools:liberty-maven-plugin from 3.12.2 to 3.12.3

Release notes

Sourced from io.openliberty.tools:liberty-maven-plugin's releases.

Liberty Maven Plug-in 3.12.3

Version 3.12.3 of the Liberty Maven Plugin is a minor release with a bug fix

What's Changed

  • Add clickable server URL to dev mode port info output
  • Fixed misleading expansion variable log message in ci.commonin OpenLiberty/ci.maven#2087

See the commit log for the full set of the changes since the previous release.

The Liberty Maven Plugin 3.12.3 release is available on the Maven Central repository.

Commits

Updates com.flowlogix:flowlogix-jee from 11.4.2 to 11.4.3

Release notes

Sourced from com.flowlogix:flowlogix-jee's releases.

11.4.3

Bug fixes

Full Changelog: flowlogix/flowlogix@Version-11.4.2...Version-11.4.3

Commits
  • dbe659d [maven-release-plugin] prepare release Version-11.4.3
  • b4ebfd4 bugfix(livereload): early close of the web socket when reload is requested
  • 37c5850 build(deps): bump the github-actions-dependencies group with 2 updates (#1672)
  • 8beca8f build(deps): bump the maven-dependencies group with 2 updates (#1671)
  • See full diff 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 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 maven-dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [org.apache.groovy:groovy-all](https://github.com/apache/groovy) | `5.1.0` | `5.1.1` |
| [org.apache.groovy:groovy](https://github.com/apache/groovy) | `5.1.0` | `5.1.1` |
| [org.hibernate.orm:hibernate-core](https://github.com/hibernate/hibernate-orm) | `7.4.5.Final` | `7.4.6.Final` |
| [org.jsoup:jsoup](https://github.com/jhy/jsoup) | `1.23.1` | `1.23.2` |
| [jakarta.json.bind:jakarta.json.bind-api](https://github.com/jakartaee/jsonb-api) | `3.0.2` | `3.0.3` |
| [io.openliberty.tools:liberty-maven-plugin](https://github.com/OpenLiberty/ci.maven) | `3.12.2` | `3.12.3` |
| [com.flowlogix:flowlogix-jee](https://github.com/flowlogix/flowlogix) | `11.4.2` | `11.4.3` |


Updates `org.apache.groovy:groovy-all` from 5.1.0 to 5.1.1
- [Commits](https://github.com/apache/groovy/commits)

Updates `org.apache.groovy:groovy` from 5.1.0 to 5.1.1
- [Commits](https://github.com/apache/groovy/commits)

Updates `org.apache.groovy:groovy` from 5.1.0 to 5.1.1
- [Commits](https://github.com/apache/groovy/commits)

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

Updates `org.jsoup:jsoup` from 1.23.1 to 1.23.2
- [Release notes](https://github.com/jhy/jsoup/releases)
- [Changelog](https://github.com/jhy/jsoup/blob/master/CHANGES.md)
- [Commits](jhy/jsoup@jsoup-1.23.1...jsoup-1.23.2)

Updates `jakarta.json.bind:jakarta.json.bind-api` from 3.0.2 to 3.0.3
- [Release notes](https://github.com/jakartaee/jsonb-api/releases)
- [Commits](jakartaee/jsonb-api@3.0.2...3.0.3)

Updates `io.openliberty.tools:liberty-maven-plugin` from 3.12.2 to 3.12.3
- [Release notes](https://github.com/OpenLiberty/ci.maven/releases)
- [Commits](OpenLiberty/ci.maven@liberty-maven-3.12.2...liberty-maven-3.12.3)

Updates `com.flowlogix:flowlogix-jee` from 11.4.2 to 11.4.3
- [Release notes](https://github.com/flowlogix/flowlogix/releases)
- [Commits](flowlogix/flowlogix@Version-11.4.2...Version-11.4.3)

---
updated-dependencies:
- dependency-name: org.apache.groovy:groovy-all
  dependency-version: 5.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.apache.groovy:groovy
  dependency-version: 5.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.apache.groovy:groovy
  dependency-version: 5.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.hibernate.orm:hibernate-core
  dependency-version: 7.4.6.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.jsoup:jsoup
  dependency-version: 1.23.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: jakarta.json.bind:jakarta.json.bind-api
  dependency-version: 3.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: io.openliberty.tools:liberty-maven-plugin
  dependency-version: 3.12.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: com.flowlogix:flowlogix-jee
  dependency-version: 11.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-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 Sep 1, 2026
@github-actions github-actions Bot added xml and removed java Pull requests that update Java code labels Sep 1, 2026
@lprimak
lprimak merged commit ca444c3 into main Sep 1, 2026
22 of 23 checks passed
@dependabot
dependabot Bot deleted the dependabot/maven/maven-dependencies-815cd983de branch September 1, 2026 18:31
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 xml

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant