Bump com.google.errorprone:error_prone_annotations from 2.48.0 to 2.49.0 in the dependencies group Bumps the dependencies group with 1 update: [com.google.errorprone:error_prone_annotations](https://github.com/google/error-prone). Updates `com.google.errorprone:error_prone_annotations` from 2.48.0 to 2.49.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.49.0</h2> <p>This release includes several changes to <code>Matcher</code> APIs, and removed some deprecated or problematic APIs:</p> <ul> <li>Remove deprecated <code>MethodMatchers.withSignature</code> API, which relies on fragile <code>toString</code> behaviour. Alternatives for matching on method signatures with varargs and type parameters were added in <a href="https://github.com/google/error-prone/commit/a98a1c55d92d343ae2c142485e8888cd46aa78b3">https://github.com/google/error-prone/commit/a98a1c55d92d343ae2c142485e8888cd46aa78b3</a>.</li> <li>Removed <code>variableType(Matcher)</code> API. <code>Matchers.variableType(Matcher)</code> uses <code>VariableTree#getType</code> to match variable types, which own't work for lambda parameters with inferred types after <a href="https://bugs.openjdk.org/browse/JDK-8268850">JDK-8268850</a>. The recommended replacement is <code>variableType(TypePredicate)</code>.</li> <li>Make <code>enclosingPackage</code> return an optional. Module elements are not enclosed by a package, checks using <code>enclosingPackage</code> shouldn't assume an enclosing package exists when processing arbitrary elements.</li> <li>New <code>FieldMatchers</code> API, similar to <code>MethodMatchers</code> (<a href="https://github.com/google/error-prone/commit/1dd9c3a6bd76fca8104be6ae1c1004655d6a1745">https://github.com/google/error-prone/commit/1dd9c3a6bd76fca8104be6ae1c1004655d6a1745</a>).</li> </ul> <p>New checks:</p> <ul> <li><a href="https://errorprone.info/bugpattern/AssertThrowsBlockToExpression"><code>AssertThrowsBlockToExpression</code></a>: Discourage unnecessary block lambdas in <code>assertThrows</code>.</li> <li><a href="https://errorprone.info/bugpattern/AssertThrowsMinimizer"><code>AssertThrowsMinimizer</code></a>: Suggest minimizing the amount of logic in <code>assertThrows</code>.</li> <li><a href="https://errorprone.info/bugpattern/MemorySegmentReferenceEquality"><code>MemorySegmentReferenceEquality</code></a>: Discourage using reference equality for <code>MemorySegments</code>.</li> <li><a href="https://errorprone.info/bugpattern/PreferThrowsTag"><code>PreferThrowsTag</code></a>: Recommends using <code>@throws</code> instead of the legacy <code>@exception</code> javadoc tag.</li> <li><a href="https://errorprone.info/bugpattern/RecordAccessorInCompactConstructor"><code>RecordAccessorInCompactConstructor</code></a>: detect record accessors inside the compact canonical ctors, which read uninitialized fields.</li> </ul> <p>Closed issues: <a href="https://redirect.github.com/google/error-prone/issues/2283">#2283</a>, <a href="https://redirect.github.com/google/error-prone/issues/3503">#3503</a>, <a href="https://redirect.github.com/google/error-prone/issues/5210">#5210</a>, <a href="https://redirect.github.com/google/error-prone/issues/5289">#5289</a>, <a href="https://redirect.github.com/google/error-prone/issues/5548">#5548</a>, <a href="https://redirect.github.com/google/error-prone/issues/5548">#5548</a>, <a href="https://redirect.github.com/google/error-prone/issues/5554">#5554</a>, <a href="https://redirect.github.com/google/error-prone/issues/5609">#5609</a>, <a href="https://redirect.github.com/google/error-prone/issues/5614">#5614</a>, <a href="https://redirect.github.com/google/error-prone/issues/5656">#5656</a></p> <p>Full changelog: <a href="https://github.com/google/error-prone/compare/v2.48.0...v2.49.0">https://github.com/google/error-prone/compare/v2.48.0...v2.49.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/google/error-prone/commit/89d75c196f2bac93d7aab17db6d2d70a2ee55941"><code>89d75c1</code></a> Release Error Prone 2.49.0</li> <li><a href="https://github.com/google/error-prone/commit/0b7b03b05d038f596e687e35fccd2cdc0356a7e2"><code>0b7b03b</code></a> Fix up some javadoc on `ModifySourceCollectionInStream.isStreamApiInvocationO...</li> <li><a href="https://github.com/google/error-prone/commit/fe5a7b1f4583db97387c46ed32ccd664d3f455f6"><code>fe5a7b1</code></a> Remove old FieldMatchers API</li> <li><a href="https://github.com/google/error-prone/commit/d54a1d1cd9b57dd49de585e21d0e315f3fb88c82"><code>d54a1d1</code></a> Fix up some <code>Finally</code> javadocs.</li> <li><a href="https://github.com/google/error-prone/commit/d93b31908fd361eb5e817a7dd18a1296f12f6414"><code>d93b319</code></a> [RefactorSwitch] bugfix comment handling</li> <li><a href="https://github.com/google/error-prone/commit/ff59782c69b9394e14b11d0b17574fe5b3dafa9c"><code>ff59782</code></a> [IfChainToSwitch] cleanup redundant conditions in ternary. No functional cha...</li> <li><a href="https://github.com/google/error-prone/commit/43b6df64ed635e1fcabaabd9c884df5753aac26b"><code>43b6df6</code></a> Generalise DuplicateAssertion to handle check* methods.</li> <li><a href="https://github.com/google/error-prone/commit/2c4346f59fdcdda7bf17839b55d2d5e416c7d1d1"><code>2c4346f</code></a> Fix a bug in <code>BooleanLiteral</code>: it currently suggests replacing `Boolean.FALSE...</li> <li><a href="https://github.com/google/error-prone/commit/559039bcc26400cd725236bdffe7fc94c4519311"><code>559039b</code></a> [IfChainToSwitch] doc-only change. fix typo in code comments.</li> <li><a href="https://github.com/google/error-prone/commit/393c61ce5b28fd5bcd1290ee831d3358d37cce16"><code>393c61c</code></a> [IfChainToSwitch] enhance code generation to emit unnamed variables, when sup...</li> <li>Additional commits viewable in <a href="https://github.com/google/error-prone/compare/v2.48.0...v2.49.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Fixes https://github.com/google/truth/pull/1641 COPYBARA_INTEGRATE_REVIEW=https://github.com/google/truth/pull/1641 from google:dependabot/maven/dependencies-f3cfcc518e 2a3815fdf442141cffadf517de9007b1d94c9c8a PiperOrigin-RevId: 899561974
diff --git a/pom.xml b/pom.xml index 7c2de78..d234312 100644 --- a/pom.xml +++ b/pom.xml
@@ -108,7 +108,7 @@ <dependency> <groupId>com.google.errorprone</groupId> <artifactId>error_prone_annotations</artifactId> - <version>2.48.0</version> + <version>2.49.0</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId>