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

fix(deps): bump the prod-deps group across 1 directory with 9 updates #21

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 6, 2024

Bumps the prod-deps group with 9 updates in the / directory:

Package From To
org.apache.maven:maven-plugin-api 3.9.6 3.9.9
org.apache.maven.plugin-tools:maven-plugin-annotations 3.11.0 3.15.0
com.fasterxml.jackson.core:jackson-databind 2.17.0 2.18.0
org.folio:folio-permission-utils 1.5.5 1.5.7
org.projectlombok:lombok 1.18.30 1.18.34
com.puppycrawl.tools:checkstyle 10.14.2 10.18.2
org.apache.maven.plugins:maven-plugin-plugin 3.14.0 3.15.0
org.apache.maven.plugins:maven-surefire-plugin 3.2.5 3.5.1
org.apache.maven.plugins:maven-checkstyle-plugin 3.3.1 3.5.0

Updates org.apache.maven:maven-plugin-api from 3.9.6 to 3.9.9

Release notes

Sourced from org.apache.maven:maven-plugin-api's releases.

3.9.9

Release Notes - Maven - Version 3.9.9

What's Changed

... (truncated)

Commits
  • 8e8579a [maven-release-plugin] prepare release maven-3.9.9
  • 7185b0a [MNG-8165] Get rid of bashism creeped in (#1653)
  • ba05e6a [maven-release-plugin] prepare for next development iteration
  • 476642f [maven-release-plugin] prepare release maven-3.9.9
  • 274f1e3 [MNG-8165] Align mvn.sh script with mvn.cmd (#1647)
  • 1a787b0 [MNG-8188] Profile properties are not interpolated (#1634)
  • ecd577b [MNG-8177] Add contextual info for model warnings (#1633)
  • 42fc90e [MNG-8206] Remove bad plugin.xml in maven-compat (#1646)
  • 38a128f [MNG-8180] Back out from failing the build (#1642)
  • f2135c1 [MNG-8180] Handle NPE due non-existent tags (#1641)
  • Additional commits viewable in compare view

Updates org.apache.maven.plugin-tools:maven-plugin-annotations from 3.11.0 to 3.15.0

Release notes

Sourced from org.apache.maven.plugin-tools:maven-plugin-annotations's releases.

3.13.1

Release Notes - Maven Plugin Tools - Version 3.13.1

Task

  • [MPLUGIN-526] - Clean up dependencies reported by dependencies:analyze

3.13.0

Release Notes - Maven Plugin Tools - Version 3.13.0

Bug

  • [MPLUGIN-517] - GoalRenderer renderParameterDetails() renders in wrong order
  • [MPLUGIN-521] - Nested types not properly extracted cause exception while generating Javadoc URLs

Improvement

Dependency upgrade

  • [MPLUGIN-516] - Upgrade asmVersion from 9.6 to 9.7
  • [MPLUGIN-519] - Update to Parent POM 42, prerequisite 3.6.3

3.12.0

Release Notes - Maven Plugin Tools - Version 3.12.0

Commits
  • 8e22d5a [maven-release-plugin] prepare release maven-plugin-tools-3.15.0
  • 6635114 [MPLUGIN-501] Upgrade to Doxia 2.0.0 Milestone Stack
  • 1520654 [MPLUGIN-528] Tone done report plugin console output
  • 810a5bd Bump org.apache.maven:maven-parent from 42 to 43
  • e4c3aa5 Bump org.hamcrest:hamcrest from 2.2 to 3.0
  • 6ba8235 [MPLUGIN-530] Deprecate o.a.m.plugins.annotations.Component
  • f1acf76 [maven-release-plugin] prepare for next development iteration
  • edb661d [maven-release-plugin] prepare release maven-plugin-tools-3.14.0
  • c208172 Directory, not folder
  • 117f61a [MPLUGIN-529] Add new report goal 'report-no-fork' which will not invoke proc...
  • Additional commits viewable in compare view

Updates com.fasterxml.jackson.core:jackson-databind from 2.17.0 to 2.18.0

Commits

Updates org.folio:folio-permission-utils from 1.5.5 to 1.5.7

Release notes

Sourced from org.folio:folio-permission-utils's releases.

v1.5.7

What's Changed

... (truncated)

Commits
  • 119fa77 [maven-release-plugin] prepare release v1.5.7
  • ccd93ed fix(deps): bump the prod-deps group with 7 updates (#154)
  • 2f864b7 fix(deps): bump the prod-deps group with 5 updates (#153)
  • ab46807 APPPOCTOOL-28 Externalize JWT Parsing to a dedicated library (#152)
  • ca2d54f Merge pull request #150 from folio-org/APPPOCTOOL-34-testcontainers
  • 7130f06 APPPOCTOOL-34: Cleanup testcontainers dependencies
  • f0e8770 Merge pull request #148 from folio-org/APPPOCTOOL-32-resteasy-multipart-provi...
  • 5a49411 Merge branch 'master' into APPPOCTOOL-32-resteasy-multipart-provider-6.2.10
  • 3f41185 fix(deps): bump the prod-deps group with 2 updates (#149)
  • bddcf7f APPPOCTOOL-27 Remove tenant matching validation (#147)
  • Additional commits viewable in compare view

Updates org.projectlombok:lombok from 1.18.30 to 1.18.34

Changelog

Sourced from org.projectlombok:lombok's changelog.

v1.18.34 (June 28th, 2024)

  • PLATFORM: Added support for Eclipse 2024-06; you'd get some NoSuchMethodError traces in your logs if using @Builder or @Singular prior to this fix. [Issue #3638](projectlombok/lombok#3638).
  • IMPROBABLE BREAKING CHANGE: Lombok now adds @lombok.Generated by default to methods and types it generates. This may result in accidentally increasing your test coverage percentage. [Issue #3667](projectlombok/lombok#3667).
  • IMPROBABLE BREAKING CHANGE: When lombok.config contains lombok.onX.flagUsage = WARNING, from now on warnings will actually be generated if onX is used.[Issue #2848](projectlombok/lombok#2848)
  • BUGFIX: When @SuperBuilder was used on a type with an generic array type, it would error wrong number of type arguments. [Issue #3694](projectlombok/lombok#3694).
  • FEATURE: Lombok generates javadoc for you for most of the methods it adds; with this release, javadoc is also added to generated constructors. [Issue #933](projectlombok/lombok#933).

v1.18.32 (March 20th, 2024)

  • PLATFORM: Initial JDK22 support added.
  • PLAFTORM Added support for Eclipse 2024-03. [Issue #3620](projectlombok/lombok#3620).
  • PLATFORM: Added support for recent versions of eclipse (released Q4 2023 or later or so) which would cause failures in the eclipse logs such as java.lang.NoSuchMethodError: 'java.lang.StringBuffer org.eclipse.jdt…. [Issue #3564](projectlombok/lombok#3564).
  • FEATURE: @Locked has been introduced. Like @Synchronized but with java.util.concurrent.locks locks instead of the synchronized primitive. Thanks, Pim van der Loos for the PR! [Issue #3506](projectlombok/lombok#3506).
  • NECROMANCY: Inlining a generated getter in eclipse would result in eclipse incorrectly replacing calls with @Getter instead of the actual field's name. [Issue #562](projectlombok/lombok#562). This issue is almost old enough to drink. Points for dedication go to Rawi for fixing this one.
  • BUGFIX: When @SuperBuilder was used on a type with an annotated generic type, it would error wrong number of type arguments. [Issue #3592](projectlombok/lombok#3592).
  • BUGFIX: It was possible to create an infinite build loop using @ExtensionMethod. [Issue #3225](projectlombok/lombok#3225).
  • BUGFIX: Using @Getter(lazy=true) would fail if the expression contained a variable called value. [Issue #2917](projectlombok/lombok#2917).
  • BUGFIX: Many lombok features wouldn't work properly on records contained within an outer type unless you explicitly marked it static. [Issue #3497](projectlombok/lombok#3497) [Issue #3559](projectlombok/lombok#3559).
  • BUGFIX: Eclipse projects using the com.pro-crafting.tools:jasperreports-plugin will now compile.
  • BUGFIX: @FieldNameConstants now works when generated fields are involved. [Issue #3529](projectlombok/lombok#3529).
  • IMPROBABLE BREAKING CHANGE: For JSpecify, the package name changed from org.jspecify.nullness to org.jspecify.annotations, which might lead to a different null analysis. [Issue #3608](projectlombok/lombok#3608).
Commits
  • fbbe7f0 [release] pre-release version bump
  • 3cd41e8 [trivial] some test cases were failing (due to the constructor-javadoc update...
  • 1384244 Merge pull request #3698 from stevebosman/fix-sneaky-throws-doc
  • d90ec73 [trivial] [style]
  • 3b68e39 Merge pull request #3697 from janrieke/superbuilder-fix-array-type-param
  • fdafa9a Merge pull request #3690 from Rawi01/eclipse_2024_06
  • 78c1f47 Merge pull request #3689 from Rawi01/nested-javadoc
  • da815a6 Merge pull request #3674 from Rawi01/standardexception-fields
  • c61a404 [trivial]
  • 6cf6caf Merge pull request #3673 from Rawi01/eclipse_field_generated
  • Additional commits viewable in compare view

Updates com.puppycrawl.tools:checkstyle from 10.14.2 to 10.18.2

Release notes

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

checkstyle-10.18.2

Checkstyle 10.18.2 - https://checkstyle.org/releasenotes.html#Release_10.18.2

Bug fixes:

#15690 - JavadocParagraph: allowNewlineParagraph should allow '\n' after P tag and content start from new line #15642 - google_checks: Section 4.1.3 should not be covered by EmptyBlock and EmptyCatchBlock #15609 - google_checks SuppressionXpathSingleFilter for 'MethodName' check is too lenient in several ways #15434 - MissingJavadocMethod does not give warning for missing javadoc for protected methods in google_checks.xml #13553 - False positive in FallThroughCheck on last case #15233 - Suppression for long identifiers for 4.4 Column Limit: 100 rule of google java style guide #15414 - Google style: Javadoc is optional for "simple, obvious" members

... (truncated)

Commits
  • 3651c45 [maven-release-plugin] prepare release checkstyle-10.18.2
  • ca569e6 doc: release notes for 10.18.2
  • 4eec526 Issue #6207: add class data abstraction coupling xpath regression tests
  • fe4fde1 infra: fix link in exclude for jdepend-maven-plugin to fix run of maven-linkc...
  • 50cdde7 Issue #15456: Specify violation message for Nested Block (#11)
  • b1d923e Issue #15690: fix allowNewlineParagraph at JavadocParagraphCheck
  • b41666f dependency: bump org.apache.maven.plugins:maven-gpg-plugin
  • 4c378dc supplemental: added violation messages in JavadocParagraph's input files
  • 82bc795 dependency: bump junit.version from 5.11.0 to 5.11.1
  • 4704b0f Issue #6207: Add XPath IT Regression Test for ModifiedControlVariable
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-plugin-plugin from 3.14.0 to 3.15.0

Commits
  • 8e22d5a [maven-release-plugin] prepare release maven-plugin-tools-3.15.0
  • 6635114 [MPLUGIN-501] Upgrade to Doxia 2.0.0 Milestone Stack
  • 1520654 [MPLUGIN-528] Tone done report plugin console output
  • 810a5bd Bump org.apache.maven:maven-parent from 42 to 43
  • e4c3aa5 Bump org.hamcrest:hamcrest from 2.2 to 3.0
  • 6ba8235 [MPLUGIN-530] Deprecate o.a.m.plugins.annotations.Component
  • f1acf76 [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Updates org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.5.1

Release notes

Sourced from org.apache.maven.plugins:maven-surefire-plugin's releases.

3.5.0

What's Changed

Full Changelog: apache/maven-surefire@surefire-3.4.0...surefire-3.5.0

3.4.0

... (truncated)

Commits
  • a69b0f8 [maven-release-plugin] prepare release surefire-3.5.1
  • ccc54d0 [SUREFIRE-2273] Bump org.hamcrest:hamcrest from 2.2 to 3.0 (#784)
  • ab77c35 [SUREFIRE-2272] Bump org.codehaus.plexus:plexus-java from 1.2.0 to 1.3.0 - JD...
  • 93317ff [SUREFIRE-2269] Allow fail during clean in surefire-its
  • d7f4dbb [SUREFIRE-2270] Use JUnit5 in surefire-shadefire
  • 7a98850 Drop comment from jira integration
  • b2aa8a6 [SUREFIRE-2267] Packages for commons-codec should be relocated in surefire-sh...
  • a928255 [SUREFIRE-1737] Fix disable in statelessTestsetReporter
  • 4584ebb [SUREFIRE-2226] Upgrade to Maven Verifier 2.0.0-M1
  • 5aa3515 [SUREFIRE-2266] Execute ITs in parallel
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-checkstyle-plugin from 3.3.1 to 3.5.0

Commits
  • 868abc9 [maven-release-plugin] prepare release maven-checkstyle-plugin-3.5.0
  • 9043f8a [MCHECKSTYLE-446] Dynamically calculate xrefLocation/xrefTestLocation
  • 0e7bd00 [MCHECKSTYLE-445] Upgrade to Doxia 2.0.0 Milestone Stack
  • b92666d Bump org.apache.maven.plugins:maven-plugins from 42 to 43
  • 3699112 use new Reproducible Central badge endpoint
  • d1076a3 Bump org.apache.commons:commons-lang3 from 3.15.0 to 3.16.0
  • b5a4300 Bump org.apache.commons:commons-lang3 from 3.14.0 to 3.15.0
  • ccb9d9f Directory, not folder
  • fbe29ae Remove outdated invoker conditions
  • 67aeb01 Bump org.codehaus.mojo:animal-sniffer-maven-plugin from 1.23 to 1.24
  • Additional commits viewable in compare view

You can trigger a rebase of this PR 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

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps the prod-deps group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [org.apache.maven:maven-plugin-api](https://github.com/apache/maven) | `3.9.6` | `3.9.9` |
| [org.apache.maven.plugin-tools:maven-plugin-annotations](https://github.com/apache/maven-plugin-tools) | `3.11.0` | `3.15.0` |
| [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) | `2.17.0` | `2.18.0` |
| [org.folio:folio-permission-utils](https://github.com/folio-org/applications-poc-tools) | `1.5.5` | `1.5.7` |
| [org.projectlombok:lombok](https://github.com/projectlombok/lombok) | `1.18.30` | `1.18.34` |
| [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) | `10.14.2` | `10.18.2` |
| [org.apache.maven.plugins:maven-plugin-plugin](https://github.com/apache/maven-plugin-tools) | `3.14.0` | `3.15.0` |
| [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) | `3.2.5` | `3.5.1` |
| [org.apache.maven.plugins:maven-checkstyle-plugin](https://github.com/apache/maven-checkstyle-plugin) | `3.3.1` | `3.5.0` |



Updates `org.apache.maven:maven-plugin-api` from 3.9.6 to 3.9.9
- [Release notes](https://github.com/apache/maven/releases)
- [Commits](apache/maven@maven-3.9.6...maven-3.9.9)

Updates `org.apache.maven.plugin-tools:maven-plugin-annotations` from 3.11.0 to 3.15.0
- [Release notes](https://github.com/apache/maven-plugin-tools/releases)
- [Commits](apache/maven-plugin-tools@maven-plugin-tools-3.11.0...maven-plugin-tools-3.15.0)

Updates `com.fasterxml.jackson.core:jackson-databind` from 2.17.0 to 2.18.0
- [Commits](https://github.com/FasterXML/jackson/commits)

Updates `org.folio:folio-permission-utils` from 1.5.5 to 1.5.7
- [Release notes](https://github.com/folio-org/applications-poc-tools/releases)
- [Commits](folio-org/applications-poc-tools@v1.5.5...v1.5.7)

Updates `org.projectlombok:lombok` from 1.18.30 to 1.18.34
- [Changelog](https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown)
- [Commits](projectlombok/lombok@v1.18.30...v1.18.34)

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

Updates `org.apache.maven.plugins:maven-plugin-plugin` from 3.14.0 to 3.15.0
- [Release notes](https://github.com/apache/maven-plugin-tools/releases)
- [Commits](apache/maven-plugin-tools@maven-plugin-tools-3.14.0...maven-plugin-tools-3.15.0)

Updates `org.apache.maven.plugins:maven-surefire-plugin` from 3.2.5 to 3.5.1
- [Release notes](https://github.com/apache/maven-surefire/releases)
- [Commits](apache/maven-surefire@surefire-3.2.5...surefire-3.5.1)

Updates `org.apache.maven.plugins:maven-checkstyle-plugin` from 3.3.1 to 3.5.0
- [Commits](apache/maven-checkstyle-plugin@maven-checkstyle-plugin-3.3.1...maven-checkstyle-plugin-3.5.0)

---
updated-dependencies:
- dependency-name: org.apache.maven:maven-plugin-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-deps
- dependency-name: org.apache.maven.plugin-tools:maven-plugin-annotations
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: com.fasterxml.jackson.core:jackson-databind
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.folio:folio-permission-utils
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-deps
- dependency-name: org.projectlombok:lombok
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-deps
- dependency-name: com.puppycrawl.tools:checkstyle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.maven.plugins:maven-plugin-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.maven.plugins:maven-surefire-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.maven.plugins:maven-checkstyle-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner October 6, 2024 15:31
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 6, 2024
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant