Skip to content

Latest commit

 

History

History
309 lines (281 loc) · 22.9 KB

ChangeLog.md

File metadata and controls

309 lines (281 loc) · 22.9 KB

What’s new in Ookii.CommandLine

Ookii.CommandLine 4.1 (TBD)

Ookii.CommandLine 4.0.1 (2023-09-19)

  • Fix an issue where arguments defined by methods could not have aliases.

Ookii.CommandLine 4.0 (2023-07-20)

IMPORTANT: Version 4.0 contains breaking changes. If you are upgrading from version 2.x or 3.x, please check the migration guide.

  • Add support for source generation.
    • Use the GeneratedParserAttribute to determine command line arguments at compile time.
      • Get errors and warnings for many mistakes.
      • Automatically determine the order of positional arguments.
      • Use property initializers to set default values that are used in the usage help.
      • Allow your application to be trimmed.
      • Improved performance.
    • Use the GeneratedCommandManagerAttribute to determine subcommands at compile time.
      • Allow an application with subcommands to be trimmed.
      • Improved performance.
    • Using source generation is recommended unless you are not able to meet the requirements.
  • Constructor parameters can no longer be used to define command line arguments.
  • Converting strings to argument types is now done using Ookii.CommandLine's own ArgumentConverter class.
    • See the migration guide for more information.
    • This enables conversion using ReadOnlySpan<char> for better performance, makes it easier to implement new converters, provides better error messages for enumeration conversion, and enables the use of trimming (when source generation is used).
    • For .Net 7 and later, support value conversion using the ISpanParsable<TSelf> and IParsable<TSelf> interfaces.
  • Automatically accept any unique prefix of an argument name as an alias.
  • Use the required keyword in C# 11 and .Net 7.0 to create required arguments.
  • Support for using properties with init accessors (only if they are required).
  • Value descriptions are now specified using the ValueDescriptionAttribute attribute. This attribute is not sealed to allow derived classes that implement localization.
  • Conveniently set several related options to enable POSIX-like conventions using the ParseOptions.IsPosix, CommandOptions.IsPosix or ParseOptionsAttribute.IsPosix property.
  • Support for multiple argument name/value separators, with the default now accepting both : and =.
  • You can now cancel parsing and still return success.
  • The remaining unparsed arguments, if parsing was canceled or encountered an error, are available through the CommandLineParser.ParseResult property.
  • Argument validators used before conversion can implement validation on ReadOnlySpan<char> for better performance.
  • Built-in support for nested subcommands.
  • The automatic version argument and command will use the AssemblyTitleAttribute if the ApplicationFriendlyNameAttribute was not used.
  • By default, only usage syntax is shown if a parsing error occurs; the help argument must be used to get full help.
  • Exclude the default value from the usage help on a per argument basis with the CommandLineArgumentAttribute.IncludeDefaultInUsageHelp property.
  • Source link integration.
  • Various bug fixes and minor improvements.

Ookii.CommandLine 3.1.1 (2023-03-29)

  • .Net Standard 2.0: use the System.Memory package to remove some downlevel-only code.
  • There are no changes for the .Net Standard 2.1 and .Net 6.0 assemblies.

Ookii.CommandLine 3.1 (2023-03-21)

Ookii.CommandLine 3.0 (2022-12-01)

IMPORTANT: Several of the changes in version 3.0 are breaking changes. There are breaking API changes as well as several behavior changes. In general, it's not expected that you'll need to make many changes, unless you were using subcommands or extensively customized the usage help. Please see the information on migrating from Ookii.CommandLine 2.x if you are upgrading an existing application.

  • Argument parsing
  • Subcommands
    • Renamed "shell commands" to "subcommands" because I never liked the old name.
    • Completely reworked subcommand support, with a brand new, more powerful and easier to use API.
    • Support for asynchronous subcommands.
    • Support for subcommand aliases.
    • You can now use subcommands from multiple assemblies at once, and apply a filter.
    • Automatically add a version subcommand if one does not exist.
  • Usage help
    • Color output support.
    • Greatly expanded usage help customization options with the new UsageWriter class, including abbreviated syntax, description list ordering and filtering, the ability to override any string or format, and more.
    • Arguments and subcommands can be hidden from the usage help.
    • Improved detection logic for the application executable name in the usage syntax.
    • Arguments that have no description but that have other information not shown in the usage syntax (like aliases, a default value, or validators) will be included in the description list by default.
    • Aliases and the default value are now shown in the usage help by default.
    • Changed the default format for how aliases are displayed.
    • With the static Parse<T>() method, you can choose to show no or partial usage help on error.
  • Updated and improved documentation.
  • More samples with descriptions and explanations.
  • Various bug fixes.
  • No longer targets .Net Framework 2.0
    • Now targets .Net Standard 2.0, .Net Standard 2.1, and .Net 6.0 and later.

Ookii.CommandLine 2.4 (2022-09-01)

  • Ookii.CommandLine now comes in a .Net 6.0 version that fully supports nullable reference types (.Net Framework 2.0 and .Net Standard 2.0 versions are also still provided).
  • New static Parse<T>() helper methods that make parsing command line arguments and printing errors and usage even easier.
  • Support for customization of the separator between argument names and values.
  • Support for customization of the separator between keys and values for dictionary arguments.
  • Support for customizing a dictionary argument's key and value TypeConverter separately.
  • Arguments can indicate they cancel parsing to make adding a -Help or -? argument easier.
  • Some small bug fixes.

Ookii.CommandLine 2.3 (2019-09-05)

  • Ookii.CommandLine now comes in both a .Net Framework 2.0 and .Net Standard 2.0 version.

Ookii.CommandLine 2.2 (2013-02-06)

  • Added support for alternative names (aliases) for command line arguments.
  • An argument’s aliases and default value can be included in the argument description when generating usage.
  • Added code snippets.

Ookii.CommandLine 2.1 (2012-02-19)

  • Added support for dictionary arguments; these are special multi-value arguments whose values take the form key=value.
  • Multi-value arguments can be specified using a read-only property of any collection type (in addition to the previous array support).
  • Multi-value properties can optionally use a separator character to allow multiple values to be specified without specifying the argument multiple times.
  • Added support for specifying a custom type converter for individual arguments.
  • When specifying the default value for an argument defined by a property you can now use any type that can be converted to the argument’s type using its type converter. This makes it possible to define default values for arguments with a type for which there are no literals.
  • A CommandLineArgumentException is thrown when the argument type’s constructor or a property setter throws an exception (instead of a TargetInvocationException).
  • The CommandLineParser no longer sets the property value for an unspecified argument with a default value of null.
  • Shell commands can take their name from the type name.
  • Shell commands can use custom argument parsing.
  • Various minor bug fixes.

Ookii.CommandLine 2.0 (2011-08-13)

  • Improved argument parsing:
    • All arguments can be specified by name.
    • Support for using whitespace to separate an argument name from its value.
    • Support for multiple argument name prefixes.
    • Support for using a custom StringComparer for argument name matching (to allow case sensitive or insensitive matching).
    • Support for use a custom CultureInfo for argument value conversion.
    • Non-positional arguments can be required arguments.
  • Properties can be used to define positional arguments.
  • More customizable generation of usage help text.
  • The new shell commands functionality lets you easily create shell utilities with multiple operations that each uses its own command line arguments.
  • The LineWrappingTextWriter class provides support for writing word-wrapped text to any output stream, with greater flexibility than the SplitLines method provided in Ookii.CommandLine 1.0.
  • Targets .Net 2.0 for wider applicability.

Upgrading from Ookii.CommandLine 1.0

Ookii.CommandLine 2.0 and newer versions have substantial changes from version 1.0 and are not designed to be backwards compatible. There are changes in argument parsing behavior and API names and usage.

Upgrading an existing project that is using Ookii.CommandLine 1.0 to Ookii.CommandLine 2.0 or newer may require substantial code changes and may change how command lines are parsed.