17
0

Accepting request 481558 from home:rjschwei:branches:devel:languages:python

- Switch to single-spec build
- Update to version 0.9.2
  + Fix regression when using ordering comparators on strings (issue 124)
- From 0.9.1
  + Raise LexerError on invalid numbers (issue 98)
  + Add support for custom functions (#100) (issue 100)
  + Fix ZeroDivisionError for built-in function avg() on empty lists (#115)
    (issue 115)
  + Properly handle non numerical ordering operators (#117) (issue 117)

  * Add support for JEP 9 which introduces "and" expressions, "unary"
    expressions, "not" expressions, and "paren" expressions
    (issue 90, issue 88, issue 82)
  * Improve lexing performance (issue 84)
  * Fix parsing error for multiselect lists (issue 86)
  * Fix issue with escaping single quotes in literal strings (issue 85)
    ordered dictionaries (issue 94)
  * Add map() function (issue 95)

OBS-URL: https://build.opensuse.org/request/show/481558
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jmespath?expand=0&rev=21
This commit is contained in:
2017-03-25 16:39:38 +00:00
committed by Git OBS Bridge
parent 39fa81ccc3
commit 4cd6ce569e
4 changed files with 60 additions and 54 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Thu Mar 16 18:43:59 UTC 2017 - rjschwei@suse.com
- Switch to single-spec build
- Update to version 0.9.2
+ Fix regression when using ordering comparators on strings (issue 124)
- From 0.9.1
+ Raise LexerError on invalid numbers (issue 98)
+ Add support for custom functions (#100) (issue 100)
+ Fix ZeroDivisionError for built-in function avg() on empty lists (#115)
(issue 115)
+ Properly handle non numerical ordering operators (#117) (issue 117)
-------------------------------------------------------------------
Mon Aug 15 14:51:56 UTC 2016 - toddrme2178@gmail.com
@@ -8,20 +21,17 @@ Mon Feb 1 11:24:14 UTC 2016 - toddrme2178@gmail.com
- Update to version 0.9.0
* Add support for new lines with tokens in an expression
* Add support for `JEP 9 <http://jmespath.org/proposals/improved-filters.html>`__,
which introduces "and" expressions, "unary" expressions, "not" expressions,
and "paren" expressions
* Add support for JEP 9 which introduces "and" expressions, "unary"
expressions, "not" expressions, and "paren" expressions
* Fix issue with hardcoded path in ``jp.py`` executable
(`issue 90 <https://github.com/jmespath/jmespath.py/issues/90>`__,
`issue 88 <https://github.com/jmespath/jmespath.py/issues/88>`__,
`issue 82 <https://github.com/jmespath/jmespath.py/issues/82>`__)
(issue 90, issue 88, issue 82)
- Update to version 0.8.0
* Improve lexing performance (`issue 84 <https://github.com/jmespath/jmespath.py/pull/84>`__)
* Fix parsing error for multiselect lists (`issue 86 <https://github.com/jmespath/jmespath.py/issues/86>`__)
* Fix issue with escaping single quotes in literal strings (`issue 85 <https://github.com/jmespath/jmespath.py/issues/85>`__)
* Improve lexing performance (issue 84)
* Fix parsing error for multiselect lists (issue 86)
* Fix issue with escaping single quotes in literal strings (issue 85)
* Add support for providing your own dict cls to support
ordered dictionaries (`issue 94 <https://github.com/jmespath/jmespath.py/pull/94>`__)
* Add map() function (`issue 95 <https://github.com/jmespath/jmespath.py/pull/95>`__)
ordered dictionaries (issue 94)
* Add map() function (issue 95)
-------------------------------------------------------------------
Wed Jan 20 19:42:39 UTC 2016 - rjschwei@suse.com