chore(deps): update all non-major dependencies
This PR contains the following updates:
| Package | Type | Update | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|---|---|
| actions/setup-java | action | minor | v4.0.0 -> v4.2.1 |
||||
| github/codeql-action | action | patch | v3.24.0 -> v3.24.10 |
||||
| org.apache.maven.plugins:maven-gpg-plugin | build | minor | 3.1.0 -> 3.2.2 |
||||
| org.apache.maven.plugins:maven-shade-plugin | build | patch | 3.5.1 -> 3.5.2 |
||||
| org.eclipse.jetty:jetty-client (source) | test | patch | 9.4.53.v20231009 -> 9.4.54.v20240208 |
||||
| com.google.truth.extensions:truth-java8-extension | test | patch | 1.4.0 -> 1.4.2 |
||||
| com.google.truth:truth | test | patch | 1.4.0 -> 1.4.2 |
||||
| org.mockito:mockito-core | test | minor | 5.10.0 -> 5.11.0 |
||||
| org.apache.maven.plugins:maven-source-plugin | build | patch | 3.3.0 -> 3.3.1 |
||||
| org.eclipse.jetty:jetty-server (source) | compile | patch | 9.4.53.v20231009 -> 9.4.54.v20240208 |
||||
| org.eclipse.jetty:jetty-servlet (source) | compile | patch | 9.4.53.v20231009 -> 9.4.54.v20240208 |
||||
| org.apache.maven.plugins:maven-plugin-plugin | build | minor | 3.11.0 -> 3.12.0 |
||||
| org.apache.maven.plugin-tools:maven-plugin-annotations | provided | minor | 3.11.0 -> 3.12.0 |
||||
| org.apache.maven.plugins:maven-compiler-plugin | build | minor | 3.12.1 -> 3.13.0 |
[!WARNING] Some dependencies could not be looked up. Check the warning logs for more information.
Release Notes
actions/setup-java (actions/setup-java)
v4.2.1
What's Changed
- Patch for java version file to accept it from any path by @mahabaleshwars in https://github.com/actions/setup-java/pull/610
Full Changelog: https://github.com/actions/setup-java/compare/v4...v4.2.1
v4.2.0
What's Changed
- Updated actions/httpclient version to 2.2.1 and other dependencies by @HarithaVattikuti in https://github.com/actions/setup-java/pull/607
- Added .tool-versions file support along with .java-version file by @mahabaleshwars in https://github.com/actions/setup-java/pull/606
New Contributors
- @HarithaVattikuti made their first contribution in https://github.com/actions/setup-java/pull/607 Full Changelog: https://github.com/actions/setup-java/compare/v4...v4.2.0
v4.1.0
What's Changed
- Added Windows Arm64 Support for Windows Arm64 Runners by @mahabaleshwars in https://github.com/actions/setup-java/pull/595
- feat: bump actions/checkout and actions/setup-java to v4 by @kbdharun in https://github.com/actions/setup-java/pull/533
- Handle authorization when the token is undefined by @peter-murray in https://github.com/actions/setup-java/pull/556
- Documentation update of Java 21 by @Okeanos in https://github.com/actions/setup-java/pull/566
- Documentation update about maven-gpg-plugin version note by @IvanZosimov in https://github.com/actions/setup-java/pull/570
- Oracle JDK 21 support by @jdubois in https://github.com/actions/setup-java/pull/538
- Fix typo in configuration example by @Bananeweizen in https://github.com/actions/setup-java/pull/572
New Contributors
- @kbdharun made their first contribution in https://github.com/actions/setup-java/pull/533
- @peter-murray made their first contribution in https://github.com/actions/setup-java/pull/556
- @jdubois made their first contribution in https://github.com/actions/setup-java/pull/538
- @Bananeweizen made their first contribution in https://github.com/actions/setup-java/pull/572
- @mahabaleshwars made their first contribution in https://github.com/actions/setup-java/pull/595
Full Changelog: https://github.com/actions/setup-java/compare/v4...v4.1.0
github/codeql-action (github/codeql-action)
v3.24.10
v3.24.9
v3.24.8
v3.24.7
v3.24.6
v3.24.5
v3.24.4
v3.24.3
v3.24.2
v3.24.1
google/truth (com.google.truth.extensions:truth-java8-extension)
v1.4.2: 1.4.2
This release is the final step of copying all our methods from Truth8 to Truth. If you have not already migrated your usages from Truth8 to Truth, you may see build errors:
OptionalSubjectTest.java:39: error: reference to assertThat is ambiguous
assertThat(Optional.of("foo")).isPresent();
^
both method assertThat(@​org.checkerframework.checker.nullness.qual.Nullable Optional<?>) in Truth8 and method assertThat(@​org.checkerframework.checker.nullness.qual.Nullable Optional<?>) in Truth match
In most cases, you can migrate your whole project mechanically: git grep -l Truth8 | xargs perl -pi -e 's/\bTruth8\b/Truth/g;'. (You can make that change before upgrading to Truth 1.4.2 or as part of the same commit.)
If you instead need to migrate your project incrementally (for example, because it is very large), you may want to upgrade your version of Truth incrementally, too, following our instructions for 1.3.0 and 1.4.0.
For help
Please feel welcome to open an issue to report problems or request help.
Changelog
- Removed temporary type parameters from
Truth.assertThat(Stream)andTruth.assertThat(Optional). This can create build errors, which you can fix by replacing all your references toTruth8with references toTruth. (45782bd)
v1.4.1: 1.4.1
This release deprecates Truth8.
All its methods have become available on the main Truth class. In most cases, you can migrate your whole project mechanically: git grep -l Truth8 | xargs perl -pi -e 's/\bTruth8\b/Truth/g;'
While we do not plan to delete Truth8, we recommend migrating off it, at least if you static import assertThat: If you do not migrate, such static imports will become ambiguous in Truth 1.4.2, breaking your build.
mockito/mockito (org.mockito:mockito-core)
v5.11.0
Changelog generated by Shipkit Changelog Gradle Plugin
5.11.0
- 2024-03-01 - 17 commit(s) by Aouichaoui Youssef, Franz Wong, Pranoti Durugkar, Róbert Papp, dependabot[bot]
- Fixes #3281 : Add native method to exception message of MissingMethodI… (#3283)
- MissingMethodInvocationException is thrown when mocking native method in 5.x (#3281)
- Bump com.google.googlejavaformat:google-java-format from 1.19.2 to 1.20.0 (#3277)
- Bump versions.bytebuddy from 1.14.11 to 1.14.12 (#3272)
- Bump gradle/wrapper-validation-action from 2.1.0 to 2.1.1 (#3268)
- Bump org.shipkit:shipkit-auto-version from 2.0.3 to 2.0.4 (#3267)
- Bump gradle/wrapper-validation-action from 2.0.1 to 2.1.0 (#3266)
- Bump org.junit.platform:junit-platform-launcher from 1.10.1 to 1.10.2 (#3265)
- Bump gradle/wrapper-validation-action from 2.0.0 to 2.0.1 (#3264)
- Bump org.assertj:assertj-core from 3.25.2 to 3.25.3 (#3261)
- Bump versions.junitJupiter from 5.10.1 to 5.10.2 (#3260)
- Bump gradle/wrapper-validation-action from 1.1.0 to 2.0.0 (#3258)
- Fixes #3229: Resolve test generic arguments (#3257)
- Bump org.shipkit:shipkit-auto-version from 2.0.2 to 2.0.3 (#3256)
- Use kvm on ubuntu instead of macos to run Android tests (#3252)
- Fixes #3240 : Renamed mockito bom artifact (#3251)
- Remove shipkit workaround for generateChangelog (#3250)
- Bump com.gradle.enterprise from 3.16.1 to 3.16.2 (#3249)
- Mockito bom missing artifact in maven central for java21 (#3240)
-
@Captortest parameters don't work with primitive type arguments (#3229) - Gradle 8.2: work around fix for release publishing (#3053)
Configuration
📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), 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.
- [ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.