Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: update dependency com.google.errorprone:error_prone_annotations to v2.29.2 #4291

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Jan 3, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.google.errorprone:error_prone_annotations (source) 2.20.0 -> 2.29.2 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

google/error-prone (com.google.errorprone:error_prone_annotations)

v2.29.2: Error Prone 2.29.2

This release contains all of the changes in 2.29.0 and 2.29.1, plus:

Full Changelog: google/error-prone@v2.29.1...v2.29.2

v2.29.1: Error Prone 2.29.1

This release contains all of the changes in 2.29.0, plus:

Full Changelog: google/error-prone@v2.29.0...v2.29.1

v2.29.0: Error Prone 2.29.0

New checks:

Closed issues: #​4318, #​4429, #​4467

Full Changelog: google/error-prone@v2.28.0...v2.29.0

v2.28.0: Error Prone 2.28.0

Compare Source

Error Prone nows supports the latest JDK 23 EA builds (#​4412, #​4415).

Closed issues:

  • Improved errors for invalid check severities (#​4306).
  • Fix a crash with nested instanceof patterns (#​4349).
  • Fix a crash in JUnitIncompatibleType (#​4377).
  • In ObjectEqualsForPrimitives, don't suggest replacing equal with == for floating-point values (#​4392).

New checks:

Full Changelog: google/error-prone@v2.27.1...v2.28.0

v2.27.1: Error Prone 2.27.1

This release contains all of the changes in 2.27.0, plus a bug fix to ClassInitializationDeadlock (https://github.com/google/error-prone/issues/4378)

Full Changelog: google/error-prone@v2.27.0...v2.27.1

v2.27.0: Error Prone 2.27.0

New checks:

  • ClassInitializationDeadlock detects class initializers that reference subtypes of the current class, which can result in deadlocks.
  • MockitoDoSetup suggests using when/thenReturn over doReturn/when for additional type safety.
  • VoidUsed suggests using a literal null instead of referring to a Void-typed variable.

Modified checks:

Closed issues: #​4291. #​4308, #​4343, #​4320

Full Changelog: google/error-prone@v2.26.1...v2.27.0

v2.26.1: Error Prone 2.26.1

Changes:

Full Changelog: google/error-prone@v2.26.0...v2.26.1

v2.26.0: Error Prone 2.26.0

Changes:

  • The 'annotations' artifact now includes a module-info.java for Java Platform Module System support, thanks to @​sgammon in #​4311.
  • Disabled checks passed to -XepPatchChecks are now ignored, instead of causing a crash. Thanks to @​oxkitsune in #​4028.

New checks:

  • SystemConsoleNull: Null-checking System.console() is not a reliable way to detect if the console is connected to a terminal.
  • EnumOrdinal: Discourage uses of Enum.ordinal()

Closed issues: #​2649, #​3908, #​4028, #​4311, #​4314

Full Changelog: google/error-prone@v2.25.0...v2.26.0

v2.25.0: Error Prone 2.25.0

New checks:

Closed issues: #​4195, #​4224, #​4228, #​4248, #​4249, #​4251

Full Changelog: google/error-prone@v2.24.1...v2.25.0

v2.24.1: Error Prone 2.24.1

Changes:

Full Changelog: google/error-prone@v2.24.0...v2.24.1

v2.24.0: Error Prone 2.24.0

New checks:

Full Changelog: google/error-prone@v2.23.0...v2.24.0

v2.23.0: Error Prone 2.23.0

Compare Source

New checks:

Bug fixes and improvements: #​3897, #​4114, #​4123

Full Changelog: google/error-prone@v2.22.0...v2.23.0

v2.22.0: Error Prone 2.22.0

Compare Source

We are considering raising the minimum supported JDK from JDK 11 to JDK 17 in a future release of Error Prone, see #​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.

New checks:

Bug fixes and improvements:

  • Don't complain about literal IP addresses in AddressSelection (google/error-prone@44b6552)
  • Prevent SuggestedFixes#renameMethod from modifying return type declaration (#​4043)
  • Fix UnusedVariable false positives for private record parameters (#​2713)
  • When running in conservative mode, no longer assume that implementations of Map.get, etc. return null (#​2910)
  • CanIgnoreReturnValueSuggester: Support additional exempting method annotations (#​4009)
  • UnusedVariable: exclude junit5's @RegisterExtension (#​3892)
  • Support running all available patch checks (#​947)
  • Upgrade java-diff-utils 4.0 -> 4.12 (#​4081)
  • Flag unused Refaster template parameters (#​4060)
  • Support @SuppressWarnings("all") (#​4065)
  • Prevent Refaster UMemberSelect from matching method parameters (#​2456)
  • MissingDefault : Don't require // fall out comments on expression switches (#​2709)
  • Skip UnnecessaryLambda findings for usages in enhanced for loops (#​2518)
  • Fix bug where nested MissingBraces violations' suggested fixes result in broken code (#​3797)
  • Add support for specifying exemptPrefixes/exemptNames for UnusedVariable via flags (#​2753)
  • UnusedMethod: Added exempting variable annotations (#​2881)

Full Changelog: google/error-prone@v2.21.1...v2.22.0

v2.21.1: Error Prone 2.21.1

Compare Source

Changes:

  • Handle overlapping ranges in suppressedRegions (fixes #​4040)
  • Add AddressSelection to discourage APIs that convert a hostname to a single address

Full Changelog: google/error-prone@v2.21.0...v2.21.1

v2.21.0: Error Prone 2.21.0

Compare Source

New Checkers:

Fixed issues: #​3976, #​3986, #​4001, #​4002, #​4026, #​4027

Full Changelog: google/error-prone@v2.20.0...v2.21.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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate-bot renovate-bot requested a review from a team as a code owner January 3, 2024 18:58
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Jan 3, 2024
@product-auto-label product-auto-label bot added the size: xs Pull request size is extra small. label Jan 3, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jan 3, 2024
@product-auto-label product-auto-label bot added the api: bigtable Issues related to the googleapis/java-bigtable-hbase API. label Jan 3, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jan 3, 2024
@renovate-bot renovate-bot force-pushed the renovate/com.google.errorprone-error_prone_annotations-2.x branch from 86aa03b to a9f73d8 Compare February 17, 2024 00:30
@renovate-bot renovate-bot changed the title deps: update dependency com.google.errorprone:error_prone_annotations to v2.24.1 Feb 17, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Feb 17, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Feb 17, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Feb 17, 2024
@renovate-bot renovate-bot changed the title deps: update dependency com.google.errorprone:error_prone_annotations to v2.25.0 Mar 11, 2024
@renovate-bot renovate-bot force-pushed the renovate/com.google.errorprone-error_prone_annotations-2.x branch from a9f73d8 to 84abc66 Compare March 11, 2024 19:31
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Mar 11, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Mar 11, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Mar 11, 2024
@renovate-bot renovate-bot force-pushed the renovate/com.google.errorprone-error_prone_annotations-2.x branch from 84abc66 to 7f20b9f Compare March 12, 2024 19:11
@renovate-bot renovate-bot changed the title deps: update dependency com.google.errorprone:error_prone_annotations to v2.26.0 Mar 12, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Mar 12, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Mar 12, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Mar 12, 2024
@renovate-bot renovate-bot force-pushed the renovate/com.google.errorprone-error_prone_annotations-2.x branch from 7f20b9f to 285f245 Compare April 19, 2024 19:31
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Apr 19, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Apr 19, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Apr 19, 2024
@renovate-bot renovate-bot changed the title deps: update dependency com.google.errorprone:error_prone_annotations to v2.27.0 May 1, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels May 1, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label May 1, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label May 1, 2024
@renovate-bot renovate-bot force-pushed the renovate/com.google.errorprone-error_prone_annotations-2.x branch from 3e924b9 to 109c035 Compare May 31, 2024 18:38
@renovate-bot renovate-bot changed the title deps: update dependency com.google.errorprone:error_prone_annotations to v2.27.1 May 31, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels May 31, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label May 31, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label May 31, 2024
@renovate-bot renovate-bot changed the title deps: update dependency com.google.errorprone:error_prone_annotations to v2.28.0 Jul 16, 2024
@renovate-bot renovate-bot force-pushed the renovate/com.google.errorprone-error_prone_annotations-2.x branch from 109c035 to 137fda3 Compare July 16, 2024 19:03
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Jul 16, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jul 16, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jul 16, 2024
@renovate-bot renovate-bot force-pushed the renovate/com.google.errorprone-error_prone_annotations-2.x branch from 137fda3 to 9da376b Compare July 17, 2024 22:57
@renovate-bot renovate-bot changed the title deps: update dependency com.google.errorprone:error_prone_annotations to v2.29.0 Jul 17, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Jul 17, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jul 17, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jul 17, 2024
@renovate-bot renovate-bot force-pushed the renovate/com.google.errorprone-error_prone_annotations-2.x branch from 9da376b to 9049d0e Compare July 18, 2024 22:54
@renovate-bot renovate-bot changed the title deps: update dependency com.google.errorprone:error_prone_annotations to v2.29.1 Jul 18, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Jul 18, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jul 18, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jul 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: bigtable Issues related to the googleapis/java-bigtable-hbase API. size: xs Pull request size is extra small.
2 participants