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

Bump the dependency-updates group with 14 updates #280

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Apr 29, 2024

Bumps the dependency-updates group with 14 updates:

Package From To
io.airlift:airbase 154 155
com.google.errorprone:error_prone_annotations 2.26.1 2.27.0
com.google.errorprone:error_prone_core 2.26.1 2.27.0
io.airlift:jmx-http-rpc 245 246
io.airlift:json 245 246
io.airlift:bootstrap 245 246
io.airlift:configuration 245 246
io.airlift:log 245 246
io.airlift:concurrent 245 246
io.airlift:log-manager 245 246
net.bytebuddy:byte-buddy 1.14.13 1.14.14
org.apache.maven.plugins:maven-shade-plugin 3.5.2 3.5.3
ca.vanzyl.provisio.maven.plugins:provisio-maven-plugin 1.0.23 1.0.24
org.apache.maven.plugins:maven-deploy-plugin 3.1.1 3.1.2

Updates io.airlift:airbase from 154 to 155

Changelog

Sourced from io.airlift:airbase's changelog.

Airbase 155

  • Checkstyle updates:
    • Require exactly one space between array type and array initializer.
    • Allow unnamed variable names
  • Extract all plugins and dependencies versions to properties
  • Make build reproducible
  • Plugin updates:
    • spotbugs-maven-plugin 4.8.4.0 (from 4.8.3.1)
    • git-commit-id-maven-plugin 8.0.2 (from 8.0.1)
    • maven-gpg-plugin 3.2.4 (from 3.2.1)
    • maven-jar-plugin 3.4.1 (from 3.3.0)
    • maven-pmd-plugin 3.22.0 (from 3.21.2)
    • maven-scm-plugin 2.1.0 (from 2.0.1)
    • maven-shade-plugin 3.5.3 (from 3.5.2)
    • maven-source-plugin 3.3.1 (from 3.3.0)
    • maven-jacoco-plugin 0.8.12 (from 0.8.11)
  • Dependency updates:
    • logback 1.5.6 (from 1.5.3)
    • spotbugs-annotations 4.8.4 (from 4.8.3)
    • asm 9.7 (from 9.6)
    • jakarta.annotation-api 3.0.0 (from 3.2.1)

Airbase 154

  • Fix javadoc building when air.compiler.enable-preview is set

Airbase 153

  • Dependency updates:
    • OpenTelemetry 1.36.0 (from 1.35.0)
    • Jackson 2.17.0 (from 2.16.1)
    • error_prone_annotations 2.26.1 (2.25.0)
    • guava 33.1.0-jre (from 33.0.0-jre)
    • OpenTelemetry instrumentation 2.2.0 (from 2.1.0)
  • Plugin updates:
    • sortpom-maven-plugin 3.4.1 (from 3.4.0)
    • git-commit-id-maven-plugin 8.0.1 (from 8.0.0)
    • maven-assembly-plugin 3.7.1 (from 3.6.0)
    • maven-gpg-plugin 3.2.1 (from 3.1.0)
    • extra-enforcer-rules 1.8.0 (from 1.7.0)
    • maven-compiler-plugin 3.13.0 (3.12.1)

Airbase 152

  • Dependency downgrades:
    • modernizer-maven-annotations 2.7.0 (from 2.8.0)
  • Dependency updates:
    • jakarta.servlet-api 6.0.0 (from 5.0.2)
    • logback 1.5.3 (from 1.5.1)
    • kotlin 1.9.23 (from 1.9.22)
    • jakarta.xml.bind-api 4.0.2 (from 4.0.1)
    • ASM 9.6 (from 9.5)
  • Plugin updates:

... (truncated)

Commits

Updates com.google.errorprone:error_prone_annotations from 2.26.1 to 2.27.0

Release notes

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

Error Prone 2.27.0

New checks:

  • ClassInitializationDeadlock detects class initializers that reference subtypes of the current class, which can result in deadlocks.
  • MockitoDoSetup suggests using when/thenReturn over doReturn/when for additional type safety.
  • VoidUsed suggests using a literal null instead of referring to a Void-typed variable.

Modified checks:

Closed issues: #4291. #4308, #4343, #4320

Full Changelog: google/error-prone@v2.26.1...v2.27.0

Commits
  • ebe0a01 Release Error Prone 2.27.0
  • fd9b826 Remove a very literal change-detector test, and move the comment to the produ...
  • f289d9e VoidUsed: flag Void variables being used, where they can simply be repl...
  • 3ee6f41 Fix for a crash in RedundantSetterCall.
  • 92c106d Encourage when/thenReturn over doReturn/when.
  • 07c1a7c Stop mentioning @Var in[]
  • 9d66272 Correction to UseCorrectAssertInTests.
  • a6ab21a Fix a crash in JUnitIncompatibleType
  • 5a7b8d9 NearbyCallers: scan the body of expression lambdas.
  • 53d787c Don't suggest ImmutableSet if ImmutableList is unused.
  • Additional commits viewable in compare view

Updates com.google.errorprone:error_prone_core from 2.26.1 to 2.27.0

Release notes

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

Error Prone 2.27.0

New checks:

  • ClassInitializationDeadlock detects class initializers that reference subtypes of the current class, which can result in deadlocks.
  • MockitoDoSetup suggests using when/thenReturn over doReturn/when for additional type safety.
  • VoidUsed suggests using a literal null instead of referring to a Void-typed variable.

Modified checks:

Closed issues: #4291. #4308, #4343, #4320

Full Changelog: google/error-prone@v2.26.1...v2.27.0

Commits
  • ebe0a01 Release Error Prone 2.27.0
  • fd9b826 Remove a very literal change-detector test, and move the comment to the produ...
  • f289d9e VoidUsed: flag Void variables being used, where they can simply be repl...
  • 3ee6f41 Fix for a crash in RedundantSetterCall.
  • 92c106d Encourage when/thenReturn over doReturn/when.
  • 07c1a7c Stop mentioning @Var in[]
  • 9d66272 Correction to UseCorrectAssertInTests.
  • a6ab21a Fix a crash in JUnitIncompatibleType
  • 5a7b8d9 NearbyCallers: scan the body of expression lambdas.
  • 53d787c Don't suggest ImmutableSet if ImmutableList is unused.
  • Additional commits viewable in compare view

Updates io.airlift:jmx-http-rpc from 245 to 246

Commits

Updates io.airlift:json from 245 to 246

Commits

Updates io.airlift:bootstrap from 245 to 246

Commits

Updates io.airlift:configuration from 245 to 246

Commits

Updates io.airlift:log from 245 to 246

Commits

Updates io.airlift:concurrent from 245 to 246

Commits

Updates io.airlift:log-manager from 245 to 246

Commits

Updates io.airlift:json from 245 to 246

Commits

Updates net.bytebuddy:byte-buddy from 1.14.13 to 1.14.14

Release notes

Sourced from net.bytebuddy:byte-buddy's releases.

Byte Buddy 1.14.14

  • Adjust type validation to accept additional names that are legal in the class file format.
  • Fix dynamic attach on Windows when a service user is active.
  • Avoid failure when using Android's strict mode.
Changelog

Sourced from net.bytebuddy:byte-buddy's changelog.

23. April 2024: version 1.14.14

  • Adjust type validation to accept additional names that are legal in the class file format.
  • Fix dynamic attach on Windows when a service user is active.
  • Avoid failure when using Android's strict mode.
Commits
  • ae503b6 [maven-release-plugin] prepare release byte-buddy-1.14.14
  • 736a4c9 [release] Release new version
  • f9469fc Mask return type in safe string.
  • 85baec7 Fix android strict mode warning (#1623)
  • d6ca347 Add JavaDoc for NamedPipe handling on Windows (#1621)
  • 0a91a85 Windows Attachment: Allow access to named pipe for medium Integrity clients (...
  • 5efc70c Soften up rule for identifier control.
  • 95b083f Update InstrumentedType.java to check instrumented classfile is in valid Unic...
  • 126eafc Update harden-runner.
  • 147037b Add Java 23 to build matrix.
  • Additional commits viewable in compare view

Updates com.google.errorprone:error_prone_core from 2.26.1 to 2.27.0

Release notes

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

Error Prone 2.27.0

New checks:

  • ClassInitializationDeadlock detects class initializers that reference subtypes of the current class, which can result in deadlocks.
  • MockitoDoSetup suggests using when/thenReturn over doReturn/when for additional type safety.
  • VoidUsed suggests using a literal null instead of referring to a Void-typed variable.

Modified checks:

Closed issues: #4291. #4308, #4343, #4320

Full Changelog: google/error-prone@v2.26.1...v2.27.0

Commits
  • ebe0a01 Release Error Prone 2.27.0
  • fd9b826 Remove a very literal change-detector test, and move the comment to the produ...
  • f289d9e VoidUsed: flag Void variables being used, where they can simply be repl...
  • 3ee6f41 Fix for a crash in RedundantSetterCall.
  • 92c106d Encourage when/thenReturn over doReturn/when.
  • 07c1a7c Stop mentioning @Var in[]
  • 9d66272 Correction to UseCorrectAssertInTests.
  • a6ab21a Fix a crash in JUnitIncompatibleType
  • 5a7b8d9 NearbyCallers: scan the body of expression lambdas.
  • 53d787c Don't suggest ImmutableSet if ImmutableList is unused.
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-shade-plugin from 3.5.2 to 3.5.3

Commits
  • 19618cd [maven-release-plugin] prepare release maven-shade-plugin-3.5.3
  • faf233e [MSHADE-472] upgrade parent POM
  • 7de9ae7 [MSHADE-471] deal with DST
  • 58d8cfe [MSHADE-470] Bump asmVersion from 9.6 to 9.7 (#218)
  • 9074582 Bump org.apache.commons:commons-compress from 1.26.0 to 1.26.1
  • a8030f8 Bump org.apache.commons:commons-compress from 1.25.0 to 1.26.0 (#215)
  • 1218bdc [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Updates ca.vanzyl.provisio.maven.plugins:provisio-maven-plugin from 1.0.23 to 1.0.24

Release notes

Sourced from ca.vanzyl.provisio.maven.plugins:provisio-maven-plugin's releases.

1.0.24

What's Changed

Full Changelog: jvanzyl/provisio@provisio-1.0.23...provisio-1.0.24

Commits
  • a48b041 [maven-release-plugin] prepare release provisio-1.0.24
  • a24a668 Fix provision w/ Resolver expectations
  • b5a21b0 Bump aetherVersion from 1.9.18 to 1.9.19
  • 421d59f [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Updates org.apache.maven.plugins:maven-deploy-plugin from 3.1.1 to 3.1.2

Release notes

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

3.1.2

Release Notes - Maven Deploy Plugin - Version 3.1.2


What's Changed

New Contributors

Full Changelog: apache/maven-deploy-plugin@maven-deploy-plugin-3.1.1...maven-deploy-plugin-3.1.2

Commits
  • 4f016bc [maven-release-plugin] prepare release maven-deploy-plugin-3.1.2
  • 0ed18be Remove workaround, handle it centrally
  • b9c1c8b [MDEPLOY-314] Include artifactId in DeployMojo#processProject messages
  • 74d331b [MDEPLOY-316] Parent 42 and prerequisite 3.6.3 (#54)
  • ac9c49d Bump org.mockito:mockito-core from 2.28.2 to 4.11.0
  • de7cefb Bump apache/maven-gh-actions-shared from 3 to 4
  • edf85d7 Add Dependabot
  • 390e610 [MDEPLOY-313] Update to parent 41, cleanup (#47)
  • 29f3c81 DeployFileMojo#readModel(File): fixed MojoExecutionException javadoc
  • 9039fc6 Type: fill --> file
  • Additional commits viewable in compare view

Updates io.airlift:bootstrap from 245 to 246

Commits

Updates io.airlift:configuration from 245 to 246

Commits

Updates io.airlift:log from 245 to 246

Commits

Updates io.airlift:concurrent from 245 to 246

Commits

Updates io.airlift:log-manager from 245 to 246

Commits

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

Bumps the dependency-updates group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [io.airlift:airbase](https://github.com/airlift/airbase) | `154` | `155` |
| [com.google.errorprone:error_prone_annotations](https://github.com/google/error-prone) | `2.26.1` | `2.27.0` |
| [com.google.errorprone:error_prone_core](https://github.com/google/error-prone) | `2.26.1` | `2.27.0` |
| [io.airlift:jmx-http-rpc](https://github.com/airlift/airlift) | `245` | `246` |
| [io.airlift:json](https://github.com/airlift/airlift) | `245` | `246` |
| [io.airlift:bootstrap](https://github.com/airlift/airlift) | `245` | `246` |
| [io.airlift:configuration](https://github.com/airlift/airlift) | `245` | `246` |
| [io.airlift:log](https://github.com/airlift/airlift) | `245` | `246` |
| [io.airlift:concurrent](https://github.com/airlift/airlift) | `245` | `246` |
| [io.airlift:log-manager](https://github.com/airlift/airlift) | `245` | `246` |
| [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) | `1.14.13` | `1.14.14` |
| [org.apache.maven.plugins:maven-shade-plugin](https://github.com/apache/maven-shade-plugin) | `3.5.2` | `3.5.3` |
| [ca.vanzyl.provisio.maven.plugins:provisio-maven-plugin](https://github.com/takari/provisio) | `1.0.23` | `1.0.24` |
| [org.apache.maven.plugins:maven-deploy-plugin](https://github.com/apache/maven-deploy-plugin) | `3.1.1` | `3.1.2` |


Updates `io.airlift:airbase` from 154 to 155
- [Changelog](https://github.com/airlift/airbase/blob/master/CHANGES.md)
- [Commits](https://github.com/airlift/airbase/commits)

Updates `com.google.errorprone:error_prone_annotations` from 2.26.1 to 2.27.0
- [Release notes](https://github.com/google/error-prone/releases)
- [Commits](google/error-prone@v2.26.1...v2.27.0)

Updates `com.google.errorprone:error_prone_core` from 2.26.1 to 2.27.0
- [Release notes](https://github.com/google/error-prone/releases)
- [Commits](google/error-prone@v2.26.1...v2.27.0)

Updates `io.airlift:jmx-http-rpc` from 245 to 246
- [Changelog](https://github.com/airlift/airlift/blob/master/NEWS)
- [Commits](https://github.com/airlift/airlift/commits)

Updates `io.airlift:json` from 245 to 246
- [Changelog](https://github.com/airlift/airlift/blob/master/NEWS)
- [Commits](https://github.com/airlift/airlift/commits)

Updates `io.airlift:bootstrap` from 245 to 246
- [Changelog](https://github.com/airlift/airlift/blob/master/NEWS)
- [Commits](https://github.com/airlift/airlift/commits)

Updates `io.airlift:configuration` from 245 to 246
- [Changelog](https://github.com/airlift/airlift/blob/master/NEWS)
- [Commits](https://github.com/airlift/airlift/commits)

Updates `io.airlift:log` from 245 to 246
- [Changelog](https://github.com/airlift/airlift/blob/master/NEWS)
- [Commits](https://github.com/airlift/airlift/commits)

Updates `io.airlift:concurrent` from 245 to 246
- [Changelog](https://github.com/airlift/airlift/blob/master/NEWS)
- [Commits](https://github.com/airlift/airlift/commits)

Updates `io.airlift:log-manager` from 245 to 246
- [Changelog](https://github.com/airlift/airlift/blob/master/NEWS)
- [Commits](https://github.com/airlift/airlift/commits)

Updates `io.airlift:json` from 245 to 246
- [Changelog](https://github.com/airlift/airlift/blob/master/NEWS)
- [Commits](https://github.com/airlift/airlift/commits)

Updates `net.bytebuddy:byte-buddy` from 1.14.13 to 1.14.14
- [Release notes](https://github.com/raphw/byte-buddy/releases)
- [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md)
- [Commits](raphw/byte-buddy@byte-buddy-1.14.13...byte-buddy-1.14.14)

Updates `com.google.errorprone:error_prone_core` from 2.26.1 to 2.27.0
- [Release notes](https://github.com/google/error-prone/releases)
- [Commits](google/error-prone@v2.26.1...v2.27.0)

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

Updates `ca.vanzyl.provisio.maven.plugins:provisio-maven-plugin` from 1.0.23 to 1.0.24
- [Release notes](https://github.com/takari/provisio/releases)
- [Commits](jvanzyl/provisio@provisio-1.0.23...provisio-1.0.24)

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

Updates `io.airlift:bootstrap` from 245 to 246
- [Changelog](https://github.com/airlift/airlift/blob/master/NEWS)
- [Commits](https://github.com/airlift/airlift/commits)

Updates `io.airlift:configuration` from 245 to 246
- [Changelog](https://github.com/airlift/airlift/blob/master/NEWS)
- [Commits](https://github.com/airlift/airlift/commits)

Updates `io.airlift:log` from 245 to 246
- [Changelog](https://github.com/airlift/airlift/blob/master/NEWS)
- [Commits](https://github.com/airlift/airlift/commits)

Updates `io.airlift:concurrent` from 245 to 246
- [Changelog](https://github.com/airlift/airlift/blob/master/NEWS)
- [Commits](https://github.com/airlift/airlift/commits)

Updates `io.airlift:log-manager` from 245 to 246
- [Changelog](https://github.com/airlift/airlift/blob/master/NEWS)
- [Commits](https://github.com/airlift/airlift/commits)

---
updated-dependencies:
- dependency-name: io.airlift:airbase
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: com.google.errorprone:error_prone_annotations
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependency-updates
- dependency-name: com.google.errorprone:error_prone_core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependency-updates
- dependency-name: io.airlift:jmx-http-rpc
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: io.airlift:json
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: io.airlift:bootstrap
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: io.airlift:configuration
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: io.airlift:log
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: io.airlift:concurrent
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: io.airlift:log-manager
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: io.airlift:json
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: net.bytebuddy:byte-buddy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependency-updates
- dependency-name: com.google.errorprone:error_prone_core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependency-updates
- dependency-name: org.apache.maven.plugins:maven-shade-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependency-updates
- dependency-name: ca.vanzyl.provisio.maven.plugins:provisio-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependency-updates
- dependency-name: org.apache.maven.plugins:maven-deploy-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependency-updates
- dependency-name: io.airlift:bootstrap
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: io.airlift:configuration
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: io.airlift:log
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: io.airlift:concurrent
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
- dependency-name: io.airlift:log-manager
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependency-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Apr 29, 2024
Copy link
Author

dependabot bot commented on behalf of github May 2, 2024

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this May 2, 2024
@dependabot dependabot bot deleted the dependabot/maven/dependency-updates-6024a0dcff branch May 2, 2024 06:06
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.

0 participants