GoogleCloudPlatform / java-repo-tools

Tools used to maintain and test Java repositories in the GoogleCloudPlatform organization.
Apache License 2.0
27 stars 39 forks source link

chore(deps): update dependency com.google.errorprone:error_prone_core to v2.33.0 #404

Open renovate-bot opened 1 year ago

renovate-bot commented 1 year ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.google.errorprone:error_prone_core (source) 2.18.0 -> 2.33.0 age adoption passing confidence

Release Notes

google/error-prone (com.google.errorprone:error_prone_core) ### [`v2.33.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.33.0): Error Prone 2.33.0 Similar to release [2.32.0](https://redirect.github.com/google/error-prone/releases/v2.32.0), the minimum supported JDK version to run Error Prone is JDK 17 ([#​3803](https://redirect.github.com/google/error-prone/issues/3803)). Using Error Prone to compile code that is deployed to earlier versions is still fully supported, but will require using JDK 17 or newer for compilation and setting `--release` or `-source`/`-target`/`-bootclasspath`. Changes: - Update protobuf version for CVE-2024-7254 New checks: - [`ArrayRecordComponent`](https://errorprone.info/bugpattern/ArrayRecordComponent): Record components should not be arrays. Full changelog: https://github.com/google/error-prone/compare/v2.32.0...v2.33.0 ### [`v2.32.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.32.0): Error Prone 2.32.0 The minimum support JDK version to run Error Prone is now JDK 17 ([#​3803](https://redirect.github.com/google/error-prone/issues/3803)). Using Error Prone to compile code that is deployed to earlier versions is still fully supported, but will requires using JDK 17 or newer for compilation and setting `--release` or `-source`/`-target`/`-bootclasspath`. Full changelog: https://github.com/google/error-prone/compare/v2.31.0...v2.32.0 ### [`v2.31.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.31.0): Error Prone 2.31.0 This is the last planned minor release of Error Prone that will support running on JDK 11, see [#​3803](https://redirect.github.com/google/error-prone/issues/3803). Using Error Prone to compile code that is deployed to earlier versions will continue to be fully supported, but will require using JDK 17 or newer for compilation and setting `--release` or `-source`/`-target`/`-bootclasspath`. Changes: - Introduce [`@ThreadSafeTypeParameter`](https://redirect.github.com/google/error-prone/blob/2656f48902f6723f3147caa117372309dbc6c15f/type_annotations/src/main/java/com/google/errorprone/annotations/ThreadSafeTypeParameter.java) with enforcement by [ThreadSafe](https://errorprone.info/bugpattern/ThreadSafe) - Improved support for latest JDK 24 EA builds - Error Prone is now distributed as a Multi-Release jar ([#​3756](https://redirect.github.com/google/error-prone/issues/3756)) New checks: - [`AutoValueBoxedValues`](https://errorprone.info/bugpattern/AutoValueBoxedValues): AutoValue instances should not usually contain boxed types that are not Nullable. We recommend removing the unnecessary boxing. Full changelog: https://github.com/google/error-prone/compare/v2.30.0...v2.31.0 ### [`v2.30.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.30.0): Error Prone 2.30.0 New checks: - [`AutoValueBoxedValues`](https://errorprone.info/bugpattern/AutoValueBoxedValues): Detects unnecessary boxing in AutoValue classes. - [`DefaultLocale`](https://errorprone.info/bugpattern/DefaultLocale): Detects implicit use of the JVM default locale, which can result in differing behaviour between JVM executions. - [`UnnecessaryBreakInSwitch`](https://errorprone.info/bugpattern/UnnecessaryBreakInSwitch): Remove unnecessary `break` statements in `->` switches. Closed issues: [#​632](https://redirect.github.com/google/error-prone/issues/632), [#​4487](https://redirect.github.com/google/error-prone/issues/4487) Full changelog: https://github.com/google/error-prone/compare/v2.29.2...v2.30.0 ### [`v2.29.2`](https://redirect.github.com/google/error-prone/releases/tag/v2.29.2): Error Prone 2.29.2 This release contains all of the changes in [2.29.0](https://redirect.github.com/google/error-prone/releases/tag/v2.29.0) and [2.29.1](https://redirect.github.com/google/error-prone/releases/tag/v2.29.1), plus: - a bug fix for a crash in `TraditionalSwitchExpression` ([https://github.com/google/error-prone/issues/4479](https://redirect.github.com/google/error-prone/issues/4479)) - restores the `module-info` for the annotations jar, which was accidentally removed ([https://github.com/google/error-prone/issues/4480](https://redirect.github.com/google/error-prone/issues/4480)) Full Changelog: https://github.com/google/error-prone/compare/v2.29.1...v2.29.2 ### [`v2.29.1`](https://redirect.github.com/google/error-prone/releases/tag/v2.29.1): Error Prone 2.29.1 This release contains all of the changes in [2.29.0](https://redirect.github.com/google/error-prone/releases/tag/v2.29.0), plus: - a bug fix to `UnusedVariable` to handle unnamed `_` variables ([https://github.com/google/error-prone/issues/4451](https://redirect.github.com/google/error-prone/issues/4451)) - a bug fix for a crash in `SetUnrecognized` ([https://github.com/google/error-prone/issues/4475](https://redirect.github.com/google/error-prone/issues/4475)) Full Changelog: https://github.com/google/error-prone/compare/v2.29.0...v2.29.1 ### [`v2.29.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.29.0): Error Prone 2.29.0 New checks: - [`MissingRuntimeRetention`](https://errorprone.info/bugpattern/MissingRuntimeRetention) - [`SetUnrecognized`](https://errorprone.info/bugpattern/SetUnrecognized) - [`StatementSwitchToExpressionSwitch`](https://errorprone.info/bugpattern/StatementSwitchToExpressionSwitch) Closed issues: [#​4318](https://redirect.github.com/google/error-prone/issues/4318), [#​4429](https://redirect.github.com/google/error-prone/issues/4429), [#​4467](https://redirect.github.com/google/error-prone/issues/4467) Full Changelog: https://github.com/google/error-prone/compare/v2.28.0...v2.29.0 ### [`v2.28.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.28.0): Error Prone 2.28.0 Error Prone nows supports the latest JDK 23 EA builds ([#​4412](https://redirect.github.com/google/error-prone/issues/4412), [#​4415](https://redirect.github.com/google/error-prone/issues/4415)). Closed issues: - Improved errors for invalid check severities ([#​4306](https://redirect.github.com/google/error-prone/issues/4306)). - Fix a crash with nested `instanceof` patterns ([#​4349](https://redirect.github.com/google/error-prone/issues/4349)). - Fix a crash in JUnitIncompatibleType ([#​4377](https://redirect.github.com/google/error-prone/issues/4377)). - In ObjectEqualsForPrimitives, don't suggest replacing `equal` with `==` for floating-point values ([#​4392](https://redirect.github.com/google/error-prone/issues/4392)). New checks: - [`DeeplyNested`](https://errorprone.info/bugpattern/DeeplyNested) discourages very deeply nested code that can cause StackOverflowErrors during compilation. - [`GuiceNestedCombine`](https://errorprone.info/bugpattern/GuiceNestedCombine) discourages nesting of `Modules.combine()`, which is unnecessary. - [`PatternMatchingInstanceof`](https://errorprone.info/bugpattern/PatternMatchingInstanceof) migrates code to use [pattern matching for `instanceof`](https://openjdk.org/jeps/394) - [`SunApi`](https://errorprone.info/bugpattern/SunApi) discourages use of internal proprietary JDK APIs which may be removed from future releases. Full Changelog: https://github.com/google/error-prone/compare/v2.27.1...v2.28.0 ### [`v2.27.1`](https://redirect.github.com/google/error-prone/releases/tag/v2.27.1): Error Prone 2.27.1 This release contains all of the changes in [2.27.0](https://redirect.github.com/google/error-prone/releases/tag/v2.27.0), plus a bug fix to [`ClassInitializationDeadlock`](https://errorprone.info/bugpattern/ClassInitializationDeadlock) ([https://github.com/google/error-prone/issues/4378](https://redirect.github.com/google/error-prone/issues/4378)) Full Changelog: https://github.com/google/error-prone/compare/v2.27.0...v2.27.1 ### [`v2.27.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.27.0): Error Prone 2.27.0 New checks: - [`ClassInitializationDeadlock`](https://errorprone.info/bugpattern/ClassInitializationDeadlock) detects class initializers that reference subtypes of the current class, which can result in deadlocks. - [`MockitoDoSetup`](https://errorprone.info/bugpattern/MockitoDoSetup) suggests using `when`/`thenReturn` over `doReturn`/`when` for additional type safety. - [`VoidUsed`](https://errorprone.info/bugpattern/VoidUsed) suggests using a literal `null` instead of referring to a `Void`-typed variable. Modified checks: - `TruthSelfEquals` has been renamed and generalized as [`SelfAssertion`](https://errorprone.info/bugpattern/SelfAssertion) - [`RedundantSetterCall`](https://errorprone.info/bugpattern/RedundantSetterCall) has been improved, and enabled as an error oby default Closed issues: [#​4291](https://redirect.github.com/google/error-prone/issues/4291). [#​4308](https://redirect.github.com/google/error-prone/issues/4308), [#​4343](https://redirect.github.com/google/error-prone/issues/4343), [#​4320](https://redirect.github.com/google/error-prone/issues/4320) Full Changelog: https://github.com/google/error-prone/compare/v2.26.1...v2.27.0 ### [`v2.26.1`](https://redirect.github.com/google/error-prone/releases/tag/v2.26.1): Error Prone 2.26.1 This release contains all of the changes in [2.26.0](https://redirect.github.com/google/error-prone/releases/tag/v2.26.0), plus a bug fix to the module name of the annotations artifact `com.google.errorprone.annotations` (https://github.com/google/error-prone/commit/9d99ee76f2ca8568b69150f5df7fe845c8545d16) Starting in `2.26.x`, the 'annotations' artifact now includes a `module-info.java` for Java Platform Module System support, thanks to [@​sgammon](https://redirect.github.com/sgammon) in [#​4311](https://redirect.github.com/google/error-prone/issues/4311). *** **Compatibility note:** Now that the annotations artifact explicit declares a module instead of relying on `Automatic-Module-Name`, JDK 17 and newer perform stricter module encapsulation checks. Modularized libraries depending on Error Prone annotations `2.26.x` and newer may see errors like: error: package com.google.errorprone.annotations is not visible import com.google.errorprone.annotations.CheckReturnValue; ^ (package com.google.errorprone.annotations is declared in module com.google.errorprone.annotations, but module ... does not read it) The fix is to add `requires static` to the module declaration of modularized libraries that depend on Error Prone annotations: ```diff module your.module { ... + requires static com.google.errorprone.annotations; } ``` *** Full Changelog: https://github.com/google/error-prone/compare/v2.26.0...v2.26.1 ### [`v2.26.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.26.0): Error Prone 2.26.0 **Warning: This release contains a bug, please use [2.26.1](https://redirect.github.com/google/error-prone/releases/tag/v2.26.1) or newer instead.** Changes: - The 'annotations' artifact now includes a `module-info.java` for Java Platform Module System support, thanks to [@​sgammon](https://redirect.github.com/sgammon) in [#​4311](https://redirect.github.com/google/error-prone/issues/4311). - Disabled checks passed to `-XepPatchChecks` are now ignored, instead of causing a crash. Thanks to [@​oxkitsune](https://redirect.github.com/oxkitsune) in [#​4028](https://redirect.github.com/google/error-prone/issues/4028). New checks: - [`SystemConsoleNull`](https://errorprone.info/bugpattern/SystemConsoleNull): Null-checking `System.console()` is not a reliable way to detect if the console is connected to a terminal. - [`EnumOrdinal`](https://errorprone.info/bugpattern/EnumOrdinal): Discourage uses of `Enum.ordinal()` Closed issues: [#​2649](https://redirect.github.com/google/error-prone/issues/2649), [#​3908](https://redirect.github.com/google/error-prone/issues/3908), [#​4028](https://redirect.github.com/google/error-prone/issues/4028), [#​4311](https://redirect.github.com/google/error-prone/issues/4311), [#​4314](https://redirect.github.com/google/error-prone/issues/4314) Full Changelog: https://github.com/google/error-prone/compare/v2.25.0...v2.26.0 ### [`v2.25.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.25.0): Error Prone 2.25.0 New checks: - [`JUnitIncompatibleType`](https://errorprone.info/bugpattern/JUnitIncompatibleType): Detects incompatible types passed to an assertion, similar to [` TruthIncompatibleType `](https://errorprone.info/bugpattern/TruthIncompatibleType) - [`RedundantSetterCall`](https://errorprone.info/bugpattern/RedundantSetterCall): Detects fields set twice in the same chained expression. Generalization of previous `ProtoRedundantSet` check to also handle [AutoValue](https://redirect.github.com/google/auto/blob/main/value/userguide/index.md). Closed issues: [#​4195](https://redirect.github.com/google/error-prone/issues/4195), [#​4224](https://redirect.github.com/google/error-prone/issues/4224), [#​4228](https://redirect.github.com/google/error-prone/issues/4228), [#​4248](https://redirect.github.com/google/error-prone/issues/4248), [#​4249](https://redirect.github.com/google/error-prone/issues/4249), [#​4251](https://redirect.github.com/google/error-prone/issues/4251) Full Changelog: https://github.com/google/error-prone/compare/v2.24.1...v2.25.0 ### [`v2.24.1`](https://redirect.github.com/google/error-prone/releases/tag/v2.24.1): Error Prone 2.24.1 Changes: - Add an assertion to try to help debug [https://github.com/google/error-prone/issues/4225](https://redirect.github.com/google/error-prone/issues/4225) Full Changelog: https://github.com/google/error-prone/compare/v2.24.0...v2.24.1 ### [`v2.24.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.24.0): Error Prone 2.24.0 New checks: - [`MultipleNullnessAnnotations`](https://errorprone.info/bugpattern/MultipleNullnessAnnotations): Discourage multiple nullness annotations - [`NullableTypeParameter`](https://errorprone.info/bugpattern/NullableTypeParameter): Discourage nullness annotations on type parameters - [`NullableWildcard`](https://errorprone.info/bugpattern/NullableWildcard): Discourage nullness annotations on wildcards - [`SuperCallToObjectMethod`](https://errorprone.info/bugpattern/SuperCallToObjectMethod): Generalization of `SuperEqualsIsObjectEquals`, now covers `hashCode` Full Changelog: https://github.com/google/error-prone/compare/v2.23.0...v2.24.0 ### [`v2.23.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.23.0): Error Prone 2.23.0 New checks: - [`DuplicateDateFormatField`](https://errorprone.info/bugpattern/DuplicateDateFormatField) - [`NonFinalStaticField`](https://errorprone.info/bugpattern/NonFinalStaticField) - [`StringCharset`](https://errorprone.info/bugpattern/StringCharset) - [`StringFormatWithLiteral`](https://errorprone.info/bugpattern/StringFormatWithLiteral) - [`SuperEqualsIsObjectEquals`](https://errorprone.info/bugpattern/SuperEqualsIsObjectEquals) Bug fixes and improvements: [#​3897](https://redirect.github.com/google/error-prone/issues/3897), [#​4114](https://redirect.github.com/google/error-prone/issues/4114), [#​4123](https://redirect.github.com/google/error-prone/issues/4123) Full Changelog: https://github.com/google/error-prone/compare/v2.22.0...v2.23.0 ### [`v2.22.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.22.0): Error Prone 2.22.0 We are considering raising the minimum supported JDK from JDK 11 to JDK 17 in a future release of Error Prone, see [#​3803](https://redirect.github.com/google/error-prone/issues/3803). Note that using a newer JDK version to run javac during the build doesn't prevent building code that is deployed to earlier versions, for example it's supported to use the JDK 17 javac and pass `--release 11` to compile Java 11 code that is deployed to a JDK 11 runtime. If you have feedback, please comment on [#​3803](https://redirect.github.com/google/error-prone/issues/3803). New checks: - [`ClosingStandardOutputStreams`](https://errorprone.info/bugpattern/ClosingStandardOutputStreams): Prevents accidentally closing `System.{out,err}` with try-with-resources - [`TruthContainsExactlyElementsInUsage`](https://errorprone.info/bugpattern/TruthContainsExactlyElementsInUsage): `containsExactly` is preferred over `containsExactlyElementsIn` when creating new iterables - [`UnnecessaryAsync`](https://errorprone.info/bugpattern/UnnecessaryAsync): detects unnecessary use of async primitives in local (and hence single-threaded) scopes - [`ReturnAtTheEndOfVoidFunction`](https://errorprone.info/bugpattern/ReturnAtTheEndOfVoidFunction): detects unnecessary `return` statements at the end of `void` functions - [`MultimapKeys`](https://errorprone.info/bugpattern/MultimapKeys): Suggests using `keySet()` instead of iterating over `Multimap.keys()`, which does not collapse duplicates Bug fixes and improvements: - Don't complain about literal IP addresses in `AddressSelection` (https://github.com/google/error-prone/commit/44b65527debbc57892f21ca3ba458b16771e423e) - Prevent SuggestedFixes#renameMethod from modifying return type declaration ([#​4043](https://redirect.github.com/google/error-prone/issues/4043)) - Fix UnusedVariable false positives for private record parameters ([#​2713](https://redirect.github.com/google/error-prone/issues/2713)) - When running in conservative mode, no longer assume that implementations of `Map.get`, etc. return `null` ([#​2910](https://redirect.github.com/google/error-prone/issues/2910)) - CanIgnoreReturnValueSuggester: Support additional exempting method annotations ([#​4009](https://redirect.github.com/google/error-prone/issues/4009)) - UnusedVariable: exclude junit5's `@RegisterExtension` ([#​3892](https://redirect.github.com/google/error-prone/issues/3892)) - Support running all available patch checks ([#​947](https://redirect.github.com/google/error-prone/issues/947)) - Upgrade java-diff-utils 4.0 -> 4.12 ([#​4081](https://redirect.github.com/google/error-prone/issues/4081)) - Flag unused Refaster template parameters ([#​4060](https://redirect.github.com/google/error-prone/issues/4060)) - Support `@SuppressWarnings("all")` ([#​4065](https://redirect.github.com/google/error-prone/issues/4065)) - Prevent Refaster `UMemberSelect` from matching method parameters ([#​2456](https://redirect.github.com/google/error-prone/issues/2456)) - MissingDefault : Don't require `// fall out` comments on expression switches ([#​2709](https://redirect.github.com/google/error-prone/issues/2709)) - Skip UnnecessaryLambda findings for usages in enhanced for loops ([#​2518](https://redirect.github.com/google/error-prone/issues/2518)) - Fix bug where nested MissingBraces violations' suggested fixes result in broken code ([#​3797](https://redirect.github.com/google/error-prone/issues/3797)) - Add support for specifying `exemptPrefixes`/`exemptNames` for UnusedVariable via flags ([#​2753](https://redirect.github.com/google/error-prone/issues/2753)) - UnusedMethod: Added exempting variable annotations ([#​2881](https://redirect.github.com/google/error-prone/issues/2881)) Full Changelog: https://github.com/google/error-prone/compare/v2.21.1...v2.22.0 ### [`v2.21.1`](https://redirect.github.com/google/error-prone/releases/tag/v2.21.1): Error Prone 2.21.1 Changes: - Handle overlapping ranges in suppressedRegions (fixes [#​4040](https://redirect.github.com/google/error-prone/issues/4040)) - Add [` AddressSelection `](https://errorprone.info/bugpattern/AddressSelection) to discourage APIs that convert a hostname to a single address Full Changelog: https://github.com/google/error-prone/compare/v2.21.0...v2.21.1 ### [`v2.21.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.21.0): Error Prone 2.21.0 New Checkers: - [`AttemptedNegativeZero`](https://errorprone.info/bugpattern/AttemptedNegativeZero): Prevents accidental use of `-0`, which is the same as `0`. The floating-point negative zero is `-0.0`. - [`ICCProfileGetInstance`](https://errorprone.info/bugpattern/ICCProfileGetInstance): Warns on uses of `ICC_Profile.getInstance(String)`, due to [JDK-8191622](https://bugs.openjdk.org/browse/JDK-8191622). - [`MutableGuiceModule`](https://errorprone.info/bugpattern/MutableGuiceModule): Fields in Guice modules should be `final`. - [`NullableOptional`](https://errorprone.info/bugpattern/NullableOptional): Discourages `@Nullable`-annotated `Optional`s. - [`OverridingMethodInconsistentArgumentNamesChecker`](https://errorprone.info/bugpattern/OverridingMethodInconsistentArgumentNamesChecker): Arguments of overriding method are inconsistent with overridden method. Fixed issues: [#​3976](https://redirect.github.com/google/error-prone/issues/3976), [#​3986](https://redirect.github.com/google/error-prone/issues/3986), [#​4001](https://redirect.github.com/google/error-prone/issues/4001), [#​4002](https://redirect.github.com/google/error-prone/issues/4002), [#​4026](https://redirect.github.com/google/error-prone/issues/4026), [#​4027](https://redirect.github.com/google/error-prone/issues/4027) Full Changelog: https://github.com/google/error-prone/compare/v2.20.0...v2.21.0 ### [`v2.20.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.20.0): Error Prone 2.20.0 Changes: - This release is compatible with early-access builds of JDK 21. New Checkers: - [`InlineTrivialConstant`](https://errorprone.info/bugpattern/InlineTrivialConstant) - [`UnnecessaryStringBuilder`](https://errorprone.info/bugpattern/UnnecessaryStringBuilder) - [`BanClassLoader`](https://errorprone.info/bugpattern/BanClassLoader) - [`DereferenceWithNullBranch`](https://errorprone.info/bugpattern/DereferenceWithNullBranch) - [`DoNotUseRuleChain`](https://errorprone.info/bugpattern/DoNotUseRuleChain) - [`LockOnNonEnclosingClassLiteral`](https://errorprone.info/bugpattern/LockOnNonEnclosingClassLiteral) - [`MissingRefasterAnnotation`](https://errorprone.info/bugpattern/MissingRefasterAnnotation) - [`NamedLikeContextualKeyword`](https://errorprone.info/bugpattern/NamedLikeContextualKeyword) - [`NonApiType`](https://errorprone.info/bugpattern/NonApiType) Fixes issues: [#​2232](https://redirect.github.com/google/error-prone/issues/2232), [#​2243](https://redirect.github.com/google/error-prone/issues/2243), [#​2997](https://redirect.github.com/google/error-prone/issues/2997), [#​3301](https://redirect.github.com/google/error-prone/issues/3301), [#​3843](https://redirect.github.com/google/error-prone/issues/3843), [#​3903](https://redirect.github.com/google/error-prone/issues/3903), [#​3918](https://redirect.github.com/google/error-prone/issues/3918), [#​3923](https://redirect.github.com/google/error-prone/issues/3923), [#​3931](https://redirect.github.com/google/error-prone/issues/3931), [#​3945](https://redirect.github.com/google/error-prone/issues/3945), [#​3946](https://redirect.github.com/google/error-prone/issues/3946) **Full Changelog**: https://github.com/google/error-prone/compare/v2.19.1...v2.20.0 ### [`v2.19.1`](https://redirect.github.com/google/error-prone/releases/tag/v2.19.1): Error Prone 2.19.1 This release fixes a binary compatibility issue when running on JDK 11, see [#​3895](https://redirect.github.com/google/error-prone/issues/3895) **Full Changelog**: https://github.com/google/error-prone/compare/v2.19.0...v2.19.1 ### [`v2.19.0`](https://redirect.github.com/google/error-prone/releases/tag/v2.19.0): Error Prone 2.19.0 New Checkers: - [`NotJavadoc`](https://errorprone.info/bugpattern/NotJavadoc) - [`StringCaseLocaleUsage`](https://errorprone.info/bugpattern/StringCaseLocaleUsage) - [`UnnecessaryTestMethodPrefix`](https://errorprone.info/bugpattern/UnnecessaryTestMethodPrefix) Fixes issues: [#​956](https://redirect.github.com/google/error-prone/issues/956), [#​3504](https://redirect.github.com/google/error-prone/issues/3504), [#​3654](https://redirect.github.com/google/error-prone/issues/3654), [#​3703](https://redirect.github.com/google/error-prone/issues/3703), [#​3731](https://redirect.github.com/google/error-prone/issues/3731), [#​3737](https://redirect.github.com/google/error-prone/issues/3737), [#​3760](https://redirect.github.com/google/error-prone/issues/3760), [#​3779](https://redirect.github.com/google/error-prone/issues/3779), [#​3796](https://redirect.github.com/google/error-prone/issues/3796), [#​3809](https://redirect.github.com/google/error-prone/issues/3809), [#​3813](https://redirect.github.com/google/error-prone/issues/3813) **Full Changelog**: https://github.com/google/error-prone/compare/v2.18.0...v2.19.0

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR was generated by Mend Renovate. View the repository job log.