Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Check for latest version of dependent libraries and update if needed.
  2. Review open issues in JIRA for the release. All issues should be resolved (with code committed) or moved to a future release. 
  3. For Registry: Update Config/VERSION, if not already updated, and make sure the version is defined in UpgradeVersionShell::$versions.
  4. For Match: Update config/VERSION, if not already updated. Make sure the version is defined in UpgradeVersionCommand::$versions.
  5. Check for commits to the most recent hotfix branch that were not released in a patch release. (This may happen if, for example, the latest patch release was canceled with the intent to skip to the next feature release instead.) If the most recent hotfix commit is not in develop, merge the hotfix branch into develop.
  6. For Registry: on the develop branch, update the LABEL in the files container/aws/buildspec/aws_buildspec.yml  and container/aws/buildspec/aws_buildspec_manifest.yml to the intended release number.
  7. For Match: on the develop branch, update the LABEL in the file container/aws_buildspec.yml to the intended release number.
  8. Merge develop into main (assuming you're already following both)

    Code Block
    $ git switch develop
    $ git pull origin develop
    $ git switch main
    $ git pull origin main
    $ git merge develop
    (Make sure everything looks OK)
    $ git push origin main
    


  9. Tag the release:

    Code Block
    $ git tag -a 0.8.5 -m 'COmanage Registry v0.8.5'
    $ git push origin 0.8.5
    


  10. Notify the lead of the packaging/container team of the new tag.
  11. The lead of the packaging/container team builds new container images.
  12. Wait for notification from the packaging/container team that packages/images are ready.
  13. Test the release, including upgrading QA servers and installing/deploying from scratch.
  14. Update download link at Directory InstallationRegistry Installation - Source, or Match Installation - Source.
  15. Update TAP release page.
  16. Review Registry Data Model or Match Data Model and update the status of tables as appropriate.
  17. In JIRA, flag the release as "Released" with today's date.
  18. Update Release History.
  19. Update Homeincluding the Download link and About This Release.
  20. Update the COmanage Product Roadmap.
  21. If there are any unrelated bug fixes in the prior hotfix series (#.#-1.#), simultaneously release that as the "last maintenance release" of the previous series.
  22. Announce (to comanage-users and comanage-announce). If appropriate and approved, credit additional funding sources.
  23. Begin the Synchronous Code Update Checkpoint process.

...