Skip to content

Bump the resttestgen-dependencies group across 1 directory with 18 updates - #6

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/resttestgen/resttestgen-dependencies-242f80385c
Open

Bump the resttestgen-dependencies group across 1 directory with 18 updates#6
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/resttestgen/resttestgen-dependencies-242f80385c

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the resttestgen-dependencies group with 14 updates in the /resttestgen directory:

Package From To
org.apache.logging.log4j:log4j-core 2.19.0 2.26.1
com.google.code.gson:gson 2.10 2.14.0
org.yaml:snakeyaml 2.0 2.6
com.google.guava:guava 31.1-jre 33.6.0-jre
org.jgrapht:jgrapht-core 1.5.1 1.5.3
com.squareup.okhttp3:okhttp 4.10.0 5.4.0
org.apache.opennlp:opennlp-tools 1.9.4 2.5.11
com.jayway.jsonpath:json-path 2.7.0 3.0.0
org.iban4j:iban4j 3.2.3-RELEASE 3.2.13-RELEASE
nz.ac.waikato.cms.weka:weka-stable 3.8.6 3.8.7
dev.langchain4j:langchain4j-open-ai 1.9.1 1.18.0
org.slf4j:slf4j-nop 2.0.17 2.0.18
org.junit.jupiter:junit-jupiter-api 5.9.0 6.1.2
gradle-wrapper 8.14 9.6.1

Updates org.apache.logging.log4j:log4j-core from 2.19.0 to 2.26.1

Updates com.google.code.gson:gson from 2.10 to 2.14.0

Release notes

Sourced from com.google.code.gson:gson's releases.

Gson 2.14.0

What's Changed

  • Add type adapters for java.time classes by @​eamonnmcmanus in google/gson#2948

    When the java.time API is available, Gson automatically can read and write instances of classes like Instant and Duration. The format it uses essentially freezes the JSON representation that ReflectiveTypeAdapterFactory established by default, based on the private fields of java.time classes. That's not a great representation, but it is understandable. Changing it to anything else would break compatibility with systems that are expecting the current format.

    With this change, Gson no longer tries to access private fields of these classes using reflection. So it is no longer necessary to run with --add-opens for these classes on recent JDKs.

  • Remove com.google.gson.graph by @​eamonnmcmanus in google/gson#2990.

    This package was not part of any released artifact and depended on Gson internals in potentially problematic ways.

  • Validate that strings being parsed as integers consist of ASCII characters by @​eamonnmcmanus in google/gson#2995

    Previously, strings could contain non-ASCII Unicode digits and still be parsed as integers. That's inconsistent with how JSON numbers are treated.

  • Fix duplicate key detection when first value is null by @​andrewstellman in google/gson#3006

    This could potentially break code that was relying on the incorrect behaviour. For example, this JSON string was previously accepted but will no longer be: {"foo": null, "foo": bar}.

  • Remove Serializable from internal Type implementation classes. by @​eamonnmcmanus in google/gson#3011

    The nested classes ParameterizedTypeImpl, GenericArrayTypeImpl, and WildcardTypeImpl in GsonTypes are implementations of the corresponding types (without Impl) in java.lang.reflect. For some reason, they were serializable, even though the java.lang.reflect implementations are not. Having unnecessarily serializable classes could conceivably have been a security problem if they were part of a larger exploit using serialization. (We do not consider this a likely scenario and do not suggest that you need to update Gson just to get this change.)

  • Add LegacyProtoTypeAdapterFactory. by @​eamonnmcmanus in google/gson#3014

    This is not part of any released artifact, but may be of use when trying to fix code that is currently accessing the internals of protobuf classes via reflection.

  • Make AppendableWriter do flush and close if delegation object supports by @​MukjepScarlet in google/gson#2925

Other less visible changes

New Contributors

Full Changelog: google/gson@gson-parent-2.13.2...gson-parent-2.14.0

Gson 2.13.2

The main changes in this release are just newer dependencies.

... (truncated)

Changelog

Sourced from com.google.code.gson:gson's changelog.

Change Log

The change log for versions newer than 2.10 is available only on the GitHub Releases page.

Commits
  • 3ff35d6 [maven-release-plugin] prepare release gson-parent-2.14.0
  • a3024fd Bump the maven group with 13 updates (#3002)
  • 5689ffe Bump the github-actions group across 1 directory with 3 updates (#3018)
  • 48db33c Add LegacyProtoTypeAdapterFactory. (#3014)
  • 53d703e Update outdated comment regarding serializable types (#3012)
  • 0189b72 Remove Serializable from internal Type implementation classes. (#3011)
  • f4d371d Fix duplicate key detection when first value is null (#3006)
  • 27d9ba1 Fix typo in README (JPMS dependencies section) (#3005)
  • 1fa9b7a Validate that strings being parsed as integers consist of ASCII characters (#...
  • b7d5954 Add iterator fail-fast tests for LinkedTreeMap.clear() (#2992)
  • Additional commits viewable in compare view

Updates org.yaml:snakeyaml from 2.0 to 2.6

Commits
  • 015ab57 [maven-release-plugin] prepare for next development iteration
  • 4795519 Update info
  • 9c36c69 Introduce devcontainer
  • 0c5b3e5 fix: add debug level to internal logger
  • a65b131 Merge branch 'master' into devcontainers
  • 788a98b Update changes
  • 556b4bf Add info for devcontainer
  • 0828c39 ops: migrate deployment from OSSRH to Central Portal
  • 30d6a3a Add a test for issue 1108
  • 2da4c6d Remove unrelated code
  • Additional commits viewable in compare view

Updates com.google.guava:guava from 31.1-jre to 33.6.0-jre

Release notes

Sourced from com.google.guava:guava's releases.

33.6.0

Maven

<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
  <version>33.6.0-jre</version>
  <!-- or, for Android: -->
  <version>33.6.0-android</version>
</dependency>

Jar files

Guava requires one runtime dependency, which you can download here:

Javadoc

JDiff

Changelog

  • Migrated some classes from finalize() to PhantomReference in preparation for the removal of finalization. (786b619dd6, 7c6b17c, aeef90988d)
  • cache: Deprecated CacheBuilder APIs that use TimeUnit in favor of those that use Duration. (73f8b0bb84)
  • collect: Added toImmutableSortedMap collectors that use the natural comparator. (64d70b9f94)
  • collect: Changed ConcurrentHashMultiset, ImmutableMultimap, and TreeMultiset deserialization to avoid mutating final fields. In extremely unlikely scenarios in which an instance of that type contains an object that refers back to that instance, this could lead to a broken instance that throws NullPointerException when used. (8240c7e596, 046468055f)
  • graph: Removed @Beta from all APIs in the package. (dae9566b73)
  • graph: Added support to Graphs.transitiveClosure() for different strategies for adding self-loops. (2e13df25b2)
  • graph: Added an asNetwork() view to Graph and ValueGraph. (909c593c61)
  • hash: Added BloomFilter.serializedSize(). (df9bcc251a)
  • net: Added HttpHeaders.CDN_CACHE_CONTROL. (75331b5030)

33.5.0

Maven

<dependency>
</tr></table> 

... (truncated)

Commits

Updates org.jgrapht:jgrapht-core from 1.5.1 to 1.5.3

Changelog

Sourced from org.jgrapht:jgrapht-core's changelog.

HISTORY

Changes to JGraphT in each version:

  • version 1.6.0 (Under development)

    • Prepared release cycle 1.6.0: removed deprecated code (contributed by John Sichi)
    • Upgraded to Java 21, fixed warnings, and modernized code (contributed by Joris Kinable)
    • Added BoundedPrunedYenKShortestPath (contributed by Shai Eilat)
    • Added jgrapht-osm package for OpenStreetMap integration (contributed by Shai Eilat)
    • Optimized AllDirectedPaths in non-simple-paths mode (contributed by Shai Eilat)
    • Optimized AllDirectedPaths with forward pruning (contributed by Shai Eilat)
    • Optimized DijkstraManyToManyShortestPaths.getPaths(v) (contributed by Shai Eilat)
    • Added exact Hamiltonian path algorithms BacktrackingHamiltonianPath, HeldKarpHamiltonianPath, and DagHamiltonianPath (contributed by Shai Eilat)
    • Added LabelCorrectingMultiObjectiveShortestPath (contributed by Mario Fuentes Jimenez)
    • Refactored BoykovKolmogorovMFImpl orphan adoption (contributed by Arithro Choudhury)
  • version 1.5.3 (10-Apr-2026)

    • Updated dependencies (contributed by Joris Kinable and Dimitrios Michail)
    • Fixed a bug in DOTExporter causing graph attributes not to be exported correctly. (contributed by vab2048)
    • Fixed DoublyLinkedList for compatibility with Java 21 (reported by Liam Miller-Cushon, contributed by Sung Ho Yoon)
    • Fixed a bug in GmlExporter to use system line separator consistently (contributed by Sung Ho Yoon)
    • Migrated to JUnit 5 (contributed by Sung Ho Yoon)
    • Javadoc, Maven, README, and CI maintenance (contributed by Sung Ho Yoon)
    • Miscellaneous code maintenance (contributed by Sung Ho Yoon)
    • Added missing license headers (contributed by Sung Ho Yoon)
    • Added matrix build (Ubuntu, MacOS, Windows) to CI (contributed by Sung Ho Yoon)
    • Tidied up logging in VF2SubgraphIsomorphismState (contributed by Albgarsan)
    • Added FarthestInsertionHeuristicTSP algorithm (contributed by J. Alejandro Cornejo-Acosta)
    • Added GonHeuristic algorithm in new alg.centers package (contributed by J. Alejandro Cornejo-Acosta)
    • Prevent edge weight modification in AsUnmodifiableGraph and add tests (contributed by Sung Ho Yoon)
    • Rename SorensenIndexLinkPrediction to remove non-ASCII characters (contributed by Feng Wenhan)
    • Fixed backslashing interpretation in DOTEventDrivenImporter (contributed by Feng Wenhan)
    • Fixed SuurballeKDisjointShortestPaths modified weight calculation (contributed by Yuri Bilyarov)
    • Added KouMarkowskyBermanAlgorithm implementation of SteinerTreeAlgorithm (contributed by Lena Büttel and Dimitrios Michail)
    • Added GreedyModularityAlgorithm and NaiveGreedyModularityAlgorithm (contributed by Antonia Tsiftsi and Dimitrios Michail)
    • Improved performance of filtered AsSubgraph creation (contributed by Kirill A. Korinsky)
    • Improved performance of BFSShortestPath with early termination (contributed by Pratyush Goyal)
    • Improved documentation of PathValidator (contributed by tobi-emx)
    • Added DagAllPathsCounter (contributed by Pasha Finkelshteyn)
    • Added subgraph support to DOTExporter (contributed by Nicolas Rol)
    • Fixed Graphs.addAllEdges with custom weighted edge types (contributed by John Sichi)
    • Added KConnectivityFlowAlgorithm (contributed by Azim Barhoumi and Paul Enjalbert)
    • Improved AsSynchronizedGraph cache performance (contributed by Andriy Palamarchuk)
    • Optimized TransitiveReduction (contributed by Benoit Chatain Lacelle)
    • Optimized ColorRefinementAlgorithm (contributed by Johannes M Dieterich)
  • version 1.5.2 (2-May-2023)

    • Prepared release cycle 1.5.2: removed deprecated code, updated dependencies (contributed by Joris Kinable)
    • Fixed NPE when no path exists in DijkstraManyToManyShortestPaths (contributed by Dimitrios Michail)
    • Fixed NaN exception in case of a zero displacement in FRLayoutAlgorithm2D (contributed by Dimitrios Michail)

... (truncated)

Commits
  • be2abc3 [maven-release-plugin] prepare release jgrapht-1.5.3
  • 7b585c3 Do the thing
  • 0d6de9b [maven-release-plugin] rollback the release of jgrapht-1.5.3
  • 091a78f [maven-release-plugin] prepare for next development iteration
  • 106a822 [maven-release-plugin] prepare release jgrapht-1.5.3
  • 9b98491 Update ReleaseProcess.md with environment variable info
  • 7a32871 Format again.
  • 49b2bfb Credits for last merge.
  • f169b26 Missing credit.
  • b36dc14 Optimize ColorRefinement memory footprint and performance. (#1301)
  • Additional commits viewable in compare view

Updates org.jgrapht:jgrapht-io from 1.5.1 to 1.5.3

Changelog

Sourced from org.jgrapht:jgrapht-io's changelog.

HISTORY

Changes to JGraphT in each version:

  • version 1.6.0 (Under development)

    • Prepared release cycle 1.6.0: removed deprecated code (contributed by John Sichi)
    • Upgraded to Java 21, fixed warnings, and modernized code (contributed by Joris Kinable)
    • Added BoundedPrunedYenKShortestPath (contributed by Shai Eilat)
    • Added jgrapht-osm package for OpenStreetMap integration (contributed by Shai Eilat)
    • Optimized AllDirectedPaths in non-simple-paths mode (contributed by Shai Eilat)
    • Optimized AllDirectedPaths with forward pruning (contributed by Shai Eilat)
    • Optimized DijkstraManyToManyShortestPaths.getPaths(v) (contributed by Shai Eilat)
    • Added exact Hamiltonian path algorithms BacktrackingHamiltonianPath, HeldKarpHamiltonianPath, and DagHamiltonianPath (contributed by Shai Eilat)
    • Added LabelCorrectingMultiObjectiveShortestPath (contributed by Mario Fuentes Jimenez)
    • Refactored BoykovKolmogorovMFImpl orphan adoption (contributed by Arithro Choudhury)
  • version 1.5.3 (10-Apr-2026)

    • Updated dependencies (contributed by Joris Kinable and Dimitrios Michail)
    • Fixed a bug in DOTExporter causing graph attributes not to be exported correctly. (contributed by vab2048)
    • Fixed DoublyLinkedList for compatibility with Java 21 (reported by Liam Miller-Cushon, contributed by Sung Ho Yoon)
    • Fixed a bug in GmlExporter to use system line separator consistently (contributed by Sung Ho Yoon)
    • Migrated to JUnit 5 (contributed by Sung Ho Yoon)
    • Javadoc, Maven, README, and CI maintenance (contributed by Sung Ho Yoon)
    • Miscellaneous code maintenance (contributed by Sung Ho Yoon)
    • Added missing license headers (contributed by Sung Ho Yoon)
    • Added matrix build (Ubuntu, MacOS, Windows) to CI (contributed by Sung Ho Yoon)
    • Tidied up logging in VF2SubgraphIsomorphismState (contributed by Albgarsan)
    • Added FarthestInsertionHeuristicTSP algorithm (contributed by J. Alejandro Cornejo-Acosta)
    • Added GonHeuristic algorithm in new alg.centers package (contributed by J. Alejandro Cornejo-Acosta)
    • Prevent edge weight modification in AsUnmodifiableGraph and add tests (contributed by Sung Ho Yoon)
    • Rename SorensenIndexLinkPrediction to remove non-ASCII characters (contributed by Feng Wenhan)
    • Fixed backslashing interpretation in DOTEventDrivenImporter (contributed by Feng Wenhan)
    • Fixed SuurballeKDisjointShortestPaths modified weight calculation (contributed by Yuri Bilyarov)
    • Added KouMarkowskyBermanAlgorithm implementation of SteinerTreeAlgorithm (contributed by Lena Büttel and Dimitrios Michail)
    • Added GreedyModularityAlgorithm and NaiveGreedyModularityAlgorithm (contributed by Antonia Tsiftsi and Dimitrios Michail)
    • Improved performance of filtered AsSubgraph creation (contributed by Kirill A. Korinsky)
    • Improved performance of BFSShortestPath with early termination (contributed by Pratyush Goyal)
    • Improved documentation of PathValidator (contributed by tobi-emx)
    • Added DagAllPathsCounter (contributed by Pasha Finkelshteyn)
    • Added subgraph support to DOTExporter (contributed by Nicolas Rol)
    • Fixed Graphs.addAllEdges with custom weighted edge types (contributed by John Sichi)
    • Added KConnectivityFlowAlgorithm (contributed by Azim Barhoumi and Paul Enjalbert)
    • Improved AsSynchronizedGraph cache performance (contributed by Andriy Palamarchuk)
    • Optimized TransitiveReduction (contributed by Benoit Chatain Lacelle)
    • Optimized ColorRefinementAlgorithm (contributed by Johannes M Dieterich)
  • version 1.5.2 (2-May-2023)

    • Prepared release cycle 1.5.2: removed deprecated code, updated dependencies (contributed by Joris Kinable)
    • Fixed NPE when no path exists in DijkstraManyToManyShortestPaths (contributed by Dimitrios Michail)
    • Fixed NaN exception in case of a zero displacement in FRLayoutAlgorithm2D (contributed by Dimitrios Michail)

... (truncated)

Commits
  • be2abc3 [maven-release-plugin] prepare release jgrapht-1.5.3
  • 7b585c3 Do the thing
  • 0d6de9b [maven-release-plugin] rollback the release of jgrapht-1.5.3
  • 091a78f [maven-release-plugin] prepare for next development iteration
  • 106a822 [maven-release-plugin] prepare release jgrapht-1.5.3
  • 9b98491 Update ReleaseProcess.md with environment variable info
  • 7a32871 Format again.
  • 49b2bfb Credits for last merge.
  • f169b26 Missing credit.
  • b36dc14 Optimize ColorRefinement memory footprint and performance. (#1301)
  • Additional commits viewable in compare view

Updates com.squareup.okhttp3:okhttp from 4.10.0 to 5.4.0

Changelog

Sourced from com.squareup.okhttp3:okhttp's changelog.

Version 5.4.0

2026-06-08

  • New: Add superpowers to interceptors. Interceptors can now override anything settable on OkHttpClient.Builder, such as the cache, connection pool, socket factory, and DNS. We expect this will allow most users to use interceptors everywhere, insted of mixing and matching interceptors with custom Call.Factory wrappers.
  • Fix: Limit each HTTP/2 response to 256 KiB of total headers.
  • Upgrade: [kotlinx.coroutines 1.11.0][coroutines_1_11_0]. This is used by the optional okhttp-coroutines artifact.
  • Upgrade: [GraalVM 25.0.3][graalvm_25].
  • Upgrade: [Okio 3.17.0][okio_3_17_0].

Version 5.3.2

2025-11-18

  • Fix: Don't delay triggering timeouts. In Okio 3.16.0 we introduced a regression that caused timeouts to fire later than they were supposed to.

  • Upgrade: [Okio 3.16.4][okio_3_16_4].

Version 5.3.1

2025-11-16

This release is the same as 5.3.0. Okio 3.16.3 didn't have a necessary fix!

  • Upgrade: [Okio 3.16.3][okio_3_16_3].

Version 5.3.0

2025-10-30

  • New: Add tags to Call, including computable tags. Use this to attach application-specific metadata to a Call in an EventListener or Interceptor. The tag can be read in any other EventListener or Interceptor.

      override fun intercept(chain: Interceptor.Chain): Response {
        chain.call().tag(MyAnalyticsTag::class) {
          MyAnalyticsTag(...)
        }
    return chain.proceed(chain.request())
    
    }

... (truncated)

Commits

Updates org.apache.opennlp:opennlp-tools from 1.9.4 to 2.5.11

Release notes

Sourced from org.apache.opennlp:opennlp-tools's releases.

OpenNLP 2.5.11

What's Changed

Full Changelog: apache/opennlp@opennlp-2.5.10...opennlp-2.5.11

OpenNLP 2.5.10

What's Changed

... (truncated)

Commits
  • 616de7e [maven-release-plugin] prepare release opennlp-2.5.11
  • 721dfe7 [2.x]: Bump actions/checkout from 7.0.0 to 7.0.1 (#1188)
  • 1b6bba2 [2.x] OPENNLP-1891: Harden Deserialization in BaseModel (#1186)
  • 7493bc1 [2.x]: Bump actions/setup-java from 5.5.0 to 5.6.0 (#1183)
  • cb33749 OPENNLP-1890 - Correct location of test classes from 3.x cherry pick
  • e09525d OPENNLP-1890: Using allowlist based class loading in StringInterners
  • 79d4004 OPENNLP-1890: Using allowlist based class loading in StreamFactoryRegistry
  • 9be0a99 Allowlist based class Instantiation (#1178)
  • a12338f [2.x]: OPENNLP-1856: Update JUnit to 6.1.2 (#1174)
  • 70d87fb [2.x]: Bump actions/setup-java from 5.4.0 to 5.5.0 (#1156)
  • Additional commits viewable in compare view

Updates com.jayway.jsonpath:json-path from 2.7.0 to 3.0.0

Release notes

Sourced from com.jayway.jsonpath:json-path's releases.

json-path-3.0.0

What's Changed

New Contributors

Full Changelog: json-path/JsonPath@json-path-2.10.0...json-path-3.0.0

json-path-2.10.0

What's Changed

  • Bumps dependency versions by @​kallestenflo in json-path/JsonPath#1057
    • net.minidev:json-smart:2.6.0
    • org.slf4j:slf4j-api:2.0.17
    • com.google.code.gson:gson:2.13.2
    • org.hamcrest:hamcrest:3.0
    • com.fasterxml.jackson.core:jackson-databind:2.19.2
    • org.json:json:20250517
    • org.apache.tapestry:tapestry-json:5.9.0
    • jakarta.json:jakarta.json-api:2.1.3
    • jakarta.json.bind:jakarta.json.bind-api:2.0.0

Full Changelog: json-path/JsonPath@json-path-2.9.0...json-path-2.10.0

json-path-2.9.0

What's Changed

New Contributors

Full Changelog: json-path/JsonPath@json-path-2.8.0...json-path-2.9.0

json-path-2.8.0

Upgrade json-smart to fix https://www.cve.org/CVERecord?id=CVE-2023-1370

Commits

Updates org.iban4j:iban4j from 3.2.3-RELEASE to 3.2.13-RELEASE

Release notes

Sourced from org.iban4j:iban4j's releases.

3.2.13-RELEASE

  • National Spanish Iban bug fix

3.2.12-RELEASE

What's Changed

New Contributors

Full Changelog: arturmkrtchyan/iban4j@3.2.10-RELEASE...3.2.12-RELEASE

3.2.10-RELEASE

What's Changed

New Contributors

Full Changelog: arturmkrtchyan/iban4j@3.2.9-RELEASE...3.2.10-RELEASE

3.2.9-RELEASE

What's Changed

New Contributors

Full Changelog: arturmkrtchyan/iban4j@3.2.8-RELEASE...3.2.9-RELEASE

... (truncated)

Commits
  • b59f2d4 release 3.2.12-RELEASE
  • a5e3ad7 fix: include bankCode in ES national check digit computation (#177)
  • abfb3e3 fix: Move default rule initialization to nested class inside CountryRulesRegi...
  • dc0daab chore: reduce number of allocations during national check digits validations ...
  • 02f5583 Add javadoc where needed to get rid of warnings (#176)
  • ce3e3a8 update maven central badge link
  • 71484d9 avaoid redundant allocation in Iso7064 utils class (#173)
  • ba96262 deployment 3.2.12-RELEASE to the maven central
  • 015b5f1 release 3.2.12-RELEASE
  • d20e42f update maven central badge
  • Additional commits viewable in compare view

Updates nz.ac.waikato.cms.weka:weka-stable from 3.8.6 to 3.8.7

Updates dev.langchain4j:langchain4j-open-ai from 1.9.1 to 1.18.0

Commits
  • 66ad5ee Release versions 1.18.0 and 1.18.0-beta28
  • 3ea186f fixes after #5735
  • 855e06b Apply output function also to supervisor result (#5786)
  • 5c6f7cd Updated Jackson to 2.22.1 (#5793)
  • abf3fbf feat(google-genai): add generateContentConfigCustomizer to the chat models (#...

…dates

Bumps the resttestgen-dependencies group with 14 updates in the /resttestgen directory:

| Package | From | To |
| --- | --- | --- |
| org.apache.logging.log4j:log4j-core | `2.19.0` | `2.26.1` |
| [com.google.code.gson:gson](https://github.com/google/gson) | `2.10` | `2.14.0` |
| [org.yaml:snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) | `2.0` | `2.6` |
| [com.google.guava:guava](https://github.com/google/guava) | `31.1-jre` | `33.6.0-jre` |
| [org.jgrapht:jgrapht-core](https://github.com/jgrapht/jgrapht) | `1.5.1` | `1.5.3` |
| [com.squareup.okhttp3:okhttp](https://github.com/square/okhttp) | `4.10.0` | `5.4.0` |
| [org.apache.opennlp:opennlp-tools](https://github.com/apache/opennlp) | `1.9.4` | `2.5.11` |
| [com.jayway.jsonpath:json-path](https://github.com/jayway/JsonPath) | `2.7.0` | `3.0.0` |
| [org.iban4j:iban4j](https://github.com/arturmkrtchyan/iban4j) | `3.2.3-RELEASE` | `3.2.13-RELEASE` |
| nz.ac.waikato.cms.weka:weka-stable | `3.8.6` | `3.8.7` |
| [dev.langchain4j:langchain4j-open-ai](https://github.com/langchain4j/langchain4j) | `1.9.1` | `1.18.0` |
| org.slf4j:slf4j-nop | `2.0.17` | `2.0.18` |
| [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit-framework) | `5.9.0` | `6.1.2` |
| [gradle-wrapper](https://github.com/gradle/gradle) | `8.14` | `9.6.1` |



Updates `org.apache.logging.log4j:log4j-core` from 2.19.0 to 2.26.1

Updates `com.google.code.gson:gson` from 2.10 to 2.14.0
- [Release notes](https://github.com/google/gson/releases)
- [Changelog](https://github.com/google/gson/blob/main/CHANGELOG.md)
- [Commits](google/gson@gson-parent-2.10...gson-parent-2.14.0)

Updates `org.yaml:snakeyaml` from 2.0 to 2.6
- [Commits](https://bitbucket.org/snakeyaml/snakeyaml/branches/compare/snakeyaml-2.6..snakeyaml-2.0)

Updates `com.google.guava:guava` from 31.1-jre to 33.6.0-jre
- [Release notes](https://github.com/google/guava/releases)
- [Commits](https://github.com/google/guava/commits)

Updates `org.jgrapht:jgrapht-core` from 1.5.1 to 1.5.3
- [Changelog](https://github.com/jgrapht/jgrapht/blob/master/HISTORY.md)
- [Commits](jgrapht/jgrapht@jgrapht-1.5.1...jgrapht-1.5.3)

Updates `org.jgrapht:jgrapht-io` from 1.5.1 to 1.5.3
- [Changelog](https://github.com/jgrapht/jgrapht/blob/master/HISTORY.md)
- [Commits](jgrapht/jgrapht@jgrapht-1.5.1...jgrapht-1.5.3)

Updates `com.squareup.okhttp3:okhttp` from 4.10.0 to 5.4.0
- [Changelog](https://github.com/lysine-dev/okhttp/blob/main/CHANGELOG.md)
- [Commits](lysine-dev/okhttp@parent-4.10.0...parent-5.4.0)

Updates `org.apache.opennlp:opennlp-tools` from 1.9.4 to 2.5.11
- [Release notes](https://github.com/apache/opennlp/releases)
- [Commits](apache/opennlp@opennlp-1.9.4...opennlp-2.5.11)

Updates `com.jayway.jsonpath:json-path` from 2.7.0 to 3.0.0
- [Release notes](https://github.com/jayway/JsonPath/releases)
- [Changelog](https://github.com/json-path/JsonPath/blob/master/changelog.md)
- [Commits](json-path/JsonPath@json-path-2.7.0...json-path-3.0.0)

Updates `org.iban4j:iban4j` from 3.2.3-RELEASE to 3.2.13-RELEASE
- [Release notes](https://github.com/arturmkrtchyan/iban4j/releases)
- [Commits](arturmkrtchyan/iban4j@3.2.3-RELEASE...3.2.13-RELEASE)

Updates `nz.ac.waikato.cms.weka:weka-stable` from 3.8.6 to 3.8.7

Updates `dev.langchain4j:langchain4j-open-ai` from 1.9.1 to 1.18.0
- [Release notes](https://github.com/langchain4j/langchain4j/releases)
- [Commits](langchain4j/langchain4j@1.9.1...1.18.0)

Updates `dev.langchain4j:langchain4j` from 1.9.1 to 1.18.0
- [Release notes](https://github.com/langchain4j/langchain4j/releases)
- [Commits](langchain4j/langchain4j@1.9.1...1.18.0)

Updates `dev.langchain4j:langchain4j-http-client-jdk` from 1.9.1 to 1.18.0
- [Release notes](https://github.com/langchain4j/langchain4j/releases)
- [Commits](langchain4j/langchain4j@1.9.1...1.18.0)

Updates `org.slf4j:slf4j-nop` from 2.0.17 to 2.0.18

Updates `org.junit.jupiter:junit-jupiter-api` from 5.9.0 to 6.1.2
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r5.9.0...r6.1.2)

Updates `org.junit.jupiter:junit-jupiter-engine` from 5.9.0 to 6.1.2
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r5.9.0...r6.1.2)

Updates `gradle-wrapper` from 8.14 to 9.6.1
- [Release notes](https://github.com/gradle/gradle/releases)
- [Commits](gradle/gradle@v8.14.0...v9.6.1)

---
updated-dependencies:
- dependency-name: org.apache.logging.log4j:log4j-core
  dependency-version: 2.26.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: resttestgen-dependencies
- dependency-name: com.google.code.gson:gson
  dependency-version: 2.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: resttestgen-dependencies
- dependency-name: org.yaml:snakeyaml
  dependency-version: '2.6'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: resttestgen-dependencies
- dependency-name: com.google.guava:guava
  dependency-version: 33.6.0-jre
  dependency-type: direct:production
  dependency-group: resttestgen-dependencies
- dependency-name: org.jgrapht:jgrapht-core
  dependency-version: 1.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: resttestgen-dependencies
- dependency-name: org.jgrapht:jgrapht-io
  dependency-version: 1.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: resttestgen-dependencies
- dependency-name: com.squareup.okhttp3:okhttp
  dependency-version: 5.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: resttestgen-dependencies
- dependency-name: org.apache.opennlp:opennlp-tools
  dependency-version: 2.5.11
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: resttestgen-dependencies
- dependency-name: com.jayway.jsonpath:json-path
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: resttestgen-dependencies
- dependency-name: org.iban4j:iban4j
  dependency-version: 3.2.13-RELEASE
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: resttestgen-dependencies
- dependency-name: nz.ac.waikato.cms.weka:weka-stable
  dependency-version: 3.8.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: resttestgen-dependencies
- dependency-name: dev.langchain4j:langchain4j-open-ai
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: resttestgen-dependencies
- dependency-name: dev.langchain4j:langchain4j
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: resttestgen-dependencies
- dependency-name: dev.langchain4j:langchain4j-http-client-jdk
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: resttestgen-dependencies
- dependency-name: org.slf4j:slf4j-nop
  dependency-version: 2.0.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: resttestgen-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter-api
  dependency-version: 6.1.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: resttestgen-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter-engine
  dependency-version: 6.1.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: resttestgen-dependencies
- dependency-name: gradle-wrapper
  dependency-version: 9.6.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: resttestgen-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 Aug 1, 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