summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2023-05-02 08:07:26 +0200
committerAnthon van der Neut <anthon@mnt.org>2023-05-02 08:07:26 +0200
commitb87bbd1afd0c4a644d8ecf6e90561b1910ac57c4 (patch)
tree861cb398aabc20692375747004f9bde429b740be /CHANGES
parentd8f939cfb75f05787eb363e4e919fafea1f439f7 (diff)
downloadruamel.yaml-b87bbd1afd0c4a644d8ecf6e90561b1910ac57c4.tar.gz
fix readme, xfail spec_6_260.17.22
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES24
1 files changed, 24 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index f59a8b8..9a1bba8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,27 @@
+[0, 17, 22]: 2023-05-02
+
+ - fix issue 449 where the second exclamation marks got URL encoded (reported
+ and fixing PR provided by `John Stark <https://sourceforge.net/u/jods/profile/>`__)
+ - fix issue with indent != 2 and literal scalars with empty first line
+ (reported by wrdis on `StackOverflow <https://stackoverflow.com/q/75584262/1307905>`__)
+ - updated __repr__ of CommentedMap, now that Python's dict is ordered -> no more
+ ordereddict(list-of-tuples)
+ - merge MR 4, handling OctalInt in YAML 1.1
+ (provided by `Jacob Floyd <https://sourceforge.net/u/cognifloyd/profile/>`_)
+ - fix loading of `!!float 42` (reported by Eric on
+ `Stack overflow <https://stackoverflow.com/a/71555107/1307905>`_)
+ - line numbers are now set on `CommentedKeySeq` and `CommentedKeyMap` (which
+ are created if you have a sequence resp. mapping as the key in a mapping)
+ - plain scalars: put single words longer than width on a line of their own, instead
+ of after the previous line (issue 427, reported by `Antoine Cotten
+ <https://sourceforge.net/u/antoineco/profile/>`_). Caveat: this currently results in a
+ space ending the previous line.
+ - fix for folded scalar part of 421: comments after ">" on first line of folded
+ scalars are now preserved (as were those in the same position on literal scalars).
+ Issue reported by Jacob Floyd.
+ - added stacklevel to warnings
+ - typing changed from Py2 compatible comments to Py3, removed various Py2-isms
+
[0, 17, 21]: 2022-02-12
- fix bug in calling `.compose()` method with `pathlib.Path` instance.