Versions Compared

Key

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

...

  1. Before a release is done, make sure that any issues that are fixed have their fix version setup correctly. Run the following JIRA query to see which resolved issues do not have their fix version set up correctly:

    Code Block
    project = sentry and resolution = fixed and fixVersion is empty
    

    The result of the above query should be empty. If some issues do show up in this query that have been fixed since the last release, please bulk-edit them to set the fix version to '1.2.0'.

  2. Move the unresolved jiras to the next release

    Code Block
    project = sentry and fixVersion = 1.2.0 and status not in( resolved, done, Accepted, Closed)
  3. You can also run the following query to make sure that the issues fixed for the to-be-released version look accurate:

    Code Block
    project = sentry and resolution = fixed and fixVersion = '1.2.0'
    
  4. Finally, check out the output of the JIRA release note tool to see which JIRAs are included in the release, in order to do a sanity check.

...