-
nicoco_
I think in my case it's OK, I am basically the sole user of my alpha-grade gateway component so breaking changes are quite frequent
-
lovetox
im searching for tipps about config migrations, usually it comes the situation where im not happy anymore with a certain config value, maybe its a list, and it needs to be a dict, or its a tuple with 4 items, and needs now only 3 then i migrate the config, and then it happens that if a user downgrades the old code fails because the value does not have th expected format anymore
-
lovetox
i feel like this should be a solved problem .. but im not smart enough to reinvent the wheel here
-
moparisthebest
lovetox: I've seen things that just version the config, ie leave the old one in place and put the new one at a different path
-
lovetox
yeah sounds like a solution, thanks