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 gradle-dependencies group with 4 updates #43

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the gradle-dependencies group with 4 updates: com.github.ajalt.clikt:clikt, me.tongfei:progressbar, io.github.oshai:kotlin-logging-jvm and org.slf4j:slf4j-api.

Updates com.github.ajalt.clikt:clikt from 4.2.2 to 4.4.0

Release notes

Sourced from com.github.ajalt.clikt:clikt's releases.

4.4.0

This release adds support for linuxArm64 and wasmJs targets.

4.3.0

Added

  • Added limit parameter to option().counted() to limit the number of times the option can be used. You can either clamp the value to the limit, or throw an error if the limit is exceeded. (#483)
  • Added Context.registerClosable and Context.callOnClose to allow you to register cleanup actions that will be called when the command exits. (#395)

Fixed

  • Fixed unrecognized modifier 'i' that happened on tab-completion when using sub command aliases. Thanks to @​hick209 for the contribution. (#500)
  • Make sure auto complete script works on zsh, fixing the error complete:13: command not found: compdef. Thanks to @​hick209 for the contribution. (#499)
Changelog

Sourced from com.github.ajalt.clikt:clikt's changelog.

4.4.0

Added

  • Publish linuxArm64 and wasmJs targets.

Changed

  • In a subcommand with argument().multiple(), the behavior is now the same regardless of the value of allowMultipleSubcommands: if a token matches a subcommand name, it's now treated as a subcommand rather than a positional argument.

  • Due to changes to the internal parsing algorithm, the exact details of error messages when multiple usage errors occur have changed in some cases.

  • Breaking Change: Moved the following parameters from CliktCommand's constructor; override the corresponding properties instead:

    removed parameter replacement property
    help fun help
    epilog fun helpEpilog
    invokeWithoutSubcommand val invokeWithoutSubcommand
    printHelpOnEmptyArgs val printHelpOnEmptyArgs
    helpTags val helpTags
    autoCompleteEnvvar val autoCompleteEnvvar
    allowMultipleSubcommands val allowMultipleSubcommands
    treatUnknownOptionsAsArgs val treatUnknownOptionsAsArgs
    hidden val hiddenFromHelp
  • The following methods on CliktCommand have been renamed: commandHelp -> help, commandHelpEpilog -> epilog. The old names are deprecated.

  • Breaking Change: CliktCommand.main and CliktCommand.parse are now extension functions rather than methods.

Fixed

  • Fixed excess arguments not being reported when allowMultipleSubcommands=true and a subcommand has excess arguments followed by another subcommand.

Deprecated

  • Deprecated Context.originalArgv. It will now always return an empty list. If your commands need an argv, you can pass it to them before you run them.

Removed

  • Removed previously deprecated experimental annotations.

4.3.0

Added

  • Added limit parameter to option().counted() to limit the number of times the option can be used. You can either clamp the value to the limit, or throw an error if the limit is exceeded. (#483)
  • Added Context.registerClosable and Context.callOnClose to allow you to register cleanup actions that will be called when the command exits. (#395)

Fixed

  • Fixed unrecognized modifier 'i' that happened on tab-completion when using sub command aliases. Thanks to @​hick209 for the contribution. (#500)
  • Make sure auto complete script works on zsh, fixing the error complete:13: command not found: compdef. Thanks to @​hick209 for the contribution. (#499)
Commits

Updates me.tongfei:progressbar from 0.10.0 to 0.10.1

Release notes

Sourced from me.tongfei:progressbar's releases.

0.10.1

  • Improvements:
    • Changed the JPMS module dependency org.jline to a more fine-grained module org.jline.terminal (#158, PR #159). Thanks @​brett-smith !
    • Added a new builder method setRenderer to allow custom renderers (#157). Thanks @​drothmaler !
Changelog

Sourced from me.tongfei:progressbar's changelog.

Changelog

  • 0.10.1:

    • Improvements:
      • Changed the JPMS module dependency org.jline to a more fine-grained module org.jline.terminal (#158, PR #159). Thanks @​brett-smith !
      • Added a new builder method setRenderer to allow custom renderers (#157). Thanks @​drothmaler !
  • 0.10.0:

  • 0.9.5:

    • Bugfixes:
      • Fixed the problem of ProgressState not being public, thus making setEtaFunction useless (#147, PR #146). Thanks @​deejgregor, @​natanfudge !
      • Correct handling of ANSI control characters in calculating the display length.
    • New functionalities:
      • Added a new UNICODE_COLORFUL_BAR style.
  • 0.9.4:

    • New functionalities:
      • In ProgressBarBuilders, one can now switch whether to show the remaining time, or to provide a custom function to compute the remaining time (if the progress is not linear) (#131). Thanks @​MagnusErikssonAB !
      • In ProgressBarBuilders, one can now set .clearDisplayOnFinish() to clear the display on terminals when a progress is complete (#135). Thanks @​mattparkins !
      • Added a method ProgressBar::isIndefinite to check if a progress bar's max is unknown (#140). Thanks @​lt3stus3el !
    • Bugfixes:
      • Fixed the bug of not drawing after resetting or stepping back caused by #91 (#124). Thanks @​Bricktheworld !
      • Suppress exceptions thrown in Spliterator.estimateSize and continue as if indefinite (#141). Thanks @​seanf !
    • Dependency version bump.
  • 0.9.3:

    • New functionalities:
      • Supports for wrapping around java.io.OutputStreams and java.io.Writers (#114). Thanks @​azachar !
      • Added continuousUpdate boolean parameter to various constructors and the ProgressUpdateAction so that long-running processes don't take forever to print something (#121, PR #120). Thanks @​gaoagong !
    • Performance improvements:
    • Bugfixes:
      • Displays a progress bar immediately after it starts, regardless of whether it has made any progress (#117). Thanks @​azachar !
      • Closing a progress bar will now force the progress bar to refresh (PR #110). Thanks @​kmtong !
      • Using a default DecimalFormat object if isSpeedShown is true as it will otherwise throw a NullPointerException during rendering (#121, PR #120). Thanks @​gaoagong !
    • Dependency bump. Specifically:
  • 0.9.2:

    • New functionalities:
      • Supports for wrapping around java.io.Readers.
    • Bugfixes:
      • Fixed potential StringIndexOutOfBoundsException and improved performance in trimDisplayLength (PR #104). Thanks @​heroesleo65 !
      • Fixed the bug that incorrectly calculates string display length while displaying that results in last ) truncated (#105).
    • Improvements:
      • Size now known when wrapping an array (PR #101). Thanks @​seanf !
      • Better estimation of initial max for spliterators (#102).

... (truncated)

Commits

Updates io.github.oshai:kotlin-logging-jvm from 6.0.3 to 6.0.9

Release notes

Sourced from io.github.oshai:kotlin-logging-jvm's releases.

6.0.9

What's Changed

Full Changelog: oshai/kotlin-logging@6.0.8...6.0.9

6.0.8

What's Changed

Full Changelog: oshai/kotlin-logging@6.0.7...6.0.8

6.0.7

Full Changelog: oshai/kotlin-logging@6.0.5...6.0.7

6.0.5

What's Changed

Full Changelog: oshai/kotlin-logging@6.0.4...6.0.5

6.0.4

What's Changed

New Contributors

Full Changelog: oshai/kotlin-logging@6.0.3...6.0.4

Commits

Updates org.slf4j:slf4j-api from 2.0.12 to 2.0.13

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 gradle-dependencies group with 4 updates: [com.github.ajalt.clikt:clikt](https://github.com/ajalt/clikt), [me.tongfei:progressbar](https://github.com/ctongfei/progressbar), [io.github.oshai:kotlin-logging-jvm](https://github.com/oshai/kotlin-logging) and org.slf4j:slf4j-api.


Updates `com.github.ajalt.clikt:clikt` from 4.2.2 to 4.4.0
- [Release notes](https://github.com/ajalt/clikt/releases)
- [Changelog](https://github.com/ajalt/clikt/blob/master/CHANGELOG.md)
- [Commits](ajalt/clikt@4.2.2...4.4.0)

Updates `me.tongfei:progressbar` from 0.10.0 to 0.10.1
- [Release notes](https://github.com/ctongfei/progressbar/releases)
- [Changelog](https://github.com/ctongfei/progressbar/blob/main/CHANGELOG.md)
- [Commits](ctongfei/progressbar@0.10.0...0.10.1)

Updates `io.github.oshai:kotlin-logging-jvm` from 6.0.3 to 6.0.9
- [Release notes](https://github.com/oshai/kotlin-logging/releases)
- [Changelog](https://github.com/oshai/kotlin-logging/blob/master/ChangeLog-old.md)
- [Commits](oshai/kotlin-logging@6.0.3...6.0.9)

Updates `org.slf4j:slf4j-api` from 2.0.12 to 2.0.13

---
updated-dependencies:
- dependency-name: com.github.ajalt.clikt:clikt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-dependencies
- dependency-name: me.tongfei:progressbar
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-dependencies
- dependency-name: io.github.oshai:kotlin-logging-jvm
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-dependencies
- dependency-name: org.slf4j:slf4j-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-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 Apr 29, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github May 13, 2024

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

@dependabot dependabot bot closed this May 13, 2024
@dependabot dependabot bot deleted the dependabot/gradle/gradle-dependencies-7bf696aaa6 branch May 13, 2024 04:47
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