All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Added
max_recursion_depth
argument toCascadeConfig
to limit the depth of hierarchically updating nested dictionaries. When the maximum nesting depth is exceeded, the new dictionary will be used as-is, overwriting any previous values under that dictionary tree.
- Fix previous broken build (did not include changes)
- Fix parsing of empty dictionaries and
False
configuration values. These would previously be overridden by the downstream configuration.
- Add none_overrides_value option. Before this change, None values would unexpectedly override previously configured values. Now, the previous value will be retained if newer values are None. The old behavior can be re-enabled with by setting the none_overrides_value argument of CascadeConfig to True.
- Initial release