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

@dependabotdependabotBot commented on behalf of githubAug 1, 2026

Copy link
Copy Markdown

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

PackageFromTo
org.apache.logging.log4j:log4j-core2.19.02.26.1
com.google.code.gson:gson2.102.14.0
org.yaml:snakeyaml2.02.6
com.google.guava:guava31.1-jre33.7.1-jre
org.jgrapht:jgrapht-core1.5.11.5.3
com.squareup.okhttp3:okhttp4.10.05.5.0
org.apache.opennlp:opennlp-tools1.9.42.5.11
com.jayway.jsonpath:json-path2.7.03.0.0
org.iban4j:iban4j3.2.3-RELEASE3.2.14-RELEASE
nz.ac.waikato.cms.weka:weka-stable3.8.63.8.7
dev.langchain4j:langchain4j-open-ai1.9.11.19.0
org.slf4j:slf4j-nop2.0.172.0.18
org.junit.jupiter:junit-jupiter-api5.9.06.1.3
gradle-wrapper8.149.7.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.7.1-jre

Release notes

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

33.7.1

Maven

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

Jar files

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

Javadoc

JDiff

Changelog

Guava 33.7.1 removes the Multi-Release line from our jar manifest, fixing an issue under Java 9 and 10 that was introduced to guava-jre in version 33.7.0. Sorry for the trouble.

33.7.0

Newly introduced problem for Java 9 and Java 10 only

Guava 33.7.0 includes a Multi-Release line in its jar manifest, even though it is no longer a multi-release jar. This causes some problems with tools from Java 9 and Java 10. The issue is fixed in version 33.7.1. Sorry for the trouble.

Maven

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.7.0-jre</version>
<!-- or, for Android: -->
</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)
    • Added contains method to UnionFind (contributed by Michael Ernst)
  • 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)

... (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)
    • Added contains method to UnionFind (contributed by Michael Ernst)
  • 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)

... (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.5.0

Changelog

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

Version 5.5.0

2026-08-16

This release introduces opt-in support for [Encrypted Client Hello (ECH)]. This new feature improves user privacy by encrypting domain names in transit. With regular TLS, your coffee shop’s Wi-Fi router can see that you’re visiting wikipedia.com, but it cannot see which page you’re looking at. With ECH, the router observes only the IP address. This additional privacy is most effective on sites hosted by big CDNs because the IP address doesn’t imply a particular website.

This requires ECH support in the platform’s TLS stack. Today this is only Android 17 (API 37, released June 2026). When other TLS stacks add ECH support, we'll integrate them.

ECH took a lot of work to implement because the encryption keys are published over DNS in the [HTTPS resource record], and we needed to write new code to fetch these records. This release includes a major update to OkHttp’s DNS API: it now supports multiple resource record types (not just IP addresses!), asynchronous streaming results, and in-memory caching.

To opt in, you can use DnsOverHttps:

// DnsOverHttps itself uses OkHttpClient. Build both clients upon the// same bootstrap client so they share a connection pool and dispatcher.val bootstrapClient =OkHttpClient()
// This sample uses Cloudflare's 1.1.1.1 DnsOverHttps service.val client = bootstrapClient.newBuilder()
.dns(DnsOverHttps.Builder()
.client(bootstrapClient)
.url("https://1.1.1.1/dns-query&quot;.toHttpUrl()).build()).build()

You could also opt in with our new AndroidDns API. Unfortunately, the privacy benefits of ECH are thwarted because its DNS queries are not encrypted by default.

// AndroidDns fetches the HTTPS DNS resource records necessary for ECH.val client =OkHttpClient.Builder()
.dns(AndroidDns())
.build()
  • New: OkHttp artifacts are now signed with our [new signing key]. This project and three sibling projects ([Retrofit], [Okio], and [SQLDelight]) recently joined [the Commonhaus Foundation].
  • Fix: MockWebServer’s @StartStop annotation now supports @Nested JUnit 5 tests.
  • Fix: Our default TLS hostname verifier now reject hosts that fail IP canonicalization.
  • Fix: Closing a multipart part's sink no longer closes the entire request body.
  • Fix: Flush HTTP/1 request bodies before detaching the timeout. We had a bug where timeouts

... (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.14-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
  • c63fecd release 3.2.14-RELEASE
  • 76f63f7 feat: add BBAN structures for Libya (LY), Sudan (SD) and Djibouti (DJ) per IS...
  • 148198a feat: expose public validateBban and extractBbanEntry on IbanUtil (#170) (#181)
  • 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)
  • 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.19.0

Release notes

Sourced from dev.langchain4j:langchain4j-open-ai's releases.

1.19.0 and 1.19.0-beta29

Notable Changes

@dependabotdependabotBot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Aug 1, 2026
…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.7.1-jre` |
| [org.jgrapht:jgrapht-core](https://github.com/jgrapht/jgrapht) | `1.5.1` | `1.5.3` |
| [com.squareup.okhttp3:okhttp](https://github.com/lysine-dev/okhttp) | `4.10.0` | `5.5.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.14-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.19.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.3` |
| [gradle-wrapper](https://github.com/gradle/gradle) | `8.14` | `9.7.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.7.1-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.5.0
- [Changelog](https://github.com/lysine-dev/okhttp/blob/main/CHANGELOG.md)
- [Commits](lysine-dev/okhttp@parent-4.10.0...parent-5.5.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.14-RELEASE
- [Release notes](https://github.com/arturmkrtchyan/iban4j/releases)
- [Commits](arturmkrtchyan/iban4j@3.2.3-RELEASE...3.2.14-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.19.0
- [Release notes](https://github.com/langchain4j/langchain4j/releases)
- [Commits](langchain4j/langchain4j@1.9.1...1.19.0)
Updates `dev.langchain4j:langchain4j` from 1.9.1 to 1.19.0
- [Release notes](https://github.com/langchain4j/langchain4j/releases)
- [Commits](langchain4j/langchain4j@1.9.1...1.19.0)
Updates `dev.langchain4j:langchain4j-http-client-jdk` from 1.9.1 to 1.19.0
- [Release notes](https://github.com/langchain4j/langchain4j/releases)
- [Commits](langchain4j/langchain4j@1.9.1...1.19.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.3
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r5.9.0...r6.1.3)
Updates `org.junit.jupiter:junit-jupiter-engine` from 5.9.0 to 6.1.3
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r5.9.0...r6.1.3)
Updates `gradle-wrapper` from 8.14 to 9.7.1
- [Release notes](https://github.com/gradle/gradle/releases)
- [Commits](gradle/gradle@v8.14.0...v9.7.1)
---
updated-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: com.google.guava:guava
dependency-version: 33.6.0-jre
dependency-type: direct:production
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: 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: 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: 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: gradle-wrapper
dependency-version: 9.6.1
dependency-type: direct:production
update-type: version-update:semver-major
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: 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: 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: 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: 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: 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: 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.yaml:snakeyaml
dependency-version: '2.6'
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: resttestgen-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabotBotforce-pushed the dependabot/gradle/resttestgen/resttestgen-dependencies-242f80385c branch from 9624d88 to 56d1c81CompareSeptember 1, 2026 08:31
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filejavaPull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants