15
0

Accepting request 669501 from home:mimi_vx:branches:devel:languages:python

- update to 0.15.87
 * fix problem with empty lists and the code to reinsert merge keys
 * reinsert merge key in its old position
 * fix for issue with non-ASCII anchor names
 * fix for issue when parsing flow mapping value starting with colon
 * the types used by `SafeConstructor` for mappings and sequences can
    now by set by assigning to `XXXConstructor.yaml_base_dict_type`
    (and `..._list_type`), preventing the need to copy two methods
    with 50+ lines that had `var = {}` hardcoded.
 * fix for `CommentedMap.copy()` not returning `CommentedMap`
 * fix for bug in roundtripping aliases used as key
 * anchors and aliases on scalar int, float, string and bool are now preserved.
     Anchors do not need a referring alias for these
 * fix issue saving methods of metaclass derived classes

OBS-URL: https://build.opensuse.org/request/show/669501
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ruamel.yaml?expand=0&rev=23
This commit is contained in:
Tomáš Chvátal
2019-01-29 11:13:45 +00:00
committed by Git OBS Bridge
parent 6797ee15cf
commit a340ce1ae1
4 changed files with 23 additions and 5 deletions

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Tue Jan 29 09:59:19 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 0.15.87
* fix problem with empty lists and the code to reinsert merge keys
* reinsert merge key in its old position
* fix for issue with non-ASCII anchor names
* fix for issue when parsing flow mapping value starting with colon
* the types used by `SafeConstructor` for mappings and sequences can
now by set by assigning to `XXXConstructor.yaml_base_dict_type`
(and `..._list_type`), preventing the need to copy two methods
with 50+ lines that had `var = {}` hardcoded.
* fix for `CommentedMap.copy()` not returning `CommentedMap`
* fix for bug in roundtripping aliases used as key
* anchors and aliases on scalar int, float, string and bool are now preserved.
Anchors do not need a referring alias for these
* fix issue saving methods of metaclass derived classes
-------------------------------------------------------------------
Tue Dec 4 10:06:58 UTC 2018 - Ondřej Súkup <mimi.vx@gmail.com>