From 3b41aec7319827ed23d89712fd6c111ae32a10e2698545da5bb233bc6a528553 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Wed, 10 Aug 2016 16:28:39 +0000 Subject: [PATCH] Accepting request 418338 from Cloud:OpenStack:Master - update to 0.9.3: * README: Document Schema.extend * Also include README.rst in distribution. * Add missing % formatting character * Mention use of Any to allow None values * Flake8 errors resolved; Tox now running successfully * Bump to 0.9.2 * if/else conditions modified * 0.9.1 to fix missing Error import. * Don't assume a user's dict type can be instantiated. * Eliminate unnecessary SequenceItemInvalid exception. * Squashing commits into 1 * Fixes issue #118 by guarding against a TypeError: unhashable type: 'list' exception * Bump version. * Include tests in sdist. * Removed docs from master to avoid confusion * Added additional @wraps where appropriate * Added Unique and Set * Added recursive schema into README #128 * Remove setup_requires from setup.py * Added validator for datetime strings * 0.8.9 release. * Documentation made with Sphinx * Make many of the validators have useful __repr__ * Test cases for checking validation of domain less url's * Added Literal wrapper for literal comparisons. * Fixed docs for doctest * Added Documentation Link * Implement Schema.extend * Release 0.8.7. OBS-URL: https://build.opensuse.org/request/show/418338 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-voluptuous?expand=0&rev=4 --- python-voluptuous.changes | 77 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 76 insertions(+), 1 deletion(-) diff --git a/python-voluptuous.changes b/python-voluptuous.changes index 5c94824..be2bf4e 100644 --- a/python-voluptuous.changes +++ b/python-voluptuous.changes @@ -1,7 +1,82 @@ ------------------------------------------------------------------- Wed Aug 10 11:43:06 UTC 2016 - tbechtold@suse.com -- update to 0.9.3 +- update to 0.9.3: + * README: Document Schema.extend + * Also include README.rst in distribution. + * Add missing % formatting character + * Mention use of Any to allow None values + * Flake8 errors resolved; Tox now running successfully + * Bump to 0.9.2 + * if/else conditions modified + * 0.9.1 to fix missing Error import. + * Don't assume a user's dict type can be instantiated. + * Eliminate unnecessary SequenceItemInvalid exception. + * Squashing commits into 1 + * Fixes issue #118 by guarding against a TypeError: unhashable type: 'list' exception + * Bump version. + * Include tests in sdist. + * Removed docs from master to avoid confusion + * Added additional @wraps where appropriate + * Added Unique and Set + * Added recursive schema into README #128 + * Remove setup_requires from setup.py + * Added validator for datetime strings + * 0.8.9 release. + * Documentation made with Sphinx + * Make many of the validators have useful __repr__ + * Test cases for checking validation of domain less url's + * Added Literal wrapper for literal comparisons. + * Fixed docs for doctest + * Added Documentation Link + * Implement Schema.extend + * Release 0.8.7. + * Did validation for Fully qualified domain url's + * 0.8.11 + * 0.8.10 + * Sorting unittest + * Add SetTo(n) to force setting a value. Useful with Any(). + * Fix some bugs. + * Improve `repr` representation of some classes + * ExactSequence fix for item assignment + * Support bool literals. + * Fixed spelling of word + * Add python 3.5 to tox.ini test suite + * setup.py changed to support packages + * 0.9.0 + * Fixed Unique and Set tests in other python versions + * Email validator added + * Fixed Python 3.x version check by using sys.version_info + * Corrected typo + * Have iteritems work with any Mapping class that implements iteritems + * Updated url validation code for url's with no domain + * Use with statement to close file handle + * Updated README for extra keys setting + * Correctly report error location with inclusive/exclusive. + * Use https in setup + * Handle nested MultipleInvalid exceptions. + * error humanization wrappers for #140 + * Run static analysis on the exact source set + * Added package classifiers to indicate support for Python 3.x + * Add NotIn validation + * remove unneeded conditional check. + * Fixes #157 + * Update travis.yml with python 3.4, 3.5 support + * Schema.extend works only for dicts + * regex precompiled at import time + * Add validate_schema decorator + * Fix a TypeError when using a copy of dictionary fields. + * Implemented __lt__ on Marker objects + * Aliases: Or = Any, And = All + * Readme updated for incorporating url. + * Url scheme and host validation + * flake8 cleanup (removed unused import) + * Prevent individual errors from validating a list's items from being lost. + * Adds string transform for stripping whitespace + * Test cases added for email + * W503 resolution made clear + * Added correct handling of callable objects as default values + * More test cases added for FQDN url validation ------------------------------------------------------------------- Wed Apr 1 21:13:38 BST 2015 - aspiers@suse.com