summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2019-01-08 09:03:34 +0100
committerAnthon van der Neut <anthon@mnt.org>2019-01-08 09:03:34 +0100
commitbdc07310846d253ddeac78f370db03df5d6e31b0 (patch)
tree960e48a41009998f6d1c32e6fb72930963672106 /CHANGES
parent619842506decc4b036e06e5753f3f7476c036d41 (diff)
downloadruamel.yaml-bdc07310846d253ddeac78f370db03df5d6e31b0.tar.gz
resolves issue #274 replace dict with collections.OrderedDict when loading0.15.85
https://bitbucket.org/ruamel/yaml/issues/274/add-a-typ-ordered-for-a-middle-ground#comment-49783394 *When this change indeed resolves your problem, please **Close** this issue*. *(You can do so using the WorkFlow pull-down (close to the top right of this page))*
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index bb6f0ae..bb25af7 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,11 @@
+[0, 15, 85]: 2019-01-08
+ - 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. (Implemented to
+ help solve an feature request by `Anthony Sottile
+ <https://bitbucket.org/asottile/>`__ in an easier way)
+
[0, 15, 84]: 2019-01-07
- fix for `CommentedMap.copy()` not returning `CommentedMap`, let alone copying comments etc.
(reported by `Anthony Sottile <https://bitbucket.org/asottile/>`__)