14
0
forked from pool/python-knack

- Update to 0.5.3:

* Removes an incorrect check when adding arguments.
  * Updates usages of yaml.load to use yaml.safe_load.
  * Fix issue with some scenarios (no args and --version)
  * Adds support for positional arguments with the .positional helper method on ArgumentsContext.
  * Removes the necessity for the type field in help.py. This information can be inferred from the class, so specifying it causes unnecessary crashes.
  * Adds support for examining the result of a command after a call to invoke. The raw object, error (if any) an exit code are accessible.
  * Fixes an issue with the default config directory. It use to be .cli and is now based on the CLI name.
  * Adds ability to specify line width for help text display.
  * Preserves logging verbosity and output format on the namespace for use by validators.
  * Adds ability to set config file name.
  * Fixes bug with argument deprecations.
- Switch to github archive to run tests

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-knack?expand=0&rev=9
This commit is contained in:
Tomáš Chvátal
2019-03-28 15:22:02 +00:00
committed by Git OBS Bridge
parent 8ce8110ac4
commit 5ad6a803e8
5 changed files with 42 additions and 34 deletions

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Thu Mar 28 15:07:06 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 0.5.3:
* Removes an incorrect check when adding arguments.
* Updates usages of yaml.load to use yaml.safe_load.
* Fix issue with some scenarios (no args and --version)
* Adds support for positional arguments with the .positional helper method on ArgumentsContext.
* Removes the necessity for the type field in help.py. This information can be inferred from the class, so specifying it causes unnecessary crashes.
* Adds support for examining the result of a command after a call to invoke. The raw object, error (if any) an exit code are accessible.
* Fixes an issue with the default config directory. It use to be .cli and is now based on the CLI name.
* Adds ability to specify line width for help text display.
* Preserves logging verbosity and output format on the namespace for use by validators.
* Adds ability to set config file name.
* Fixes bug with argument deprecations.
- Switch to github archive to run tests
-------------------------------------------------------------------
Tue Dec 4 12:49:51 UTC 2018 - Matej Cepl <mcepl@suse.com>