Skip to content

Bump the gradle-version-updates group across 1 directory with 13 updates - #373

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/gradle-version-updates-b0910723bd
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/gradle-version-updates-b0910723bd

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the gradle-version-updates group with 11 updates in the / directory:

Package From To
org.apache.commons:commons-lang3 3.19.0 3.20.0
org.mapstruct:mapstruct 1.5.5.Final 1.6.3
io.swagger.core.v3:swagger-annotations 2.2.7 2.2.55
uk.gov.service.notify:notifications-java-client 5.2.1-RELEASE 6.2.0-RELEASE
org.awaitility:awaitility-kotlin 4.2.0 4.3.0
org.mockito.kotlin:mockito-kotlin 4.1.0 6.3.0
com.github.tomakehurst:wiremock-jre8-standalone 2.35.1 3.0.1
net.datafaker:datafaker 1.7.0 2.7.0
com.fasterxml.jackson.core:jackson-databind 2.21.6 2.22.2
org.openapi.generator 7.0.1 7.25.0
gradle-wrapper 8.14 9.7.1

Updates org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0

Updates org.mapstruct:mapstruct from 1.5.5.Final to 1.6.3

Release notes

Sourced from org.mapstruct:mapstruct's releases.

1.6.3

Bugs

  • Redundant if condition in Java record mapping with RETURN_DEFAULT strategy (#3747)
  • Stackoverflow with Immutables custom builder (#3370)
  • Unused import of java.time.LocalDate when mapping source LocalDateTime to target LocalDate (#3732)

Documentation

  • Add section to README.md comparing mapstruct with Java Records (#3751)

1.6.2

Bugs

  • Regression from 1.6.1: ClassCastException when using records (#3717)

1.6.1

Enhancements

  • Use Java LinkedHashSet and LinkedHashMap new factory method with known capacity when on Java 19 or later (#3113)

Bugs

  • Inverse Inheritance Strategy not working for ignored mappings only with target (#3652)
  • Inconsistent ambiguous mapping method error when using SubclassMapping: generic vs raw types (#3668)
  • Fix regression when using InheritInverseConfiguration with nested target properties and reversing target = "." (#3670)
  • Deep mapping with multiple mappings broken in 1.6.0 (#3667)
  • Two different constants are ignored in 1.6.0 (#3673)
  • Inconsistent ambiguous mapping method error: generic vs raw types in 1.6.0 (#3668)
  • Fix cross module records with interfaces not recognizing accessors (#3661)
  • @AfterMapping methods are called twice when using target with builder (#3678)
  • Compile error when using @AfterMapping method with Builder and TargetObject (#3703)

Behaviour change

Inverse Inheritance Strategy not working for ignored mappings only with target

Prior to this fix @Mapping(target = "myProperty", ignore = true) was being ignored when using @InheritInverseConfiguration.

e.g.

@Mapper
public interface ModelMapper {
@Mapping(target = "creationDate", ignore = true)
Entity toEntity(Model model);    
@InheritInverseConfiguration
Model toModel(Entity entity);

</tr></table>

... (truncated)

Commits
  • b4e25e4 Releasing version 1.6.3
  • 772fae4 Prepare release notes for 1.6.3
  • efdf435 #3751 Improve readme to include support for Java 16+ records
  • c2bd847 #3732 Do not generate obsolete imports for LocalDateTime <-> LocalDate conver...
  • 21fdaa0 #3747 Do not generate redundant if condition with constructor mapping and RET...
  • 32f1fea #3370 Prevent stack overflow error for Immutables with custom builder
  • 26c5bcd Update readme with 1.6.2
  • 4e0d73d Next version 1.7.0-SNAPSHOT
  • 212607b Releasing version 1.6.2
  • 4fd22d6 Prepare release notes for 1.6.2
  • Additional commits viewable in compare view

Updates org.mapstruct:mapstruct-processor from 1.5.5.Final to 1.6.3

Release notes

Sourced from org.mapstruct:mapstruct-processor's releases.

1.6.3

Bugs

  • Redundant if condition in Java record mapping with RETURN_DEFAULT strategy (#3747)
  • Stackoverflow with Immutables custom builder (#3370)
  • Unused import of java.time.LocalDate when mapping source LocalDateTime to target LocalDate (#3732)

Documentation

  • Add section to README.md comparing mapstruct with Java Records (#3751)

1.6.2

Bugs

  • Regression from 1.6.1: ClassCastException when using records (#3717)

1.6.1

Enhancements

  • Use Java LinkedHashSet and LinkedHashMap new factory method with known capacity when on Java 19 or later (#3113)

Bugs

  • Inverse Inheritance Strategy not working for ignored mappings only with target (#3652)
  • Inconsistent ambiguous mapping method error when using SubclassMapping: generic vs raw types (#3668)
  • Fix regression when using InheritInverseConfiguration with nested target properties and reversing target = "." (#3670)
  • Deep mapping with multiple mappings broken in 1.6.0 (#3667)
  • Two different constants are ignored in 1.6.0 (#3673)
  • Inconsistent ambiguous mapping method error: generic vs raw types in 1.6.0 (#3668)
  • Fix cross module records with interfaces not recognizing accessors (#3661)
  • @AfterMapping methods are called twice when using target with builder (#3678)
  • Compile error when using @AfterMapping method with Builder and TargetObject (#3703)

Behaviour change

Inverse Inheritance Strategy not working for ignored mappings only with target

Prior to this fix @Mapping(target = "myProperty", ignore = true) was being ignored when using @InheritInverseConfiguration.

e.g.

@Mapper
public interface ModelMapper {
@Mapping(target = &quot;creationDate&quot;, ignore = true)
Entity toEntity(Model model);    
@InheritInverseConfiguration
Model toModel(Entity entity);

</tr></table>

... (truncated)

Commits
  • b4e25e4 Releasing version 1.6.3
  • 772fae4 Prepare release notes for 1.6.3
  • efdf435 #3751 Improve readme to include support for Java 16+ records
  • c2bd847 #3732 Do not generate obsolete imports for LocalDateTime <-> LocalDate conver...
  • 21fdaa0 #3747 Do not generate redundant if condition with constructor mapping and RET...
  • 32f1fea #3370 Prevent stack overflow error for Immutables with custom builder
  • 26c5bcd Update readme with 1.6.2
  • 4e0d73d Next version 1.7.0-SNAPSHOT
  • 212607b Releasing version 1.6.2
  • 4fd22d6 Prepare release notes for 1.6.2
  • Additional commits viewable in compare view

Updates io.swagger.core.v3:swagger-annotations from 2.2.7 to 2.2.55

Updates uk.gov.service.notify:notifications-java-client from 5.2.1-RELEASE to 6.2.0-RELEASE

Changelog

Sourced from uk.gov.service.notify:notifications-java-client's changelog.

6.2.0-RELEASE

  • Updated dependencies to latest versions

6.1.0-RELEASE

  • Add a sanitiseContentFor parameter to sendEmail, a list of placeholders, the content of which you want Notify to sanitise.

6.0.0-RELEASE

  • Remove Java 8, 9, and 10 from supported versions. This library only supports Java 11+ from now on.
Commits
  • 9ba2f92 Merge pull request #271 from alphagov/upgrade-dependencies
  • aa090ff upgraded jackson version
  • ae5b85b upgrade dependencies
  • c8a3216 Merge pull request #266 from alphagov/mat-sanitise-personalisation
  • 4fadd93 Added sanitise personalisation feature on sendEmail.
  • 75c73f9 Merge pull request #268 from nilay913/patch-1
  • 4516344 migrating from httpclient to httpclient5 for vulnurability fixes
  • 37a1b61 Merge pull request #265 from alphagov/dependabot/maven/com.fasterxml.jackson....
  • 8cf6cd7 Bump com.fasterxml.jackson.core:jackson-core from 2.16.2 to 2.18.6
  • 239efed Merge pull request #264 from alphagov/EC-inc-PAT-2026-01-19-dockerfile
  • Additional commits viewable in compare view

Updates org.awaitility:awaitility-kotlin from 4.2.0 to 4.3.0

Changelog

Sourced from org.awaitility:awaitility-kotlin's changelog.

Changelog 4.3.0 (2025-02-21)

  • Support for kotlin.time.Duration in Kotlin DSL (thanks to Ivo Šmíd for PR)

  • Upgraded kotlin version in the awaitility-kotlin module to 2.1.10

  • Using a more descriptive error message when using VERY long wait conditions or poll durations (issue 290)

  • Added an overloaded method of untilAsserted(..) that takes a supplier and a consumer. For example, lets say you have a class like this: public class MyClass { public String myFunction() { // Imagine stuff being executed in asynchronously here and the result of this // operation is a string called "my value" return "my value" } }

    // Then in your test you can wait for the "myFunction" to be asserted by a "consumer" that uses // assertj to make sure that "myFunction" returns ""my value" await().untilAsserted(myClass::myFunction, value -> Assertions.assertThat(value).isEqualTo("my value"));

    This has also been implemented for all atomic, adder, and accumulator methods.

Changelog 4.2.2 (2024-08-07)

  • Support JDK EA builds in JavaVersionDetector (thanks to Oleg Estekhin for pull request)

Changelog 4.2.1 (2024-03-15)

  • Upgraded Kotlin to 1.9.22

  • Added extension properties forever, then, and, given to the Kotlin extension. This allows you to do e.g.:

    await.forever until { .. }

  • Added shortcut for enabling logging. Before you had to do e.g.

    await() .with() .conditionEvaluationListener(new ConditionEvaluationLogger(log::info)) .pollInterval(ONE_HUNDRED_MILLISECONDS) .until(logs::size, is(4));

    You can now instead use the "logging" shortcut:

    await() .with() .logging(log::info) .pollInterval(ONE_HUNDRED_MILLISECONDS) .until(logs::size, is(4));

    or simply ".logging()" for "System.out".

    This shortcut has also been added globally:

... (truncated)

Commits
  • e3ff879 [maven-release-plugin] prepare release awaitility-4.3.0
  • d116712 [ci skip] Preparing changelog for release
  • 4e186df Added kotlin source folder explicitly
  • e8d3ab7 Upgraded lots of plugin dependencies
  • a7a167a Added an overloaded method of untilAsserted(..) that takes a supplier and a c...
  • ef8f663 Make ConditionFactory safer to use in java 8
  • 5550079 Using a more descriptive error message when using VERY long wait conditions o...
  • 2a9814b Upgraded kotlin version in the awaitility-kotlin module to 2.1.10
  • 8f22c00 [ci skip] Updated changelog.txt to reflect latest changes
  • 6a35c24 #235 Support for kotlin.time.Duration in Kotlin DSL (#285)
  • Additional commits viewable in compare view

Updates org.mockito.kotlin:mockito-kotlin from 4.1.0 to 6.3.0

Release notes

Sourced from org.mockito.kotlin:mockito-kotlin's releases.

v6.3.0

Changelog generated by Shipkit Changelog Gradle Plugin

6.3.0

v6.2.3

Changelog generated by Shipkit Changelog Gradle Plugin

6.2.3

v6.2.2

Changelog generated by Shipkit Changelog Gradle Plugin

6.2.2

v6.2.1

Changelog generated by Shipkit Changelog Gradle Plugin

6.2.1

v6.2.0

Changelog generated by Shipkit Changelog Gradle Plugin

6.2.0

... (truncated)

Commits
  • 4e5b0a2 Add helper to mock module-level extension functions (#586)
  • ce67cbd Add first-class support for mocking object singletons (#587)
  • e08ea94 Update exception message now that onGeneric is deprecated (#583)
  • 4d1b211 Improve Result support in matchers and captors (#582)
  • d0492b0 Improve support for stubbing Result return values for synchronous and suspend...
  • 2431eb6 Fix eq() matcher NPE with nullable value class and null value (#579)
  • 13bec57 Fix regression due to runBlocking being unavailable (#575)
  • 4199972 Use jvmToolchain API to configure builds (#572)
  • 3b5498c Improve stubbing support for suspend functions and value classes (#569)
  • 40edae9 Update PR template to run formatting (#568)
  • Additional commits viewable in compare view

Updates com.github.tomakehurst:wiremock-jre8-standalone from 2.35.1 to 3.0.1

Release notes

Sourced from com.github.tomakehurst:wiremock-jre8-standalone's releases.

3.0.1

🐛 Bug fixes

  • Stop returning 500s for unmatched path patterns (#2339) @​Mahoney
  • Ensure that the shadow JAR is always built last to ensure webhooks fat JAR wins (#2344) @​tomakehurst
  • Added validation of UUIDs in path parameters in the admin API so that clearer errors are reported when non UUIDs are provided or item isn't found rather than throwing a 500 error (#2347) @​tomakehurst
  • Respect StopAction in V1 Filter (#2335) @​Mahoney

Thanks to the regression reporters: @​defnngj , @​oleg-nenashev , @​Mahoney

WireMock 3.0.0

A new major release that introduces a lot of new features, enhancements and also some breaking changes. The key changes include support for Java 17, dropping Java 8 support, new matchers and dynamic response macros, new API endpoints, etc. We’ve made a small number of breaking changes to the Java API plus some behavioural changes, but the JSON (REST and file) API remains fully compatible with 2.x.

NOTE: A blog post with the user-friendly summary and migration guidelines is coming soon!

Thanks to all contributors! The changelog below represents key changes between 2.35.0 and 3.0.0. The full list of changes is available below in the collapsed section.

WARNING: There are known issues in the WireMock 3.0.0 release. Please be careful when updating, and see the Errata below

Upgrade guide

This guide assumes you would be upgrading from WireMock 2.35.0 to 3.1.0

  1. If you aren’t using WireMock 2.35.0, upgrade to this version first
  2. If you use WireMock Standalone, backup your configurations, logs and other information you might need in the future, just in case the - upgrade goes wrong
  3. If you use the WireMock Webhooks Extension, delete the dependency on it and the downloads. Now the extension is a part of the WireMock core
  4. If you use any WireMock extensions, private source or open source ones, ensure they are compatible with WireMock 3 by checking this GitHub Issue, documentation and the integration tests. If you discover any incompatible extension, please raise a bug in [wiremock/wiremock/issues (https://github.com/wiremock/wiremock/issues) or comment in [wiremock/wiremock #2323](wiremock/wiremock#2323), We will triage and route it accordingly
  5. If you use Java 8 on the instance, update to Java 11 or Java 17
  6. Update WireMock to the most recent release of WireMock 3

🚀 New features and improvements

Proxy mode:

... (truncated)

Commits
  • 34d4930 Bump patch version to 3.0.1
  • ae6ed02 Stopped updating package-lock.json when bumping versions
  • a302419 Fixed bump patch and minor versions logic
  • ae525f9 Fixed get patch version function in build
  • 0d4ccca Merge pull request #2347 from wiremock/better-stub-id-validation-in-admin-api
  • c5e8230 Added validation of UUIDs in path parameters in the admin API so that clearer...
  • 5273a43 Merge pull request #2339 from wiremock/fix-exception-in-diff
  • ab05ee9 Ensured that the shadow JAR is always built last. Relocated dependencies in w...
  • 9eaaa69 Merge pull request #2337 from wiremock/dependabot/gradle/com.diffplug.spotles...
  • 36f04c7 Merge pull request #2343 from wiremock/semver-release-drafter
  • Additional commits viewable in compare view

Updates net.datafaker:datafaker from 1.7.0 to 2.7.0

Release notes

Sourced from net.datafaker:datafaker's releases.

2.7.0

What's Changed

Full Changelog: datafaker-net/datafaker@2.6.0...2.7.0

2.6.0

What's Changed

... (truncated)

Commits
  • 3f43d4c Fix lowercase country code in Finance.bic() (#1853) (#1855)
  • 98a25a8 Bump actions/cache from 5 to 6 (#1854)
  • 2f057eb Add dedicated Http faker with status codes, headers, user agents and more (#1...
  • 5f39c3a docs: fix typos, syntax, formating (#1851)
  • 5f4ed38 Use primitive int as return type for nextInt (#1852)
  • a179fdd Do not create RegExpContext each time (#1849)
  • 93303ed Use jdk 25 and 26 in ci (#1850)
  • 7d76586 Bump com.googlecode.libphonenumber:libphonenumber from 9.0.32 to 9.0.33 (#1848)
  • 73accdd Fix typo in custom-providers documentation
  • 564dd23 fix(docs): render 2.6.0 release page H1 (#1846)
  • Additional commits viewable in compare view

Updates com.fasterxml.jackson.core:jackson-databind from 2.21.6 to 2.22.2

Commits
  • 25b2a22 [maven-release-plugin] prepare release jackson-databind-2.22.2
  • bab1c1a Prep for 2.22.2 release
  • bc03cf8 Merge branch '2.21' into 2.22
  • 83379fb Merge branch '2.20' into 2.21
  • 0d400c9 Merge branch '2.19' into 2.20
  • ce36a27 Merge branch '2.18' into 2.19
  • 7a209e1 Post-release dep version bump
  • a432707 [maven-release-plugin] prepare for next development iteration
  • 176df1d [maven-release-plugin] prepare release jackson-databind-2.18.10
  • 7785f5f Prep for 2.18.10 release
  • Additional commits viewable in compare view

Updates com.fasterxml.jackson.core:jackson-core from 2.21.6 to 2.22.2

Commits
  • 24bab14 [maven-release-plugin] prepare release jackson-core-2.22.2
  • dbbd2a0 Prep for 2.22.2 release
  • 038fc7a Merge branch '2.21' into 2.22
  • aaf3398 Merge branch '2.20' into 2.21
  • 2911dae Merge branch '2.19' into 2.20
  • ed8e9dc Merge branch '2.18' into 2.19
  • f8dc7d7 Post-release dep version bump
  • 7add1bf [maven-release-plugin] prepare for next development iteration
  • d11418c [maven-release-plugin] prepare release jackson-core-2.18.10
  • 66a7a17 Prep for 2.18.10 release
  • Additional commits viewable in compare view

Updates org.openapi.generator from 7.0.1 to 7.25.0

Updates gradle-wrapper from 8.14 to 9.7.1

Release notes

Sourced from gradle-wrapper's releases.

9.7.1

The Gradle team is excited to announce Gradle 9.7.1.

This is a patch release for 9.7.0. We recommend using 9.7.1 instead of 9.7.0.

Here are the highlights of 9.7.0 release:

  • Isolated Projects graduates to incubating
  • Broader Configuration Cache compatibility
  • Resilient Sync helps you fix broken builds
  • More source locations in problem reports

Read the Release Notes

We would like to thank the following community members for their contributions to this release of Gradle: Adam, Aman Gautam, Aman Kumar, Anton Dubrouski, Aurimas, gbhavya07, Josh Friend, nicklauslittle-gov, Pragati, project516, Qin Mi, Ravi, sk-reddy17, Suvrat Acharya, Yongshun Ye.

Upgrade instructions

Switch your build to use Gradle 9.7.1 by updating your wrapper:

./gradlew :wrapper --gradle-version=9.7.1 && ./gradlew :wrapper

See the Gradle 9.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading.

For Java, Groovy, Kotlin and Android compatibility, see the full compatibility notes.

Reporting problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines. If you're not sure you're encountering a bug, please use the forum.

We hope you will build happiness with Gradle, and we look forward to your feedback via Twitter or on GitHub.

9.7.0

The Gradle team is excited to announce Gradle 9.7.0.

... (truncated)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Sep 11, 2026
@dependabot @github

dependabot Bot commented on behalf of github Sep 11, 2026

Copy link
Copy Markdown
Contributor Author

Assignees

The following users could not be added as assignees: conwhisw. Either the username does not exist or it does not have the correct permissions to be added as an assignee.

Please fix the above issues or remove invalid values from dependabot.yml.

Bumps the gradle-version-updates group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| org.apache.commons:commons-lang3 | `3.19.0` | `3.20.0` |
| [org.mapstruct:mapstruct](https://github.com/mapstruct/mapstruct) | `1.5.5.Final` | `1.6.3` |
| io.swagger.core.v3:swagger-annotations | `2.2.7` | `2.2.55` |
| [uk.gov.service.notify:notifications-java-client](https://github.com/alphagov/notifications-java-client) | `5.2.1-RELEASE` | `6.2.0-RELEASE` |
| [org.awaitility:awaitility-kotlin](https://github.com/awaitility/awaitility) | `4.2.0` | `4.3.0` |
| [org.mockito.kotlin:mockito-kotlin](https://github.com/mockito/mockito-kotlin) | `4.1.0` | `6.3.0` |
| [com.github.tomakehurst:wiremock-jre8-standalone](https://github.com/wiremock/wiremock) | `2.35.1` | `3.0.1` |
| [net.datafaker:datafaker](https://github.com/datafaker-net/datafaker) | `1.7.0` | `2.7.0` |
| [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson-databind) | `2.21.6` | `2.22.2` |
| org.openapi.generator | `7.0.1` | `7.25.0` |
| [gradle-wrapper](https://github.com/gradle/gradle) | `8.14` | `9.7.1` |



Updates `org.apache.commons:commons-lang3` from 3.19.0 to 3.20.0

Updates `org.mapstruct:mapstruct` from 1.5.5.Final to 1.6.3
- [Release notes](https://github.com/mapstruct/mapstruct/releases)
- [Commits](mapstruct/mapstruct@1.5.5.Final...1.6.3)

Updates `org.mapstruct:mapstruct-processor` from 1.5.5.Final to 1.6.3
- [Release notes](https://github.com/mapstruct/mapstruct/releases)
- [Commits](mapstruct/mapstruct@1.5.5.Final...1.6.3)

Updates `io.swagger.core.v3:swagger-annotations` from 2.2.7 to 2.2.55

Updates `uk.gov.service.notify:notifications-java-client` from 5.2.1-RELEASE to 6.2.0-RELEASE
- [Changelog](https://github.com/alphagov/notifications-java-client/blob/main/CHANGELOG.md)
- [Commits](alphagov/notifications-java-client@5.2.1-RELEASE...6.2.0-RELEASE)

Updates `org.awaitility:awaitility-kotlin` from 4.2.0 to 4.3.0
- [Changelog](https://github.com/awaitility/awaitility/blob/master/changelog.txt)
- [Commits](awaitility/awaitility@awaitility-4.2.0...awaitility-4.3.0)

Updates `org.mockito.kotlin:mockito-kotlin` from 4.1.0 to 6.3.0
- [Release notes](https://github.com/mockito/mockito-kotlin/releases)
- [Commits](mockito/mockito-kotlin@4.1.0...v6.3.0)

Updates `com.github.tomakehurst:wiremock-jre8-standalone` from 2.35.1 to 3.0.1
- [Release notes](https://github.com/wiremock/wiremock/releases)
- [Commits](wiremock/wiremock@2.35.1...3.0.1)

Updates `net.datafaker:datafaker` from 1.7.0 to 2.7.0
- [Release notes](https://github.com/datafaker-net/datafaker/releases)
- [Changelog](https://github.com/datafaker-net/datafaker/blob/main/RELEASE_PROCESS.md)
- [Commits](datafaker-net/datafaker@v1.7.0...2.7.0)

Updates `com.fasterxml.jackson.core:jackson-databind` from 2.21.6 to 2.22.2
- [Commits](FasterXML/jackson-databind@jackson-databind-2.21.6...jackson-databind-2.22.2)

Updates `com.fasterxml.jackson.core:jackson-core` from 2.21.6 to 2.22.2
- [Commits](FasterXML/jackson-core@jackson-core-2.21.6...jackson-core-2.22.2)

Updates `org.openapi.generator` from 7.0.1 to 7.25.0

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.fasterxml.jackson.core:jackson-core
  dependency-version: 2.22.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-version-updates
- dependency-name: com.fasterxml.jackson.core:jackson-databind
  dependency-version: 2.22.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-version-updates
- dependency-name: com.github.tomakehurst:wiremock-jre8-standalone
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle-version-updates
- dependency-name: gradle-wrapper
  dependency-version: 9.7.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle-version-updates
- dependency-name: io.swagger.core.v3:swagger-annotations
  dependency-version: 2.2.55
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-version-updates
- dependency-name: net.datafaker:datafaker
  dependency-version: 2.7.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle-version-updates
- dependency-name: org.apache.commons:commons-lang3
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-version-updates
- dependency-name: org.awaitility:awaitility-kotlin
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-version-updates
- dependency-name: org.mapstruct:mapstruct
  dependency-version: 1.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-version-updates
- dependency-name: org.mapstruct:mapstruct-processor
  dependency-version: 1.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-version-updates
- dependency-name: org.mockito.kotlin:mockito-kotlin
  dependency-version: 6.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle-version-updates
- dependency-name: org.openapi.generator
  dependency-version: 7.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-version-updates
- dependency-name: uk.gov.service.notify:notifications-java-client
  dependency-version: 6.2.0-RELEASE
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle-version-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/gradle/gradle-version-updates-b0910723bd branch from f3a3a1f to 6b3cf07 Compare September 14, 2026 11:20
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.

1 participant