My team has this one shared component that gets involved in like every feature’s development. This year, we’re loading like 5 different features onto it, all with different timelines, and my head’s about to explode trying to figure out how to make it all fly.

How does everyone else do their software releases? Do you freeze prod and then do one big release later? Throw everything into prod during dev, hope no one sees the unreleased stuff, and just announce it later? Or something else entirely?

  • RagnarokOnline@programming.dev
    link
    fedilink
    arrow-up
    4
    ·
    4 months ago

    This isn’t what I do, but it’s my recommendation: assign a dev to be “release manager” for that feature. Make it their responsibility to monitor the branches of that feature and to carefully merge and QA them (and kick a branch back to the dev if compatibility spent fit with the other branches).

    Here’s what I actually do: try to get my feature done first and push to the integration testing branch before anyone else. This usually results in my feature getting “accidentally” overwritten, so I keep a backup of my code until we’re released to Prod.

    Release management with that many hands in the pot is just difficult.

    • treechicken@lemmy.worldOP
      link
      fedilink
      arrow-up
      6
      ·
      4 months ago

      I’m the dev that got assigned to be the release manager lol

      The project I’m on also requires deliverables from other teams that are not under my manager’s control so no idea how coordination is gonna go