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
config: replace list append with smart merging dict-like lists
Previously, a CLI options used allow_append=True to allow setting
+components etc options without removing all existing entries. This
works when adding a single option, but breaks when adding multiple - as
later option will override earlier options (even with different name).
Replace this special CLI handling, with a more generic merging of
dict-like lists. Specifically, when merging two lists and both consists
of only one-key dicts (or just strings), merge them similar to merging
dicts, but preserving the structure.
0 commit comments