You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added max_recursion_depth argument to CascadeConfig 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.
Add option for none_overrides_value: 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.