Skip to content

Commit

Permalink
Prep v3.6.9
Browse files Browse the repository at this point in the history
  • Loading branch information
wwkimball committed Nov 5, 2022
1 parent e3c94e9 commit 33dcba9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
3.6.9:
Enhancements:
* Partial support for updating bare Python dict and Python's native
collections.OrderedDict data structures was removed in version 3.6.8 because
compatible YAML/EYAML/JSON data never presented as these data types and if
anyone ever attempted to update a key by reference in a dict or
collections.OrderedDict, it would cause a Python stack dump due to neither
supporting the required insert method, which is provided only by ruamel.yaml.
This version not only restores this capability, but also solves the issue of
missing support for the insert logic, where applicable. It also adds support
for the ruamel.yaml.compat.ordereddict type. Thanks to
https://github.com/tsinggggg for requesting this feature be added!

3.6.8
Bug Fixes:
* Changes to format and value of child nodes under Anchored Hashes (maps/dicts)
Expand Down
2 changes: 1 addition & 1 deletion yamlpath/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Core YAML Path classes."""
# Establish the version number common to all components
__version__ = "3.6.8"
__version__ = "3.6.9"

from yamlpath.yamlpath import YAMLPath
from yamlpath.processor import Processor

0 comments on commit 33dcba9

Please sign in to comment.