chore(deps): update maven deps#983
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/maven
branch
2 times, most recently
from
October 15, 2025 17:04
66a18eb to
bc263b3
Compare
simonresch
force-pushed
the
renovate/maven
branch
from
October 15, 2025 19:39
bc263b3 to
8356d88
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
2 times, most recently
from
October 16, 2025 06:25
380528f to
ef4c99a
Compare
simonresch
force-pushed
the
renovate/maven
branch
from
October 16, 2025 06:39
ef4c99a to
6eb4955
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
from
October 16, 2025 06:39
6eb4955 to
b6ae584
Compare
simonresch
force-pushed
the
renovate/maven
branch
from
October 16, 2025 07:54
b6ae584 to
6eb4955
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
3 times, most recently
from
October 17, 2025 07:36
1fb100f to
2b71144
Compare
simonresch
force-pushed
the
renovate/maven
branch
from
October 17, 2025 09:21
2b71144 to
3e38f58
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
8 times, most recently
from
October 23, 2025 14:00
093d30f to
86c4196
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
10 times, most recently
from
October 31, 2025 09:39
6aba80d to
f974ed1
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
from
November 13, 2025 15:16
a01399f to
d9ba701
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
9 times, most recently
from
December 1, 2025 12:12
9fb314b to
64c5247
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
3 times, most recently
from
December 7, 2025 12:18
51d3235 to
330526e
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
6 times, most recently
from
December 16, 2025 05:25
b707e88 to
9cca9db
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
4 times, most recently
from
December 22, 2025 12:03
247eaf3 to
0fbf8a0
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
from
December 29, 2025 13:51
0fbf8a0 to
e0d3411
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
2 times, most recently
from
January 8, 2026 19:56
3e71245 to
020e748
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
2 times, most recently
from
January 19, 2026 15:04
323cef0 to
c6bd6e9
Compare
renovate
Bot
force-pushed
the
renovate/maven
branch
from
January 24, 2026 20:31
c6bd6e9 to
c7b8bbb
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR contains the following updates:
4.9→5.32.13.2→2.14.02.47.0→2.50.033.5.0-android→33.6.0-jre1.18.4→1.18.11-jdk53.4.10→3.4.110.8.14→0.8.155.21.0→5.23.09.9.1→9.10.19.9.1→9.10.19.9.1→9.10.1Release Notes
google/error-prone (com.google.errorprone:error_prone_annotations)
v2.50.0: Error Prone 2.50.0Compare Source
New checks:
BoxingComparator: Detect implicitly-boxing Comparator.comparing key extractorsExposedPrivateType: Discourage references to private member classes from non-private APIsJUnitMethodInvoked: Discourage directly invoking JUnit test methodsListRemoveAmbiguous: Detect ambiguous calls toList.remove(int|Integer)PreferTestParameter: suggests using@TestParameterinstead of@TestParametersfor exhaustive boolean and enum parameters on single-element parameterized testsRecordComponentAccessorAnnotationConflict: Detect conflicts between record components and explicit accessor methodsRecordComponentOverride: Discourage@Overrideon record component declarations that don't overrideanything
ThrowableEqualsHashCode: Discourage overridingThrowable.equals()andhashCode()Closed issues: #5553, #5649, #5778
Full changelog: google/error-prone@v2.49.0...v2.50.0
v2.49.0: Error Prone 2.49.0Compare Source
This release includes several changes to
MatcherAPIs, and removed some deprecated or problematic APIs:MethodMatchers.withSignatureAPI, which relies on fragiletoStringbehaviour. Alternatives for matching on method signatures with varargs and type parameters were added ina98a1c5.variableType(Matcher)API.Matchers.variableType(Matcher)usesVariableTree#getTypeto match variable types, which own't work for lambda parameters with inferred types after JDK-8268850. The recommended replacement isvariableType(TypePredicate).enclosingPackagereturn an optional. Module elements are not enclosed by a package, checks usingenclosingPackageshouldn't assume an enclosing package exists when processing arbitrary elements.FieldMatchersAPI, similar toMethodMatchers(1dd9c3a).New checks:
AssertThrowsBlockToExpression: Discourage unnecessary block lambdas inassertThrows.AssertThrowsMinimizer: Suggest minimizing the amount of logic inassertThrows.MemorySegmentReferenceEquality: Discourage using reference equality forMemorySegments.PreferThrowsTag: Recommends using@throwsinstead of the legacy@exceptionjavadoc tag.RecordAccessorInCompactConstructor: detect record accessors inside the compact canonical ctors, which read uninitialized fields.Closed issues: #2283, #3503, #5210, #5289, #5548, #5548, #5554, #5609, #5614, #5656
Full changelog: google/error-prone@v2.48.0...v2.49.0
v2.48.0: Error Prone 2.48.0Compare Source
Changes:
@-files) (8e84edf)New checks:
AvoidValueSetterUnnecessarySemicolonClosed issues: #5529, #5537, #5522, #5521
Full changelog: google/error-prone@v2.47.0...v2.48.0
raphw/byte-buddy (net.bytebuddy:byte-buddy-agent)
v1.18.11v1.18.10v1.18.9Plugin.Engine.v1.18.8v1.18.7v1.18.5Advicethat were missing.jacoco/jacoco (org.jacoco:org.jacoco.core)
v0.8.15mockito/mockito (org.mockito:mockito-core)
v5.23.0Compare Source
NOTE: Breaking change for Android
The
mockito-androidartifact has a breaking change: tests now require a device or emulator based on API 28+ (Android P). This is to enable new support for mocking Kotlin classes. See #3788 for more details.Changelog generated by Shipkit Changelog Gradle Plugin
5.23.0
Mockito.when@Nullable(#3503)v5.22.0Changelog generated by Shipkit Changelog Gradle Plugin
5.22.0
objectsingletons (#3652)Configuration
📅 Schedule: (UTC)
* 0-3 * * 1)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, 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.