Release Process#

“Release candidates” are releases of dd-trace-py that are tagged with version strings including rc and marked in GitHub as “pre-releases”. Most of the time spent “running the release” is actually spent creating and testing release candidates. We create a release candidate, test it, and repeat until the test shows no errors or regressions.

Release candidates are based on the main branch.

The procedure described here can also be used to create patch releases (those that increment the patch version number in the major.minor.patch SemVer framework).

Prerequisites#

  1. Figure out the version of the library that you’re working on releasing.

  2. Update the pinned system-tests version with scripts/update-system-tests-version.py and commit the result

  3. Ensure the CI is green on the branch on which the release will be based.

  4. Ensure there are no SLO breaches on the release branch (main for new major/minor, major.minor branch for patch releases). See section below for details.

Pre-Release Performance Gates#

This repository is using pre-release performance quality gates.

On main or the major.minor release branch, verify that the latest CI pipeline passed the check-slo-breaches job. If any SLO is breached, the release pipeline on GitLab will be blocked. See our thresholds file(s) at bp-runner.macrobenchmarks.fail-on-breach.yml and bp-runner.microbenchmarks.fail-on-breach.yml.

There are a few ways to resolve this and unblock the release.

Prerequisite

Find the change(s) that contributed the most to performance regression. You can check from the Benchmarking Platform - Benchmarks tab and filter by project and branch to see these commits. Notify the authors in #apm-python-release to see if there are any easy fixes (less than a day of work) that can be pushed to the release branch.

  1. Merge a fix to resolve the performance regression. This should be considered first, and owned by the author(s) for the change(s) that introduced significant performance regression(s).

  2. Revert the change(s) that contributed the most to performance regression. This should be considered if the regression is not acceptable, but the fix will take longer than a day to merge to the release branch.

  3. Bump the SLO(s) to accommodate for the regressions. This should only be considered if the regressions are reasonable for the change(s) introduced (ex - new feature with expected overhead, crash fixes, major security issues, etc.). When updating the SLO thresholds, authors must add a comment to their PR justifying the trade offs. See Performance quality gates - User Guide for more details.

Instructions#

Ensure you have followed the prerequisite steps above.

  1. Draft a new GitHub release https://github.com/DataDog/dd-trace-py/releases/new

  2. If release >=x.x.1 and release branch does not exist, create the release branch:

$ git pull
$ git checkout -b X.Y vX.Y.0
$ git push -u origin X.Y
  1. Set the target commit on the GitHub release draft. For release candidates, this should generally be the latest commit on main. For minor releases where the version ends with .0, the target commit must exactly match the commit of the latest relevant release candidate. For patch releases, the target should usually be the current head of the release branch.

  2. Generate release notes from the relevant branch. For release candidates, this is usually main, and for patch releases it’s usually the x.y release branch. Copy and paste the latest section into the release’s description.

$ git pull
$ git checkout <branch>
$ reno report --branch=origin/<branch> | pandoc -f rst -t gfm --wrap=none | less
  1. Include an estimated end-of-life block at the top of the new release notes:

Estimated end-of-life date, accurate to within three months: MM-YYYY
See [the support level definitions](https://docs.datadoghq.com/tracing/trace_collection/compatibility/python/#releases) for more information.

Where the EOL month is calculated thus: <this release line’s start month> + <18 months>

  1. Make sure the “Set as pre-release” box is CHECKED if publishing a release candidate. Make sure the “Set as latest release” box is CHECKED only if publishing a new minor release or a patch release for the latest minor version. Click “save draft”.

  2. Share the link to the GitHub draft release with someone who can confirm it’s correct

  3. Click the the green “Publish release” button on the draft release. Double check that you have the correct check boxes checked and unchecked based on the release you’re about to publish. Wait for build and publish to succeed. The GitHub release will trigger the GitLab workflow that builds wheels and publishes to PyPI.

  4. Check PyPI for the release.