diff options
author | Marge Bot <marge@benkard.de> | 2024-11-20 18:57:33 +0000 |
---|---|---|
committer | Marge Bot <marge@benkard.de> | 2024-11-20 18:57:33 +0000 |
commit | 49010e31e37034fdaf58c88209cd5d1f9fede123 (patch) | |
tree | 0fc3cc9a5225b16214817300c3ad7aef11a73aec /jgvariant-parent | |
parent | 60e248de53b6cda3d22f6af25457924ac9428552 (diff) | |
parent | a186904325db73f53e5bfa5e8237c4bb4b76a857 (diff) |
This MR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [com.google.errorprone:error_prone_core](https://errorprone.info) ([source](https://github.com/google/error-prone)) | | minor | `2.35.1` -> `2.36.0` |
| [com.google.errorprone:error_prone_annotations](https://errorprone.info) ([source](https://github.com/google/error-prone)) | compile | minor | `2.35.1` -> `2.36.0` |
---
### Release Notes
<details>
<summary>google/error-prone</summary>
### [`v2.36.0`](https://github.com/google/error-prone/releases/tag/v2.36.0): Error Prone 2.36.0
[Compare Source](https://github.com/google/error-prone/compare/v2.35.1...v2.36.0)
Changes:
- Add new matcher interfaces to `ErrorProneScanner` for AST nodes introduced after Java 11 ([`e5fd194`](https://github.com/google/error-prone/commit/e5fd194fa21ef9a01e8d4c72489906247aad81c8))
- Fix compatibility with latest JDK 24 EA builds (https://github.com/google/error-prone/commit/d67bc156b737d13ac693d73a403a11a97804423f)
- Check that `--should-stop=ifError=FLOW` is set when using the `-Xplugin` integration ([`e71db1f`](https://github.com/google/error-prone/commit/e71db1f369a9367f6f2db34c4fbd006b6d6238fd))
New checks:
- [`DuplicateBranches`](https://errorprone.info/bugpattern/DuplicateBranches): Discourage conditional expressions and if statements where both branches are the same
- [`RedundantControlFlow`](https://errorprone.info/bugpattern/RedundantControlFlow): Reports redundant `continue` statements.
Closed issues: [#​4633](https://github.com/google/error-prone/issues/4633), [#​4646](https://github.com/google/error-prone/issues/4646)
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
â™» **Rebasing**: Whenever MR is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this MR and you won't be reminded about these updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box
---
This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNC4wIiwidXBkYXRlZEluVmVyIjoiMzQuMjQuMCJ9-->
Diffstat (limited to 'jgvariant-parent')
-rw-r--r-- | jgvariant-parent/pom.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jgvariant-parent/pom.xml b/jgvariant-parent/pom.xml index f6c2e4c..d543624 100644 --- a/jgvariant-parent/pom.xml +++ b/jgvariant-parent/pom.xml @@ -72,7 +72,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later <versions-plugin.version>2.18.0</versions-plugin.version> <apiguardian.version>1.1.2</apiguardian.version> - <errorprone.version>2.35.1</errorprone.version> + <errorprone.version>2.36.0</errorprone.version> <inject-resources.version>0.3.5</inject-resources.version> <jetbrains-annotations.version>26.0.1</jetbrains-annotations.version> <jqwik.version>1.9.1</jqwik.version> @@ -219,6 +219,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</arg> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg> <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg> + <arg>--should-stop=ifError=FLOW</arg> </compilerArgs> <annotationProcessorPaths> <path> |