Update All patch-minor dependencies #211
Open
+40
−41
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Note
Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to
mend[bot]
.This notice will be removed on 2025-10-07.
This PR contains the following updates:
8.12.1
->8.14.3
0.10.5
->0.10.7
3.6.0
->3.10.6
4.2.2
->4.3.0
7.25.4
->7.27.7-prerelease-CME-537
1.16.3
->1.20.4
8.0
->8.1
1.9.0
->1.10.0
3.0.3
->3.0.4
5.1.1
->5.2.0
5.5.0
->5.5.6
4.0.23
->4.0.28
4.0.23
->4.0.28
4.0.23
->4.0.28
13.5
->13.6
1.5
->1.6.0
2.17.0
->2.20.0
1.5.16
->1.5.19
1.5.16
->1.5.19
1.20.3
->1.21.3
1.20.3
->1.21.3
1.20.3
->1.21.3
7.17.8
->7.17.29
7.17.8
->7.17.29
7.17.8
->7.17.29
7.20.1
->7.30.0
7.20.1
->7.30.0
1.18.34
->1.18.42
6.0.1
->6.1.9
6.0.1
->6.1.9
1.10.5
->1.14.0
1.10.5
->1.14.0
5.10.5
->5.14.0
5.10.5
->5.14.0
5.10.5
->5.14.0
2024.0.0
->2024.0.2
6.41.0
->6.55.0
10.3.1
->10.26.1
0.12.63
->0.12.67
3.4.1
->3.5.6
6.0.1.5171
->6.3.1.5724
0.19.1791
->0.19.1882
0.51.0
->0.53.0
Release Notes
gradle/gradle (gradle)
v8.14.3
: 8.14.3Compare Source
The Gradle team is excited to announce Gradle 8.14.3.
This is a patch release for 8.14. We recommend using 8.14.3 instead of 8.14.
Here are the highlights of this release:
Read the Release Notes
We would like to thank the following community members for their contributions to this release of Gradle:
Aurimas,
Ben Bader,
Björn Kautler,
chandre92,
Daniel Hammer,
Danish Nawab,
Florian Dreier,
Ivy Chen,
Jendrik Johannes,
jimmy1995-gu,
Madalin Valceleanu,
Na Minhyeok.
Upgrade instructions
Switch your build to use Gradle 8.14.3 by updating your wrapper:
See the Gradle 8.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.
v8.14.2
Compare Source
v8.14.1
: 8.14.1Compare Source
The Gradle team is excited to announce Gradle 8.14.1.
Read the Release Notes
We would like to thank the following community members for their contributions to this release of Gradle:
Aurimas,
Ben Bader,
Björn Kautler,
chandre92,
Daniel Hammer,
Danish Nawab,
Florian Dreier,
Ivy Chen,
Jendrik Johannes,
jimmy1995-gu,
Madalin Valceleanu,
Na Minhyeok.
Upgrade instructions
Switch your build to use Gradle 8.14.1 by updating your wrapper:
See the Gradle 8.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.
v8.14
Compare Source
v8.13
Compare Source
vavr-io/vavr (io.vavr:vavr)
v0.10.7
Maintenance release - fixed broken JavaDoc stylesheets.
btw, we're getting really close to shipping v0.11.0...
v0.10.6
: Patch Release 0.10.6This release brings Virtual-Thread-friendliness and documentation updates.
This is the last planned patch release for the 0.10.x train. 0.11.x incoming!
Changes
Full Changelog: vavr-io/vavr@v0.10.5...v0.10.6
Committers
🎉 MANY THANKS TO ALL COMMITTERS! 🎉
wiremock/wiremock-spring-boot (org.wiremock.integrations:wiremock-spring-boot)
v3.10.6
Compare Source
🚀 New features and improvements
📦 Dependency updates
✍ Other changes
v3.10.0
Compare Source
🚀 New features and improvements
v3.9.0
Compare Source
v3.8.2
Compare Source
🐛 Bug fixes
v3.8.1
Compare Source
🐛 Bug fixes
v3.8.0
Compare Source
🚀 New features and improvements
v3.7.0
Compare Source
🚀 New features and improvements
awaitility/awaitility (org.awaitility:awaitility)
v4.3.0
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.
hmcts/ccd-test-definitions (com.github.hmcts:ccd-test-definitions)
v7.27.7-prerelease-CME-537
Compare Source
v7.27.1-prerelease-CME-537
Compare Source
v7.27.0-prerelease-CME-537
Compare Source
v7.25.5_CCD-6146_1
Compare Source
CCD-6146: FT changes
and addition to publish to Azure Artifacts
hcoles/pitest (org.pitest:pitest)
v1.20.4
Compare Source
v1.20.3
Compare Source
v1.20.2
Compare Source
v1.20.1
Compare Source
v1.20.0
Compare Source
v1.19.6
Compare Source
Full Changelog: hcoles/pitest@1.19.5...1.19.6
v1.19.5
Compare Source
#1412 Catch and log empty methods in filters
v1.19.4
Compare Source
Note Quarkus support also requires version 1.2.3 or above of the pitest JUnit 5 plugin.
v1.19.3
Compare Source
v1.19.2
Compare Source
v1.19.1
Compare Source
v1.19.0
Compare Source
v1.18.2
Compare Source
What's Changed
Full Changelog: hcoles/pitest@1.18.1...1.18.2
v1.18.1
Compare Source
Full Changelog: hcoles/pitest@1.18.0...1.18.1
v1.18.0
Compare Source
What's Changed
New Contributors
Full Changelog: hcoles/pitest@1.17.4...1.18.0
v1.17.4
Compare Source
What's Changed
New Contributors
Full Changelog: hcoles/pitest@1.17.3...1.17.4
v1.17.3
Compare Source
Maven users can now gather coverage information and generate mutants, but skip the mutant analysis stage by running setting the 'pit.dryRun' flag to true.
v1.17.2
Compare Source
v1.17.1
Compare Source
v1.17.0
Compare Source
hmcts/idam-java-client (com.github.hmcts:idam-java-client)
v3.0.4
Compare Source
hmcts/ccd-client (com.github.hmcts:core-case-data-store-client)
v5.2.0
: 🌈Compare Source
📦 Dependency updates
rest-assured/rest-assured (io.rest-assured:rest-assured)
v5.5.6
v5.5.5
v5.5.4
v5.5.3
Greatly improved csrf support. When applying csrf, it'll automatically forward the cookies to returns from the GET request to the csrf token and apply it to the actual request. These cookies will also be applied to the CookieFilter automatically (if configured) and SessionFilter (if configured). For example:
given().
csrf("/login").
formParam("name", "My New Name").
when().
post("/users/123").
then().
statusCode(200);
Now the cookies returned from the GET request to login will be automatically applied to the POST to "/users/123".
If you have a CookieFilter defined for multiple requests, the cookies returned by GET to /login will be automatically stored in the CookieFilter and used in the second request.
You can disable this behavior by setting automaticallyApplyCookies to false the csrf config:
given().
config(config().csrfConfig(csrfConfig().automaticallyApplyCookies(false))).
csrf("/login").
when().
...
v5.5.2
v5.5.1
openfeign/feign (io.github.openfeign:feign-jackson)
v13.6
: OpenFeign 13.6Compare Source
What's Changed
List of PRs that updated libraries versions
Configuration
📅 Schedule: Branch creation - "after 7am and before 11am every weekday" in timezone Europe/London, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.