Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 1.56 KB

RELEASE.md

File metadata and controls

18 lines (17 loc) · 1.56 KB

Cutting a Jaeger UI release

  1. Determine the version for the release.
    • Follow semver.org to determine the new version for Jaeger UI.
      • Review all changes since the last release to determine how, if at all, any externally facing APIs are impacted. This includes, but is not limited to, the UI config and URL routes such as deep-linking and configuring the embedded mode.
    • Preface the version with a "v", e.g. v1.0.0.
  2. Create and merge, per approval, a PR which preps the release.
    1. The PR title should match the format "Preparing release vX.Y.Z".
    2. CHANGELOG.md
      • Change the version of the current release from "Next (unreleased)" to "vX.Y.Z (Month D, YYYY)" where "vX.Y.Z" is the semver for this release.
      • Make sure all relevant changes made since the last release are present and listed under the current release. scripts/get-changelog.js might be useful.
      • If necessary, add a note detailing any impact to externally facing APIs.
    3. Update packages/jaeger-ui/package.json#version to refer to the version being released.
  3. Create a GitHub release.
    • The tag and release must refer to the commit created when the PR from the previous step was merged.
    • The tag name for the GitHub release should be the version for the release. It should include the "v", e.g. v1.0.0.
    • The title of the release match the format "Jaeger UI vX.Y.Z".
    • Copy the new CHANGELOG.md section into the release notes.