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 com.github.rvesse:airline from 2.8.4 to 3.0.0 #67

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 14, 2023

Bumps com.github.rvesse:airline from 2.8.4 to 3.0.0.

Release notes

Sourced from com.github.rvesse:airline's releases.

3.0.0 is a major release

Breaking Changes

  • Java 11 is now the minimum required Java version
  • Full JPMS support
    • @BashCompletion annotation moved package in order to enable this
  • @AirlineModule is now the only composition annotation enabled by default, use of @Inject and its associated dependencies is now entirely optional

Full Change Log

  • Core Improvements
    • First class support for BigInteger and BigDecimal as numeric types
    • First class support for Path
    • Provided corrected spelling for ConvertResult.wasSuccessful(), old mis-spelt method preserved but marked as deprecated
    • Added a ModulePathLocator as an additional ResourceLocator to allow finding resources on the Module Path when those resources are properly encapsulated by their owning modules
    • Added a JpmsResourceLocator as an additional ResourceLocator to allow finding resources when running in a JPMS context for resources that are not properly encapsulated or whose module-info.java you cannot control (requires additional module airline-jpms-resources)
    • BREAKING - Only @AirlineModule is used as a composition annotation by default, use of the older @javax.inject.Inject or @jakarta.inject.Inject annotations MUST now be explicitly configured.
  • Help Improvements
    • Added an @SeeAlso annotation to Airline Core (#51)
    • BREAKING - airline-help-bash has moved @BashCompletion annotation into com.github.rvesse.airline.annotations.help.bash to avoid package collisions between this module and the core in order to allow this module to become a JPMS module
  • Fluent API Improvements
    • A ParserBuilder created by calling withParser() on a CliBuilder can now return control back to its parent via the parent() method for cleaner Fluid CLI definitions
  • Dependency Updates
    • BREAKING - Minimum JDK Version is now 11
    • Apache Commons Collections upgraded to 4.4
    • Apache Commons Lang upgraded to 3.14.0
    • BREAKING jakarta.inject and airline-backcompat-javaxinject were made optional so will no longer be pulled in automatically
    • Various build plugins updated to the latest available versions (this only impacts developers building the library from source)
    • Added new airline-help-external module with a dependency on Apache Commons CSV 1.10.0
    • Added new airline-jpms-resources module with a dependency on ClassGraph to enable resource location when Airline is used on Module Path i.e. JPMS runtime context
  • Maven Plugin improvements
    • Some logging has moved up to INFO from DEBUG, so you no longer have to use -X to see it
  • New airline-prompts module provides a Fluent API for defining user prompts (#92)
    • Prompt timeouts so non-interactive apps don't hang forever
    • Configurable prompt sources
    • Configurable prompt formatting
    • Prompt for keys, strings, passwords, options (from a pre-configured list) or a strongly typed value
    • Integrates with Airline's type conversion
  • New airline-help-external modules provides new help annotations that allow more complex help to be provided via

... (truncated)

Changelog

Sourced from com.github.rvesse:airline's changelog.

3.0.0

  • Core Improvements
    • First class support for BigInteger and BigDecimal as numeric types
    • First class support for Path
    • Provided corrected spelling for ConvertResult.wasSuccessful(), old mis-spelt method preserved but marked as deprecated
    • Added a JpmsResourceLocator as an additional ResourceLocator to allow finding resources when running in a JPMS context (requires additional module airline-jpms-resources)
    • BREAKING - Only @AirlineModule is used as a composition annotation by default, use of the older @javax.inject.Inject or @jakarta.inject.Inject annotations MUST now be explicitly configured.
  • Help Improvements
    • Added an @SeeAlso annotation to Airline Core (#51)
    • BREAKING - airline-help-bash has moved @BashCompletion annotation into com.github.rvesse.airline.annotations.help.bash to avoid package collisions between this module and the core in order to allow this module to become a JPMS module
  • Fluent API Improvements
    • A ParserBuilder created by calling withParser() on a CliBuilder can now return control back to its parent via the parent() method for cleaner Fluid CLI definitions
  • Dependency Updates
    • BREAKING - Minimum JDK Version is now 11
    • Apache Commons Collections upgraded to 4.4
    • Apache Commons Lang upgraded to 3.14.0
    • jakarta.inject and airline-backcompat-javaxinject were made optional so will no longer be pulled in automatically
    • Various build plugins updated to the latest available versions (this only impacts developers building the library from source)
    • Added new airline-help-external module with a dependency on Apache Commons CSV 1.10.0
    • Added new airline-jpms-resources module with a dependency on ClassGraph to enable resource location when Airline is used on Module Path i.e. JPMS runtime context
  • Maven Plugin improvements
    • Some logging has moved up to INFO from DEBUG, so you no longer have to use -X to see it
  • New airline-prompts module provides a Fluent API for defining user prompts (#92)
    • Prompt timeouts so non-interactive apps don't hang forever
    • Configurable prompt sources
    • Configurable prompt formatting
    • Prompt for keys, strings, passwords, options (from a pre-configured list) or a strongly typed value
    • Integrates with Airline's type conversion
  • New airline-help-external modules provides new help annotations that allow more complex help to be provided via classpath/file resources rather than directly in the annotations. This is a generalisation of the mechanism already used by @Version annotation. (#52)
    • Adds @ExternalDiscussion @ExternalProse, @ExternalExitCodes, @ExternalExamples and @ExternalExamplesTabular annotations
  • Build and Release Improvements
    • All Airline modules are now fully fledged JPMS modules meaning they can be used on the JVM Module Path instead of the Classpath where preferred
      • See airline-examples module for examples of constructing a module-info.java that pulls in other Airline modules and see modularExample script for examples of invoking an Airline based app using the Module Path

... (truncated)

Commits
  • 042c9e9 [maven-release-plugin] prepare release 3.0.0
  • 3947ada Use latest Javadoc plugin
  • b00b57c Ensure Javadoc is produced during releases
  • a13833e Hopefully fix airline-maven-plugin builds
  • 08c30fa Merge pull request #130 from rvesse/2.10
  • 8146ce4 Fix some doc navigation issues
  • f3cccdb Assorted doc cleanup ahead of 3.x release
  • 2a3fa2c More JPMS related cleanup
  • 1cdde39 Lots of JPMS fixes
  • 173df02 Remove Java 8 from build matrix
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

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

Bumps [com.github.rvesse:airline](https://github.com/rvesse/airline) from 2.8.4 to 3.0.0.
- [Release notes](https://github.com/rvesse/airline/releases)
- [Changelog](https://github.com/rvesse/airline/blob/main/CHANGELOG.md)
- [Commits](rvesse/airline@2.8.4...3.0.0)

---
updated-dependencies:
- dependency-name: com.github.rvesse:airline
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 14, 2023
Copy link

This pull request has been marked as stale due to 60 days of inactivity.
It will be closed in 4 weeks if no further activity occurs. If you think
that's incorrect or this pull request should instead be reviewed, please simply
write any comment. Even if closed, you can still revive the PR at any time or
discuss it on the [email protected] list.
Thank you for your contributions.

@github-actions github-actions bot added the stale label Mar 16, 2024
Copy link

This pull request/issue has been closed due to lack of activity. If you think that
is incorrect, or the pull request requires review, you can revive the PR at any time.

@github-actions github-actions bot closed this Apr 14, 2024
Copy link
Author

dependabot bot commented on behalf of github Apr 14, 2024

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/maven/com.github.rvesse-airline-3.0.0 branch April 14, 2024 00:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area - Dependencies dependencies Pull requests that update a dependency file stale
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants