Skip to content

Commit 670bf04

Browse files
Bump error-prone from 2.42.0 to 2.43.0 (#364)
Bumps `error-prone` from 2.42.0 to 2.43.0. Updates `com.google.errorprone:error_prone_annotations` from 2.42.0 to 2.43.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/google/error-prone/releases">com.google.errorprone:error_prone_annotations's releases</a>.</em></p> <blockquote> <h2>Error Prone 2.43.0</h2> <p>The minimum support JDK version to run Error Prone is now JDK 21 (<a href="https://redirect.github.com/google/error-prone/issues/4867">google/error-prone#4867</a>).</p> <p>Changes:</p> <ul> <li><code>-XepPatchChecks</code> now skips disabled checks (<a href="https://redirect.github.com/google/error-prone/issues/4943">#4943</a>)</li> <li><code>AndroidJdkLibsChecker</code> has been removed, the recommended replacement for Android code is Android Lint's NewApi check</li> </ul> <p>New checks:</p> <ul> <li><a href="https://errorprone.info/bugpattern/NullNeedsCastForVarargs"><code>NullNeedsCastForVarargs</code></a>: Detect calls that incorrectly passes a <code>null</code> <em>array</em> instead of a <code>null</code> <em>element</em>.</li> <li><a href="https://errorprone.info/bugpattern/RedundantNullCheck"><code>RedundantNullCheck</code></a>: detect checks on expressions that are non-null.</li> </ul> <p>Closed issues: <a href="https://redirect.github.com/google/error-prone/issues/4943">#4943</a>, <a href="https://redirect.github.com/google/error-prone/issues/5102">#5102</a>, <a href="https://redirect.github.com/google/error-prone/issues/5107">#5107</a>, <a href="https://redirect.github.com/google/error-prone/issues/5121">#5121</a>, <a href="https://redirect.github.com/google/error-prone/issues/5158">#5158</a>, <a href="https://redirect.github.com/google/error-prone/issues/5217">#5217</a>, <a href="https://redirect.github.com/google/error-prone/issues/5239">#5239</a></p> <p>Full changelog: <a href="https://github.com/google/error-prone/compare/v2.42.0...v2.43.0">https://github.com/google/error-prone/compare/v2.42.0...v2.43.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/google/error-prone/commit/abec9b6a08ae48bb9ac7cb6978e8a9796408afbc"><code>abec9b6</code></a> Release Error Prone 2.43.0</li> <li><a href="https://github.com/google/error-prone/commit/a97374a2b2f912257ff63e780e7caa059c2f2f7a"><code>a97374a</code></a> Upgrade Java version from 17 to 21 in release workflow</li> <li><a href="https://github.com/google/error-prone/commit/5882a4393d991b068ce6276bc182b8e6c0ec5f88"><code>5882a43</code></a> Update release.yml</li> <li><a href="https://github.com/google/error-prone/commit/851e0b0e0227b92fd889dfb6846ce7fcbb5fe16f"><code>851e0b0</code></a> Remove obsolete uses of reflection from Error Prone</li> <li><a href="https://github.com/google/error-prone/commit/344e3dcb60384c72bdd5660b6311ae25cb24af09"><code>344e3dc</code></a> Remove an obsolete use of reflection</li> <li><a href="https://github.com/google/error-prone/commit/5f46e622d0b88f07826bf3af74b9b1d717d97362"><code>5f46e62</code></a> Fix a typo (wrong quotation mark).</li> <li><a href="https://github.com/google/error-prone/commit/de7d1915281f6e307686a00c7744e7b085d56232"><code>de7d191</code></a> Update <code>IncorrectMainMethod</code> documentation in light of JEP512.</li> <li><a href="https://github.com/google/error-prone/commit/09c78e01573334cee793b67346ca0f3175fd47a3"><code>09c78e0</code></a> Remove an obsolete TODO</li> <li><a href="https://github.com/google/error-prone/commit/17c271ea558a8d38579bd9f78206905f3983bd67"><code>17c271e</code></a> Turn down AndroidJdkLibsChecker</li> <li><a href="https://github.com/google/error-prone/commit/0ae79f56536e3af86b3cdbab441ea650d899b0c3"><code>0ae79f5</code></a> Add tests for subtypes of Immutable and ThreadSafe classes</li> <li>Additional commits viewable in <a href="https://github.com/google/error-prone/compare/v2.42.0...v2.43.0">compare view</a></li> </ul> </details> <br /> Updates `com.google.errorprone:error_prone_core` from 2.42.0 to 2.43.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/google/error-prone/releases">com.google.errorprone:error_prone_core's releases</a>.</em></p> <blockquote> <h2>Error Prone 2.43.0</h2> <p>The minimum support JDK version to run Error Prone is now JDK 21 (<a href="https://redirect.github.com/google/error-prone/issues/4867">google/error-prone#4867</a>).</p> <p>Changes:</p> <ul> <li><code>-XepPatchChecks</code> now skips disabled checks (<a href="https://redirect.github.com/google/error-prone/issues/4943">#4943</a>)</li> <li><code>AndroidJdkLibsChecker</code> has been removed, the recommended replacement for Android code is Android Lint's NewApi check</li> </ul> <p>New checks:</p> <ul> <li><a href="https://errorprone.info/bugpattern/NullNeedsCastForVarargs"><code>NullNeedsCastForVarargs</code></a>: Detect calls that incorrectly passes a <code>null</code> <em>array</em> instead of a <code>null</code> <em>element</em>.</li> <li><a href="https://errorprone.info/bugpattern/RedundantNullCheck"><code>RedundantNullCheck</code></a>: detect checks on expressions that are non-null.</li> </ul> <p>Closed issues: <a href="https://redirect.github.com/google/error-prone/issues/4943">#4943</a>, <a href="https://redirect.github.com/google/error-prone/issues/5102">#5102</a>, <a href="https://redirect.github.com/google/error-prone/issues/5107">#5107</a>, <a href="https://redirect.github.com/google/error-prone/issues/5121">#5121</a>, <a href="https://redirect.github.com/google/error-prone/issues/5158">#5158</a>, <a href="https://redirect.github.com/google/error-prone/issues/5217">#5217</a>, <a href="https://redirect.github.com/google/error-prone/issues/5239">#5239</a></p> <p>Full changelog: <a href="https://github.com/google/error-prone/compare/v2.42.0...v2.43.0">https://github.com/google/error-prone/compare/v2.42.0...v2.43.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/google/error-prone/commit/abec9b6a08ae48bb9ac7cb6978e8a9796408afbc"><code>abec9b6</code></a> Release Error Prone 2.43.0</li> <li><a href="https://github.com/google/error-prone/commit/a97374a2b2f912257ff63e780e7caa059c2f2f7a"><code>a97374a</code></a> Upgrade Java version from 17 to 21 in release workflow</li> <li><a href="https://github.com/google/error-prone/commit/5882a4393d991b068ce6276bc182b8e6c0ec5f88"><code>5882a43</code></a> Update release.yml</li> <li><a href="https://github.com/google/error-prone/commit/851e0b0e0227b92fd889dfb6846ce7fcbb5fe16f"><code>851e0b0</code></a> Remove obsolete uses of reflection from Error Prone</li> <li><a href="https://github.com/google/error-prone/commit/344e3dcb60384c72bdd5660b6311ae25cb24af09"><code>344e3dc</code></a> Remove an obsolete use of reflection</li> <li><a href="https://github.com/google/error-prone/commit/5f46e622d0b88f07826bf3af74b9b1d717d97362"><code>5f46e62</code></a> Fix a typo (wrong quotation mark).</li> <li><a href="https://github.com/google/error-prone/commit/de7d1915281f6e307686a00c7744e7b085d56232"><code>de7d191</code></a> Update <code>IncorrectMainMethod</code> documentation in light of JEP512.</li> <li><a href="https://github.com/google/error-prone/commit/09c78e01573334cee793b67346ca0f3175fd47a3"><code>09c78e0</code></a> Remove an obsolete TODO</li> <li><a href="https://github.com/google/error-prone/commit/17c271ea558a8d38579bd9f78206905f3983bd67"><code>17c271e</code></a> Turn down AndroidJdkLibsChecker</li> <li><a href="https://github.com/google/error-prone/commit/0ae79f56536e3af86b3cdbab441ea650d899b0c3"><code>0ae79f5</code></a> Add tests for subtypes of Immutable and ThreadSafe classes</li> <li>Additional commits viewable in <a href="https://github.com/google/error-prone/compare/v2.42.0...v2.43.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e053b7e commit 670bf04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
assertj = "3.27.6"
33
buf = "1.59.0"
44
cel = "0.11.0"
5-
error-prone = "2.42.0"
5+
error-prone = "2.43.0"
66
junit = "5.14.0"
77
maven-publish = "0.34.0"
88
protobuf = "4.33.0"

0 commit comments

Comments
 (0)