Skip to content

Update all patch and minor versions#8440

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-patch-and-minor-versions
Open

Update all patch and minor versions#8440
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-patch-and-minor-versions

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jun 2, 2026

This PR contains the following updates:

Package Type Update Change Age Confidence
aqua:grafana/flint patch 0.22.40.22.5 age confidence
com.uber.nullaway:nullaway dependencies patch 0.13.40.13.5 age confidence
com.google.api.grpc:proto-google-common-protos dependencies minor 2.71.02.72.0 age confidence
org.jetbrains.kotlin:kotlin-gradle-plugin (source) dependencies minor 2.3.212.4.0 age confidence
net.ltgt.gradle:gradle-nullaway-plugin dependencies minor 3.0.03.1.0 age confidence
io.netty:netty-bom (source) dependencies patch 4.2.14.Final4.2.15.Final age confidence
checkstyle (source) dependencies minor 13.4.213.5.0 age confidence
biz.aQute.bnd:biz.aQute.bnd.gradle (source) dependencies minor 7.2.37.3.0 age confidence
com.fasterxml.jackson:jackson-bom dependencies minor 2.21.32.22.0 age confidence
com.linecorp.armeria:armeria-junit5 (source) dependencies patch 1.39.01.39.1 age confidence
com.linecorp.armeria:armeria-grpc-protocol (source) dependencies patch 1.39.01.39.1 age confidence
com.linecorp.armeria:armeria-grpc (source) dependencies patch 1.39.01.39.1 age confidence
com.linecorp.armeria:armeria (source) dependencies patch 1.39.01.39.1 age confidence

Release Notes

grafana/flint (aqua:grafana/flint)

v0.22.5

Compare Source

Fixed
  • trigger full lint when node runtime updates (#​328)
  • normalize renovate-deps version and manager shapes (#​326)
Other
  • clarify Flint check model (#​317)
  • (deps) update taiki-e/install-action action to v2.79.15 (#​329)
  • (deps) update taiki-e/install-action action to v2.79.14 (#​327)
  • (deps) update dependency mise to v2026.5.16 (#​324)
  • (deps) lock file maintenance (#​325)
  • (deps) update taiki-e/install-action action to v2.79.11 (#​322)
  • (deps) update dependency rust to v1.96.0 (#​323)
  • (deps) update taiki-e/install-action action to v2.79.10 (#​321)
  • (deps) update taiki-e/install-action action to v2.79.9 (#​319)
  • (deps) update taiki-e/install-action action to v2.79.8 (#​316)
uber/NullAway (com.uber.nullaway:nullaway)

v0.13.5

Includes various bug fixes, particularly in JSpecify mode. Also, the nullaway-annotations
artifact now includes a @Contract annotation. NullAway also now has a built-in handler
to reason about field initialization in classes managed by Jakarta Persistence.

Work has begun on support for wildcards in JSpecify mode. Currently, this support is off
by default, guarded by the configuration flag HandleWildcardGenerics. The support still
has multiple known bugs, and we do not yet recommend enabling it.

  • Initial subtype checking for wildcards (#​1520)
  • Handle subtype checking for wildcard super bounds (#​1547)
  • Handle most remaining wildcard subtyping / containment cases (#​1548)
  • Test case for #​1528 (#​1556)
  • Initial inference for wildcards (#​1549)
  • Fix wildcard inference bug with method references (#​1553)
  • Fix nullability for return and parameter wildcards (#​1558)
  • Test case for trick to assert chain of accesses is non-null (#​1566)
  • Improve inference failure error message (#​1567)
  • Adjust more TreePaths to have correct leaf before calling getTreeType (#​1570)
  • Add Contract annotation to nullaway-annotations by @​codingkiddo (#​1569)
  • Run inference for generic method calls nested inside receivers (#​1571)
  • Refactor hasAnyAnnotationMatching method (#​1583)
  • Improve handling of var-declared local variables (#​1573)
  • Compensate for more annotations inserted by javac (#​1574)
  • Enable test for issue 1500 and add comment (#​1560)
  • Use ground target types when handling lambdas and method refs passed to generic methods (#​1575)
  • Fix for unbounded wildcard passed to @NullUnmarked type variable (#​1577)
  • Detect and warn on annotations directly on wildcard types (#​1579)
  • Enable HandleWildcardGenerics flag when building NullAway (#​1586)
  • Report error when @​Initializer is used on a constructor by @​Vinu2111 (#​1546)
  • Add a handler for Jakarta Persistence to reason about field initialization (#​1584)
  • Revert "Report error when @​Initializer is used on a constructor (#​1546)" (#​1588)
  • Maintenance
    • Use Jacoco 0.8.15 snapshot (#​1550)
    • Update to Gradle 9.5.0 (#​1554)
    • Test with latest Error Prone snapshot on CI (#​1555)
    • Add Spring Boot as an integration test (#​1557)
    • Enable generic bytecode tests on JDK 17 (#​1561)
    • Update spotless and guava-latest deps, removed unused semver4j (#​1562)
    • Use text blocks in more tests (#​1563)
    • Use text blocks for addInputLines and addOutputLines calls (#​1564)
    • Use Temurin JDK 17 always in CI (#​1565)
    • Tell agents not to run multiple Gradle builds in parallel (#​1582)
    • Update Codecov action to v6 (#​1587)
JetBrains/kotlin (org.jetbrains.kotlin:kotlin-gradle-plugin)

v2.4.0

tbroyer/gradle-nullaway-plugin (net.ltgt.gradle:gradle-nullaway-plugin)

v3.1.0

Add support for -XepOpt:NullAway:HandleWildcardGenerics (new in NullAway 0.13.5)

checkstyle/checkstyle (checkstyle)

v13.5.0

Compare Source

Checkstyle 13.5.0 - https://checkstyle.org/releasenotes.html#Release_13.5.0

New:

#​19496 - AvoidStarImport: new property maxAllowedStarImports to allow atmost one star import in a file.
#​14782 - LITERAL_DEFAULT token support in RightCurlyCheck.
#​15484 - New Check UnusedTryResourceShouldBeUnnamed.

Bug fixes:

#​17697 - Google style: Disallow comments enclosed in boxes.
#​19641 - Add checks for OpenJDK Style §3.10 - Variable Declarations.
#​19640 - Add checks for OpenJDK Style §4.1 - Package Names.
#​18227 - Extend TextBlockGoogleStyleFormatting to check indentation of each line in the blocks.
#​19770 - JavadocTypeCheck incorrectly matches record component @param tags using prefix instead of exact match.
#​17052 - Add support for flexible constructor bodies (JEP 513) targeted for JDK25.
#​17464 - RequireThis false positive inside annotation definition.
#​19623 - Add checks for OpenJDK Style §3.3 - Import statements.
#​17203 - PatternVariableAssignment check false negative when pattern variable extends beyond the statement of introduction.
#​19716 - False Negative: SimplifyBooleanExpression does not report with paranthesized boolean literals in ternary operators.
#​19617 - Add checks for OpenJDK Style §2 - Java Source Files.
#​17253 - Google-style: Illegal to break the line before or after the lambda arrow.
#​19149 - update MissingJavadocTypeCheck to use AST of javadoc.
#​2629 - IndentationCheck: incorrect validation for class definition.
#​5685 - Indentation: false positive for try child on the same line.
#​11822 - RequireThisCheck giving multiple violation for classes nested in lambdas.
#​19622 - Add checks for OpenJDK Style §3.2 - Package declaration.

Other Changes:
Confused supression of Indentation in google_checks.
Remove chapter numbers from Doc Comments Coverage Page.
Fix xdocs Examples AST Consistency Test (Reduce suppressions list).
Move violation comments out of Javadoc for all input files.
`Regexp` check for unnecessary `// ok` comments is configured under `TreeWalker`.
google_style.xml: support multiple config links per rule entry in XdocsPagesTest.
missing description of blue-tick checks at google style coverage page.
False Negative: FinalLocalVariableCheck does not report for variables assigned in adjacent catches.
Cached page of Documentation style guide should be open in mobile browser in easy to read rendering.
Documentation Comments Style Guide - Images in HTML Destination.
Documentation Comments Style Guide - `@`author.
AbbreviationAsWordInName doc should have horizontal line after above example description.
Remove Chapter number from openjdk_checks.xml file.
resolve Qodana inspections in Javadoc and test utilities.
NoClassDefFound Exception during compilation on jdk25.
review suppresions of org.openrewrite.staticanalysis.CodeCleanup.
Website warnings in maven output: Anchor name used more than once.
Add Oracle Doc Comments Style Guide coverage infrastructure.
Improve design of PropertiesMacros.
inner lambdas right curly idented too much on left to much same ident as wrapper statement.
Move violation comments above of annotated methods.
Violate all inlined violations that are placed in between method singature and annoation or javadoc.
Resolve CheckerFramework violations.
Trigger linkcheck by Github comment.
Organize openrewrite staticanalysis composite recipes by groups as it is done on openrewrite website.
Test extension: Variables `&` Patterns Syntax: Indentation.
Error in bash method does not stop execution of whole command.
Parsing problem detected by CI at jdk25/test/jdk/jdk/jfr/event/tracing/TestConstructors.java.
Remove UnmodifiableCollectionUtil and use pitest funmodifiablecollection feature.
bndtools/bnd (biz.aQute.bnd:biz.aQute.bnd.gradle)

v7.3.0: Bnd/Bndtools 7.3.0

Compare Source

See Release Notes


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 07:59 AM, only on Tuesday (* 0-7 * * 2)
  • 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 renovate Bot requested a review from a team as a code owner June 2, 2026 00:30
@renovate renovate Bot force-pushed the renovate/all-patch-and-minor-versions branch 2 times, most recently from 13353a1 to 1b268e5 Compare June 2, 2026 17:47
// by FOSSA for containing EPL-licensed)

"com.fasterxml.jackson:jackson-bom:2.21.3",
"com.fasterxml.jackson:jackson-bom:2.22.0",
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Something weird is going on with this release:

🤷 better let the dust settle

@renovate renovate Bot force-pushed the renovate/all-patch-and-minor-versions branch 3 times, most recently from da59ed1 to e33c92f Compare June 4, 2026 20:50
@renovate renovate Bot force-pushed the renovate/all-patch-and-minor-versions branch from e33c92f to bdff49d Compare June 5, 2026 12:28
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.

1 participant