Update dependency com.google.errorprone:error_prone_core to v2.50.0 - #549
Open
renovate[bot] wants to merge 1 commit into
Open
Update dependency com.google.errorprone:error_prone_core to v2.50.0#549renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
from
February 26, 2026 21:14
54ef946 to
59763c1
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
from
February 27, 2026 16:32
59763c1 to
0228005
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
2 times, most recently
from
March 3, 2026 04:34
a752ab2 to
9deba76
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
from
March 3, 2026 16:33
9deba76 to
5569bc6
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
3 times, most recently
from
March 6, 2026 20:34
c86816d to
39688a3
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
2 times, most recently
from
March 19, 2026 00:34
077afc6 to
6c2b93b
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
from
March 19, 2026 16:32
6c2b93b to
8d5b67f
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
from
March 30, 2026 00:23
8d5b67f to
9fcbd22
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
from
April 7, 2026 12:27
9fcbd22 to
328819f
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
from
April 17, 2026 17:19
328819f to
e332bed
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
4 times, most recently
from
May 2, 2026 12:23
1e450cf to
0a81045
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
2 times, most recently
from
May 31, 2026 04:23
3d1d8de to
399f345
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
from
June 6, 2026 04:23
399f345 to
e562191
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
from
June 10, 2026 13:42
e562191 to
6e71b9e
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
4 times, most recently
from
June 19, 2026 05:55
4673787 to
6815ed7
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
3 times, most recently
from
June 30, 2026 00:54
013678f to
4c117b9
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
2 times, most recently
from
July 12, 2026 15:06
e3cff06 to
b7808a5
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
4 times, most recently
from
July 28, 2026 04:26
a3232b7 to
ac9baac
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
from
July 30, 2026 04:23
ac9baac to
e0f930e
Compare
renovate
Bot
force-pushed
the
renovate/error-prone-monorepo
branch
from
July 30, 2026 21:48
e0f930e to
a40aeec
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:
2.45.0→2.50.0Release Notes
google/error-prone (com.google.errorprone:error_prone_core)
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
v2.47.0: Error Prone 2.47.0Compare Source
New checks:
InterruptedInCatchBlock: Detect accidental calls toThread.interrupted()inside ofcatch(InterruptedException e)blocks.RefactorSwitch: Refactorings to simplify arrow switchesUnnamedVariable: Rename unused variables to_Closed issues: #1811, #4168, #5459, #5460
Full changelog: google/error-prone@v2.46.0...v2.47.0
v2.46.0: Error Prone 2.46.0Compare Source
Changes:
-XDaddTypeAnnotationsToSymbol=trueis now required for Error Prone invocations on JDK 21, to enable the javac fix for JDK-8225377: type annotations are not visible to javac plugins across compilation boundaries. See #5426 for details.valueattribute from@IncompatibleModifiersand@RequiredModifiers(#2122)EndPosTable,DiagnosticPosition) (5440bb4,06c2905,f3915ec)New checks:
DuplicateAssertion: detect duplicated assertion lines where the argument toassertThatis pureIfChainToSwitch: suggest converting chains of if-statements into arrow switchesScannerUseDelimiter: discourageScanner.useDelimiter("\\A")AddNullMarkedToClass: refactoring to add@NullMarkedannotation to top level classesFull changelog: google/error-prone@v2.45.0...v2.46.0
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.