Skip to content

fix(deps): update mvn-packages#200

Merged
nielm merged 2 commits intocloudspannerecosystem:mainfrom
renovate-bot:renovate/mvn-packages
Sep 23, 2025
Merged

fix(deps): update mvn-packages#200
nielm merged 2 commits intocloudspannerecosystem:mainfrom
renovate-bot:renovate/mvn-packages

Conversation

@renovate-bot
Copy link
Copy Markdown
Contributor

@renovate-bot renovate-bot commented Feb 18, 2025

This PR contains the following updates:

Package Change Age Confidence
com.google.errorprone:error_prone_core (source) 2.36.0 -> 2.42.0 age confidence
org.codehaus.mojo:build-helper-maven-plugin (source) 3.6.0 -> 3.6.1 age confidence
org.codehaus.mojo:exec-maven-plugin (source) 3.5.0 -> 3.5.1 age confidence
com.diffplug.spotless:spotless-maven-plugin 2.44.2 -> 2.46.1 age confidence
com.google.truth:truth 1.4.4 -> 1.4.5 age confidence
org.apache.maven.plugins:maven-failsafe-plugin (source) 3.5.2 -> 3.5.4 age confidence
org.apache.maven.plugins:maven-surefire-plugin (source) 3.5.2 -> 3.5.4 age confidence
org.apache.maven.plugins:maven-compiler-plugin (source) 3.13.0 -> 3.14.1 age confidence
org.apache.maven.plugins:maven-clean-plugin (source) 3.4.0 -> 3.5.0 age confidence
commons-cli:commons-cli (source) 1.9.0 -> 1.10.0 age confidence
org.slf4j:slf4j-simple (source, changelog) 2.0.16 -> 2.0.17 age confidence
org.slf4j:slf4j-api (source, changelog) 2.0.16 -> 2.0.17 age confidence
com.google.guava:guava 33.4.0-jre -> 33.5.0-jre age confidence

Release Notes

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

v2.42.0: Error Prone 2.42.0

New checks:

Changes:

  • The return type of ASTHelpers.asFlagSet has changed. The previous type was EnumSet<Flags.Flag>, where Flags.Flag is an enum in the javac class Flags. A recent JDK change has replaced that enum with a new top-level enum called FlagsEnum. It is not possible to change ASTHelpers.asFlagSet in a way that would be type-safe and compatible with the enums from JDKs both before and after the change. Instead, the method now returns ImmutableSet<String>, where the strings come from the toString() of the enum constants. That means they are "native", "abstract", etc.
  • Flag IO.print[ln]() in SystemOut.

Full changelog: google/error-prone@v2.41.0...v2.42.0

v2.41.0: Error Prone 2.41.0

New checks:

  • EffectivelyPrivate: Detect declarations that have public or protected modifiers, but are effectively private

Changes:

  • Skip BooleanLiteral findings if the target type is boxed (#​5134)

Full changelog: google/error-prone@v2.40.0...v2.41.0

v2.40.0: Error Prone 2.40.0

Changes:

Full changelog: google/error-prone@v2.39.0...v2.40.0

v2.39.0: Error Prone 2.39.0

Compare Source

Changes:

  • Temporarily downgrade to Guava 33.4.0 (#​5108)

Checks:

  • BooleanLiteral: Prefer true to Boolean.TRUE
  • ExpensiveLenientFormatString: Renamed from PreconditionsExpensiveString, detects unnecessary calls to String.format in the arguments of lenient formatting methods.
  • UnnecessaryQualifier: Detects @Qualifier or @BindingAnnotation annotations that have no effect, and can be removed

Issues: #​4996, #​5045

Full changelog: google/error-prone@v2.38.0...v2.39.0

v2.38.0: Error Prone 2.38.0

Compare Source

New checks:

Closed issues: #​4924, #​4897, #​4995

Full changelog: google/error-prone@v2.37.0...v2.38.0

v2.37.0: Error Prone 2.37.0

Compare Source

Changes:

  • The annotations that were previously in error_prone_type_annotations have been been merged into error_prone_annotations. error_prone_type_annotations is now deprecated, and will be removed in a future release.

New checks:

  • AssignmentExpression - The use of an assignment expression can be surprising and hard to read; consider factoring out the assignment to a separate statement.
  • IntFloatConversion - Detect calls to scalb that should be using the double overload instead
  • InvalidSnippet - Detects snippets which omit the : required for inline code.
  • JUnit4EmptyMethods - Detects empty JUnit4 @Before, @After, @BeforeClass, and @AfterClass methods.
  • MockIllegalThrows - Detects cases where Mockito is configured to throw checked exception types which are impossible.
  • NegativeBoolean - Prefer positive boolean names.
  • RuleNotRun - Detects TestRules not annotated with @Rule, that won't be run.
  • StringConcatToTextBlock - Replaces concatenated multiline strings with text blocks.
  • TimeInStaticInitializer - Detects accesses of the system time in static contexts.

Closed issues:

  • Propagate check flags in patch mode (#​4699)
  • Fixes a crash in ComputeIfAbsentAmbiguousReference (#​4736)
  • Show the field name in HidingField diagnostics (#​4775)
  • Add support for jakarta annotations to some checks (#​4782)
  • FloatingPointAssertionWithinEpsilonTest depends on default locale (#​4815)
  • @InlineMe patching of Strings.repeat produces broken code (#​4819)
  • Fix a crash in IdentifierName on unnamed (_) variables (#​4847)
  • Fix a crash in ArgumentParameterSwap (#​490)

Full changelog: google/error-prone@v2.36.0...v2.37.0

mojohaus/build-helper-maven-plugin (org.codehaus.mojo:build-helper-maven-plugin)

v3.6.1

Compare Source

📝 Documentation updates

👻 Maintenance

📦 Dependency updates

mojohaus/exec-maven-plugin (org.codehaus.mojo:exec-maven-plugin)

v3.5.1

Compare Source

🐛 Bug Fixes

📦 Dependency updates

👻 Maintenance

diffplug/spotless (com.diffplug.spotless:spotless-maven-plugin)

v2.45.0

Added
  • Support for gofmt (#​2001)
  • Support for formatting Java Docs for the Palantir formatter (#​2009)
google/truth (com.google.truth:truth)

v1.4.5: 1.4.5

  • Changed assertions like assertThat(nullMap).isEmpty() to fail with a useful failure message instead of throwing NullPointerException (and similarly for other "bogus" values, such as negative sizes). (da5d6e9)
  • Made Kotlin's isInstanceOf(Int::class.java) (and Java's isInstanceOf(int.class)) a valid way to check for Int/Integer instances. (974ef19)
  • Improved isWithin to pretty-print numbers in its failure messages. (de78553, 07318c2)
  • Improved some assertions that print class names to print simpler names (e.g., Integer instead of java.lang.Integer). (0ba72d6)
  • Changed ExpectFailure to never generate "value of" lines based on bytecode. This slightly simplifies writing new tests with ExpectFailure and prevents future behavior changes in some ExpectFailure tests that already exist. However, it may also require changes to other existing ExpectFailure tests to remove or change any assertions about the "value of" line. (3caa0e8)
  • Our Android minSdkVersion is now 23 (Marshmallow). This follows the minimum of Google's foundational Android libraries, and we expect it to have no practical impact on users. (c85c75c)
  • Changed our GWT/J2CL artifact to omit usages of @NullMarked. This was making all our types non-null in those environments, since we don't yet use @Nullable in the GWT/J2CL artifact. (6392d37)

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

@renovate-bot renovate-bot changed the title fix(deps): update dependency org.apache.maven.plugins:maven-clean-plugin to v3.4.1 fix(deps): update mvn-packages Feb 21, 2025
@renovate-bot renovate-bot force-pushed the renovate/mvn-packages branch 3 times, most recently from 3850b0f to 1df0d58 Compare February 25, 2025 19:04
@renovate-bot renovate-bot force-pushed the renovate/mvn-packages branch 3 times, most recently from 97d92d0 to 02a8a84 Compare March 25, 2025 19:26
@renovate-bot renovate-bot force-pushed the renovate/mvn-packages branch from 02a8a84 to 43fa4b2 Compare March 31, 2025 02:27
@renovate-bot renovate-bot force-pushed the renovate/mvn-packages branch 4 times, most recently from dfaf31f to 7f56b41 Compare April 14, 2025 20:12
@renovate-bot renovate-bot force-pushed the renovate/mvn-packages branch from 7f56b41 to f9d22e0 Compare April 18, 2025 19:04
@renovate-bot renovate-bot force-pushed the renovate/mvn-packages branch 17 times, most recently from dfd4b1e to 3b57853 Compare May 30, 2025 21:22
@renovate-bot renovate-bot force-pushed the renovate/mvn-packages branch 28 times, most recently from 8cfe43c to c94fe64 Compare June 7, 2025 21:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants