fix(deps): update dependency com.github.ajalt.clikt:clikt to v5 #236
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
3.5.4->5.0.3Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
ajalt/clikt (com.github.ajalt.clikt:clikt)
v5.0.3Compare Source
Fixed
@argfilesnot being expanded when specified after a subcommand (#570)v5.0.2Compare Source
Changed
v5.0.1Compare Source
Added
Changed
v5.0.0Compare Source
Added
iosArm64andiosX64targets.NoSuchArgumentexception that is thrown when too many arguments were given on the command line. Previously, a less specificUsageErrorwas thrown instead.CommandLineParser.tokenizethat splits a string into argv tokens.CommandLineParserthat provides functions for parsing and finalizing commands manually for more control.Context.invokedSubcommandsthat contains all subcommands of the current command that are going to be invoked whenallowMultipleSubcommandsistrue.SuspendingCliktCommandthat has asuspend fun runmethod, allowing you to use coroutines in your commands.ChainedCliktCommandthat allows you to return a value from yourrunmethod and pass it to the next command in the chain.Context.dataas an alternative toobjthat allows you to store more than one object in the context.Context.echoerto customize howechomessages are printed.CompletionGeneratorto manually generate completions for a command.Context.exitProcesswhich you can use to prevent the process from exiting during tests.CliktCommand.testto control the terminal interactivity. (#517)associate{},associateBy{}, andassociateWith{}transforms for options that allow you to convert the keys and values of the map. (#529)limitandignoreCaseparameters tooption().split(). (#541)--helpon subcommands when parents have required parameters.Changed
In a subcommand with and an
argument()withmultiple()oroptional(), the behavior is now the same regardless of the value ofallowMultipleSubcommands: 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:helpfun helpepilogfun helpEpiloginvokeWithoutSubcommandval invokeWithoutSubcommandprintHelpOnEmptyArgsval printHelpOnEmptyArgshelpTagsval helpTagsautoCompleteEnvvarval autoCompleteEnvvarallowMultipleSubcommandsval allowMultipleSubcommandstreatUnknownOptionsAsArgsval treatUnknownOptionsAsArgshiddenval hiddenFromHelpThe following methods on
CliktCommandhave been renamed:commandHelp->help,commandHelpEpilog->epilog. The old names are deprecated.Breaking Change:
CliktCommand.mainandCliktCommand.parseare now extension functions rather than methods.Breaking Change:
Context.objandContext.terminal, andOptionTransformContext.terminalare now extension functions rather than properties.Breaking Change: The
RenderedSectionandDefinitionRowclasses have moved toAbstractHelpFormatter.Markdown support in the help formatter is no longer included by default. To enable it, include the
:clikt-markdowndependency and callyourCommand.installMordantMarkdown()before parsing.Updated Kotlin to 2.0.0
Fixed
allowMultipleSubcommands=trueand a subcommand has excess arguments followed by another subcommand.printHelpOnEmptyArgs=truewill no longer print help if an option has a value from an environment variable or value source. (#382)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, or set in on the newContext.datamap.Context.expandArgumentFiles. UseContext.argumentFileReaderinstead.Contextfields to be more consistent. The old names are deprecated.Context.envvarReaderContext.readEnvvarContext.correctionSuggestorContext.suggestTypoCorrectionContext.argumentFileReaderContext.readArgumentFileContext.tokenTransformerContext.transformTokenRemoved
MordantHelpFormatter.graphemeLengthTermUiv4.4.0Compare Source
Added
linuxArm64andwasmJstargets.v4.3.0Compare Source
Added
limitparameter tooption().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)Context.registerClosableandContext.callOnCloseto allow you to register cleanup actions that will be called when the command exits. (#395)Fixed
unrecognized modifier 'i'that happened on tab-completion when using sub command aliases. Thanks to @hick209 for the contribution. (#500)complete:13: command not found: compdef. Thanks to @hick209 for the contribution. (#499)v4.2.2Compare Source
Changed
defaultLazyand other finalization blocks. They can also freely reference each other, including though chains of references. (#473)v4.2.1Compare Source
Added
toStringimplementations to options and arguments. (#434)CliktCommand.testoverload that takes a vararg ofStrings as the command line arguments. Thanks to @sschuberth for the contribution (#451)Fixed
v4.2.0Compare Source
Added
requireConfirmationparameter tooption().prompt()(#426)CliktCommand.terminalextension for accessing the terminal from a command.includeSystemEnvvars,ansiLevel,width, andheightparameters to allCliktCommand.testoverloads.Deprecated
CliktCommand.prompt, useCliktCommand.terminal.promptorPromptinstead.CliktCommand.confirm, useYesNoPromptinstead.Fixed
defaultLazyoption referenced arequiredoption. (#430)v4.1.0Compare Source
Added
MordantHelpFormatter.renderAttachedOptionValuethat you can override to change how option values are shown, e.g. if you want option to show as--option <value>instead of--option=<value>. (#416)option().optionalValueLazy{}, which work likeoptionalValue()but the default value is computed lazily. (#381)Changed
PrintMessage,PrintHelpMessageandPrintCompletionMessagenow default to exiting with a status code 0, which is the behavior they had in 3.x. (#419)v4.0.0Compare Source
Added
Context.errorEncounteredwhich is true if parsing has continued after an error was encountered.option().help{""}andargument().help{""}extensions that set the parameter's help text lazily, with access to the current context so that you can add colors.Changed
Option.optionHelpandArgument.argumentHelp,CliktCommand.commandHelp, andCliktCommand.commandHelpEpilogare now methods that take the context as an argument, and thehelpparameter tocopyis now ahelpGetterlambda.CliktCommand.shortHelpnow takes the context as an argument.messagemethod onTransformContextinterfaces is now an extension.Deprecated
CliktCommand.commandHelpandcommandHelpEpilogproperties in favor of the methods with the same name.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.