All Versions
28
Latest Version
Avg Release Cycle
46 days
Latest Release
-

Changelog History
Page 2

  • v2.8.0 Changes

    June 19, 2020

    2020-06-19

    โž• Added

    • โž• Added error parameter to PrintMessage and PrintHelpMessage. When true, CliktCommand.main will exit with status code 1. (#187)

    ๐Ÿ”„ Changed

    • ๐Ÿ–จ When printHelpOnEmptyArgs is true and no arguments are present, or when invokeWithoutSubcommand is false and no subcommand is present, CliktCommand.main will now exit with status code 1 rather than 0.
    • restrictTo now works with any Comparable value, not just Number.
    • CliktCommand.main now accepts Array<out String>, not just Array<String>. (#196)

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Fixed option values being reset when calling multiple subcommands with allowMultipleSubcommands=true (#190)
  • v2.7.1 Changes

    May 19, 2020

    2020-05-19

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Fixed NPE thrown in some cases when using defaultByName (#179)
  • v2.7.0 Changes

    May 13, 2020

    โž• Added

    • Ability to use custom program exit status codes via ProgramResult.
    • inputStream and outputStream conversions for options and arguments. (#157 and #159)
    • splitPair, toMap, and associate extensions on option. (#166)
    • treatUnknownOptionsAsArgs parameter to CliktCommand. (#152)
    • 0๏ธโƒฃ defaultByName function for groupChoice and groupSwitch options. (#171)

    ๐Ÿ”„ Changed

    • โšก๏ธ Update Kotlin to 1.3.71
    • ๐Ÿ‘Œ Improved command name inference. Now, a class like MyAppCommand will infer its commandName as my-app rather than myappcommand. You can still specify the name manually as before. (#168)

    ๐Ÿ›  Fixed

    • ๐Ÿ“œ Correctly parse short options with attached values that contain =

    ๐Ÿš€ Thanks to @sschuberth for his contributions to this release!

  • v2.6.0 Changes

    March 15, 2020

    2020-03-15

    โž• Added

    • registeredSubcommands, registeredOptions, registeredArguments, and registeredParameterGroups methods on CliktCommand.
    • ๐Ÿ‘€ Ability to read default option values from configuration files and other sources. Support for Java property files is built in on JVM, see the json sample for an example of reading from other formats.
    • ๐Ÿ“„ allowMultipleSubcommands parameter to CliktCommand that allows you to pass multiple subcommands in the same call. (docs)
    • โœ๏ธ Errors from typos in subcommand names will now include suggested corrections. Corrections for options and subcommands are now based on a Jaro-Winkler similarity metric, and can be customized with Context.correctionSuggestor

    ๐Ÿ”„ Changed

    • โšก๏ธ Update Kotlin to 1.3.70
    • convert can be called more than once on the same option or argument, including after calls to conversion functions like int and file.
    • CliktCommand.toString now includes the class name
    • Reverted automatic ~ expansion in file() and path() introduced in 2.5.0. If you need this behavior, you can implement it with code like convert { /* expand tidle */ }.file()

    ๐Ÿ—„ Deprecated

    • ๐Ÿ—„ wrapValue is now deprecated, since convert can be used in its place instead.
  • v2.5.0 Changes

    February 22, 2020

    2020-02-22

    โž• Added

    • ๐ŸŽ Clikt is now available as a Kotlin Multiplatform Project, supporting JVM, NodeJS, and native Windows, Linux, and macOS.
    • eagerOption {} function to more easily register eager options.
    • Eager options can now be added to option groups in help out by passing a value for groupName when creating them.
    • canBeSymlink parameter to file() and path() conversions that can be used to disallow symlinks
    • CliktCommand.eagerOption to simplify creating custom eager options

    ๐Ÿ”„ Changed

    • ๐Ÿšš The parameter names of file() and path() conversions have changed. The existing names are deprecated, and can be converted to the new usages with an IntelliJ inspection. Note that if you are calling these functions with unnamed arguments (e.g. file(true, false)), you'll need to add argument names in order to remove the deprecation warning.

    ๐Ÿ—„ Deprecated

    • ๐Ÿ—„ The CliktCommand.context property has been deprecated in favor of the new name, currentContext, to avoid confusion with the CliktCommand.context{} method.
    • ๐Ÿ—„ NoRunCliktCommand was renamed to NoOpCliktCommand. The existing class is deprecated. (#130)

    ๐Ÿ›  Fixed

    • file() and path() conversions will now properly expand leading ~ in paths to the home directory for mustExist, canBeFile, and canBeDir checks. The property value is unchanged, and can still begin with a ~. (#131)
  • v2.5.0-beta1

    February 13, 2020
  • v2.4.0 Changes

    January 25, 2020

    โž• Added

    • ๐Ÿ›  CompletionCandidates.Fixed now has a secondary convenience constructor that take a vararg of Strings
    • CompletionCadidates.Custom, which allows you to call other binaries or write a script to generate completions. This class is currently experimental. (#79)
    • Option.wrapValue and Argument.wrapValue to make it easier to reuse existing conversion functions.
    • ignoreCase parameter to choice() and enum() conversion functions.

    ๐Ÿ”„ Changed

    • 0๏ธโƒฃ option() and argument() now take optional completionCandidates parameters to override how completion is generated. The constructor and copy functions of OptionsWithValues and ProcessedArgument have changed to support default values.
    • ๐Ÿ—„ The overloads of findObject (1 2) that take a default value have been renamed findOrSetObject. The existing names are marked with @Deprecated, and IntelliJ can convert your callsites automatically. (#110)
    • 0๏ธโƒฃ enum() parameters now accept case-insensitive values by default. You change this behavior by passing ignoreCase = false to enum() (#115)

    ๐Ÿ›  Fixed

    • groupChoice help output now includes the choices in the help output metavar
    • TermUi.edit* functions could freeze on certain editors (#99, thanks @iampravikant and @sebokopter)
    • Shell completion can now handle command names with dashes. (#104)
    • Arguments with = in them could be incorrectly interpreted as options (#106)
  • v2.3.0 Changes

    November 07, 2019

    2019-11-07

    โž• Added

    • option().groupSwitch(), which works like groupChoice(), but uses a switch() option rather than a choice() option.
    • 0๏ธโƒฃ UsageError now has a statusCode parameter (which defaults to 1). If you're using ClicktCommand.main, the value of statusCode will be passed to exitProcess.

    ๐Ÿ”„ Changed

    • ๐Ÿ–จ Shell completion code is now printed by throwing a PrintCompletionMessage (a subclass of PrintMessage) rather than calling echo directly.
  • v2.2.0 Changes

    September 25, 2019

    2019-09-25

    โž• Added

    ๐Ÿ”„ Changed

    ๐Ÿ›  Fixed

    • Help output missing items when no help text is specified. (#85)
    • Help output not grouping options in groups passed to groupChoice. (#88)
  • v2.1.0 Changes

    May 23, 2019

    2019-05-23

    โž• Added

    • Ability to prevent rewrapping individual paragraphs in help output.
    • โž• Added parameter required to Option.multiple() to require at least one instance of the option on the command line.

    ๐Ÿ”„ Changed

    • CliktCommand.toString() now includes the names and values of all parameters and subcommands.

    ๐Ÿ›  Fixed

    • Create subcommand context when helpOptionNames is empty. (#64)