Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Bump the all-maven-dependencies group across 1 directory with 5 updates #71

Merged
merged 2 commits into from
Dec 2, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 2, 2024

Bumps the all-maven-dependencies group with 5 updates in the / directory:

Package From To
com.google.errorprone:error_prone_core 2.35.1 2.36.0
com.puppycrawl.tools:checkstyle 10.20.1 10.20.2
net.sourceforge.pmd:pmd-core 7.7.0 7.8.0
net.sourceforge.pmd:pmd-java 7.7.0 7.8.0
org.cyclonedx:cyclonedx-maven-plugin 2.9.0 2.9.1

Updates com.google.errorprone:error_prone_core from 2.35.1 to 2.36.0

Release notes

Sourced from com.google.errorprone:error_prone_core's releases.

Error Prone 2.36.0

Changes:

  • Add new matcher interfaces to ErrorProneScanner for AST nodes introduced after Java 11 (e5fd194fa21ef9a01e8d4c72489906247aad81c8)
  • Fix compatibility with latest JDK 24 EA builds (google/error-prone@d67bc15)
  • Check that --should-stop=ifError=FLOW is set when using the -Xplugin integration (e71db1f369a9367f6f2db34c4fbd006b6d6238fd)

New checks:

Closed issues: #4633, #4646

Commits
  • ab522c7 Release Error Prone 2.36.0
  • fc5aade Remove swathes of assume()s on the current runtime version.
  • b222ea8 Handle qualified enum elements in MissingCasesInEnumSwitch.
  • 332cbfa Support record destructuring in ArgumentSelectionDefectChecker.
  • 0db3360 UsafeLocaleUsage: update the proposed fix to use replace(char, char)
  • c816c8b StatementSwitchToExpressionSwitch - remove // fall out comments in switches
  • b5fa441 Consolidate javadoc plugin version
  • 2afd0cf Run StatementSwitchToExpressionSwitch_refactoring over EP.
  • 37895d3 Fix snapshot doc publishing after https://github.com/google/error-prone/commi...
  • c438756 StatementSwitchToExpressionSwitch: for "assignment switch" and "direct conver...
  • Additional commits viewable in compare view

Updates com.puppycrawl.tools:checkstyle from 10.20.1 to 10.20.2

Release notes

Sourced from com.puppycrawl.tools:checkstyle's releases.

checkstyle-10.20.2

Checkstyle 10.20.2 - https://checkstyle.org/releasenotes.html#Release_10.20.2

Bug fixes:

#15943 - ArrayIndexOutOfBoundsException on indentation check of try-with-resources #13061 - Solving parsing errors for missing description in block tags #14573 - JavadocType: False negative for unknown tag with no description #11584 - WriteTag reports violation with confusing message when there is no javadoc

Commits
  • fde6157 [maven-release-plugin] prepare release checkstyle-10.20.2
  • 6cb833a doc: release notes for 10.20.2
  • e89621e Issue #13213: Remove //ok comments from javadoctagcontinuationindentation
  • 5f5e87c dependency: bump pmd.version from 7.7.0 to 7.8.0
  • 8d791cf dependency: bump org.pitest:pitest-maven from 1.17.1 to 1.17.2
  • ade5c38 dependency: bump nl.jqno.equalsverifier:equalsverifier
  • c54f4ca Issue #13345: Enable examples tests for AnonInnerLengthCheck
  • 7e5c3c6 Issue #13345: Enable examples tests for RegexSinglelinejavaCheck
  • d961385 Issue #13345: Enable examples tests for RegexpMultilineCheck
  • 7868e65 Issue #13345: Enable examples tests for PackageDeclarationCheck
  • Additional commits viewable in compare view

Updates net.sourceforge.pmd:pmd-core from 7.7.0 to 7.8.0

Release notes

Sourced from net.sourceforge.pmd:pmd-core's releases.

PMD 7.8.0 (29-November-2024)

29-November-2024 - 7.8.0

The PMD team is pleased to announce PMD 7.8.0.

This is a minor release.

Table Of Contents

🚀 New and noteworthy

🌟 New and changed rules

New Rules

  • The new Apex rule QueueableWithoutFinalizer detects when the Queueable interface is used but a Finalizer is not attached. Without attaching a Finalizer, there is no way of designing error recovery actions should the Queueable action fail.

🐛 Fixed Issues

  • ant
    • #1860: [ant] Reflective access warnings on java > 9 and java < 17
  • apex
    • #5302: [apex] New Rule: Queueable Should Attach Finalizer
    • #5333: [apex] Token recognition errors for string containing unicode escape sequence
  • html
    • #5322: [html] CPD throws exception on when HTML file is missing closing tag
  • java
    • #5283: [java] AssertionError "this should be unreachable" with scala library
    • #5293: [java] Deadlock when executing PMD in multiple threads
    • #5324: [java] Issue with type inference of nested lambdas
    • #5329: [java] Type inference issue with unknown method ref in call chain
    • #5338: [java] Unresolved target type for lambdas make overload resolution fail
  • java-bestpractices
    • #4113: [java] JUnitTestsShouldIncludeAssert - false positive with SoftAssertionsExtension
    • #5083: [java] UnusedPrivateMethod false positive when method reference has no target type
    • #5097: [java] UnusedPrivateMethod FP with raw type missing from the classpath
    • #5318: [java] PreserveStackTraceRule: false-positive on Pattern Matching with instanceof
  • java-codestyle
    • #5214: [java] Wrong message for LambdaCanBeMethodReference with method of enclosing class

... (truncated)

Commits

Updates net.sourceforge.pmd:pmd-java from 7.7.0 to 7.8.0

Release notes

Sourced from net.sourceforge.pmd:pmd-java's releases.

PMD 7.8.0 (29-November-2024)

29-November-2024 - 7.8.0

The PMD team is pleased to announce PMD 7.8.0.

This is a minor release.

Table Of Contents

🚀 New and noteworthy

🌟 New and changed rules

New Rules

  • The new Apex rule QueueableWithoutFinalizer detects when the Queueable interface is used but a Finalizer is not attached. Without attaching a Finalizer, there is no way of designing error recovery actions should the Queueable action fail.

🐛 Fixed Issues

  • ant
    • #1860: [ant] Reflective access warnings on java > 9 and java < 17
  • apex
    • #5302: [apex] New Rule: Queueable Should Attach Finalizer
    • #5333: [apex] Token recognition errors for string containing unicode escape sequence
  • html
    • #5322: [html] CPD throws exception on when HTML file is missing closing tag
  • java
    • #5283: [java] AssertionError "this should be unreachable" with scala library
    • #5293: [java] Deadlock when executing PMD in multiple threads
    • #5324: [java] Issue with type inference of nested lambdas
    • #5329: [java] Type inference issue with unknown method ref in call chain
    • #5338: [java] Unresolved target type for lambdas make overload resolution fail
  • java-bestpractices
    • #4113: [java] JUnitTestsShouldIncludeAssert - false positive with SoftAssertionsExtension
    • #5083: [java] UnusedPrivateMethod false positive when method reference has no target type
    • #5097: [java] UnusedPrivateMethod FP with raw type missing from the classpath
    • #5318: [java] PreserveStackTraceRule: false-positive on Pattern Matching with instanceof
  • java-codestyle
    • #5214: [java] Wrong message for LambdaCanBeMethodReference with method of enclosing class

... (truncated)

Commits

Updates net.sourceforge.pmd:pmd-java from 7.7.0 to 7.8.0

Release notes

Sourced from net.sourceforge.pmd:pmd-java's releases.

PMD 7.8.0 (29-November-2024)

29-November-2024 - 7.8.0

The PMD team is pleased to announce PMD 7.8.0.

This is a minor release.

Table Of Contents

🚀 New and noteworthy

🌟 New and changed rules

New Rules

  • The new Apex rule QueueableWithoutFinalizer detects when the Queueable interface is used but a Finalizer is not attached. Without attaching a Finalizer, there is no way of designing error recovery actions should the Queueable action fail.

🐛 Fixed Issues

  • ant
    • #1860: [ant] Reflective access warnings on java > 9 and java < 17
  • apex
    • #5302: [apex] New Rule: Queueable Should Attach Finalizer
    • #5333: [apex] Token recognition errors for string containing unicode escape sequence
  • html
    • #5322: [html] CPD throws exception on when HTML file is missing closing tag
  • java
    • #5283: [java] AssertionError "this should be unreachable" with scala library
    • #5293: [java] Deadlock when executing PMD in multiple threads
    • #5324: [java] Issue with type inference of nested lambdas
    • #5329: [java] Type inference issue with unknown method ref in call chain
    • #5338: [java] Unresolved target type for lambdas make overload resolution fail
  • java-bestpractices
    • #4113: [java] JUnitTestsShouldIncludeAssert - false positive with SoftAssertionsExtension
    • #5083: [java] UnusedPrivateMethod false positive when method reference has no target type
    • #5097: [java] UnusedPrivateMethod FP with raw type missing from the classpath
    • #5318: [java] PreserveStackTraceRule: false-positive on Pattern Matching with instanceof
  • java-codestyle
    • #5214: [java] Wrong message for LambdaCanBeMethodReference with method of enclosing class

... (truncated)

Commits

Updates org.cyclonedx:cyclonedx-maven-plugin from 2.9.0 to 2.9.1

Release notes

Sourced from org.cyclonedx:cyclonedx-maven-plugin's releases.

2.9.1

🚀 New features and improvements

🐛 Bug Fixes

  • Fix incorrect component type in aggregated SBOM (Multi-module project) (#522) @​lonewalker0

📦 Dependency updates

🔧 Build

Commits
  • f5ac98a [maven-release-plugin] prepare release cyclonedx-maven-plugin-2.9.1
  • b8e2442 upgrade github-pages-deploy-action
  • 2c95cf2 Bump org.apache.maven.plugins:maven-project-info-reports-plugin
  • f988a79 Bump actions/checkout from 4.2.1 to 4.2.2
  • db2a35b Make log output more easy to understand by sorting dependencies
  • 6429094 simplify code
  • 4450f3b Fix incorrect component type in aggregated SBOM
  • c02b50f share isBlank(String)
  • 0bef0d0 fixes CycloneDX/cyclonedx-maven-plugin#382
  • cf7d300 Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.4 to 3.2.7
  • Additional commits viewable in compare view

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 commands and options

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 <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

… with 5 updates

Bumps the all-maven-dependencies group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [com.google.errorprone:error_prone_core](https://github.com/google/error-prone) | `2.35.1` | `2.36.0` |
| [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) | `10.20.1` | `10.20.2` |
| [net.sourceforge.pmd:pmd-core](https://github.com/pmd/pmd) | `7.7.0` | `7.8.0` |
| [net.sourceforge.pmd:pmd-java](https://github.com/pmd/pmd) | `7.7.0` | `7.8.0` |
| [org.cyclonedx:cyclonedx-maven-plugin](https://github.com/CycloneDX/cyclonedx-maven-plugin) | `2.9.0` | `2.9.1` |



Updates `com.google.errorprone:error_prone_core` from 2.35.1 to 2.36.0
- [Release notes](https://github.com/google/error-prone/releases)
- [Commits](google/error-prone@v2.35.1...v2.36.0)

Updates `com.puppycrawl.tools:checkstyle` from 10.20.1 to 10.20.2
- [Release notes](https://github.com/checkstyle/checkstyle/releases)
- [Commits](checkstyle/checkstyle@checkstyle-10.20.1...checkstyle-10.20.2)

Updates `net.sourceforge.pmd:pmd-core` from 7.7.0 to 7.8.0
- [Release notes](https://github.com/pmd/pmd/releases)
- [Changelog](https://github.com/pmd/pmd/blob/main/docs/render_release_notes.rb)
- [Commits](pmd/pmd@pmd_releases/7.7.0...pmd_releases/7.8.0)

Updates `net.sourceforge.pmd:pmd-java` from 7.7.0 to 7.8.0
- [Release notes](https://github.com/pmd/pmd/releases)
- [Changelog](https://github.com/pmd/pmd/blob/main/docs/render_release_notes.rb)
- [Commits](pmd/pmd@pmd_releases/7.7.0...pmd_releases/7.8.0)

Updates `net.sourceforge.pmd:pmd-java` from 7.7.0 to 7.8.0
- [Release notes](https://github.com/pmd/pmd/releases)
- [Changelog](https://github.com/pmd/pmd/blob/main/docs/render_release_notes.rb)
- [Commits](pmd/pmd@pmd_releases/7.7.0...pmd_releases/7.8.0)

Updates `org.cyclonedx:cyclonedx-maven-plugin` from 2.9.0 to 2.9.1
- [Release notes](https://github.com/CycloneDX/cyclonedx-maven-plugin/releases)
- [Commits](CycloneDX/cyclonedx-maven-plugin@cyclonedx-maven-plugin-2.9.0...cyclonedx-maven-plugin-2.9.1)

---
updated-dependencies:
- dependency-name: com.google.errorprone:error_prone_core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
- dependency-name: com.puppycrawl.tools:checkstyle
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-maven-dependencies
- dependency-name: net.sourceforge.pmd:pmd-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
- dependency-name: net.sourceforge.pmd:pmd-java
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
- dependency-name: net.sourceforge.pmd:pmd-java
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
- dependency-name: org.cyclonedx:cyclonedx-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-maven-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Dec 2, 2024
@jorsol jorsol merged commit 0f736bb into main Dec 2, 2024
5 checks passed
@jorsol jorsol deleted the dependabot/maven/all-maven-dependencies-0740ce0f53 branch December 2, 2024 10:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant