jdev - 2022-08-18


  1. 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

  2. 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

  3. lovetox

    i feel like this should be a solved problem .. but im not smart enough to reinvent the wheel here

  4. 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

  5. lovetox

    yeah sounds like a solution, thanks