Release process
How to release a new version of Pants and its plugins.
This page covers the nitty-gritty of executing a release, and is probably only interesting for maintainers. If you're interested in when and why Pants is released, please see the Release strategy page.
Prerequisites
You only need to set these up once.
Create a PGP signing key
If you already have one, you can reuse it.
You likely want to use the gpg implementation of pgp. On macOS, you can brew install gpg
. Once gpg is installed, generate a new key: https://docs.github.com/en/github/authenticating-to-github/generating-a-new-gpg-key.
Please use a password for your key!
Add your PGP key to GitHub.
Configure Git to use your PGP key.
See https://docs.github.com/en/github/authenticating-to-github/telling-git-about-your-signing-key.
Note: the last step is required on macOS.
Authenticate with the GitHub API
Ensure that you have a personal access token for your GitHub account in your .netrc
file.
machine api.github.com
login <username>
password <token>
Step 0: Preliminaries
dev
- Check for any deprecations
If this is a dev release, ensure that deprecations set to expire in the released version have been removed. To check for this, search the code for the version you're releasing. For example, git grep 2.9.0.dev0
.
If there is deprecated code that must be removed, you can either:
- Ping the person who made the deprecation to ask them to remove it.
- Remove it yourself, in a precursor PR.
- Bump the deprecation removal target back by one dev release.
a0
- Release notes for next version
When releasing an a0
version, we need to prepare the release notes for the next version:
- Create pull request adding the release notes file for the next version in
docs/notes/
, e.g. if you're releasing 2.8.0a0, createdocs/notes/2.9.x.md
.- Copy the title and template over from the prior release, e.g.
2.8.x.md
. - Delete the content, leaving just the headings, so the file is mostly empty.
- Copy the title and template over from the prior release, e.g.
- NB. this can merge after the release pull request, but should be available soon so that pull requests tht land in
main
can update it
rc
- Check for cherry-picks
If this is a release candidate, ensure that pending cherry-picks have been applied in the release branch. Cherry-picks are usually applied automatically, but this may not always succeed, so check for any pending cherry-picks, and find the relevant ones by looking at the milestone: for instance, if doing a release for 2.16, the relevant cherry-picks are those for milestone 2.16.x
or earlier.
The process may fail in one of two ways:
- The cherry-picking process failed, and tagged the PR with
auto-cherry-picking-failed
: follow the instructions in the comment on the pull request. (This likely means there are merge conflicts that require manual resolution.) - the cherry-pick hasn't (yet) run: trigger the automation manually by going to the GitHub Action, clicking on the "Run workflow" button, and providing the PR number.
Step 1: Create the release commit
The release commit is the commit that bumps the VERSION string. For dev
/a0
releases this happens in the main
branch, in the same commit that updates the release notes and the CONTRIBUTORS.md
file. For rc
and stable releases, this happens in the relevant stable branch.
Bump the VERSION
From the main
branch, run pants run src/python/pants_release/start_release.py -- --new 2.9.0.dev1 --release-manager your_github_username --publish
with the relevant version and your own GitHub username.
This will create a pull request that:
- updates
CONTRIBUTORS.md
- bumps the
VERSION
on the branch
Merge the pull request
Post the PR to the #development
channel in Slack. Merge once approved and green.
a0
- new release cycle
If you're releasing an a0
release, you must:
- create the stable branch for that version,
- identify pull requests that need changes to their release notes.
Create new branch
For example, if you're releasing 2.9.0a0
, create the branch 2.9.x
by running the command below. Make sure you are on your release commit before doing this.
$ git checkout -b 2.9.x
$ git push upstream 2.9.x
Identify pull requests needing changes
Find unmerged pull requests with release notes changes that will now be targetting the new release, and so should be updated:
-
Use this
gh
CLI command to find pull requests targettingmain
that touch any release notes file:gh pr list --limit 1000 --json url,files --base main | jq 'map(select(.files | map(.path | startswith("docs/notes/")) | any) | .url)'
-
For each of them, add a "Request changes" review that asks for an update. Suggested review text (replace
$OLD_VERSION
and$NEW_VERSION
as appropriate, e.g. if you're releasing 2.8.0a0,OLD_VERSION = 2.8
,NEW_VERSION = 2.9
):Thanks for the contribution. We've just branched for $OLD_VERSION, so merging this pull request now will come out in $NEW_VERSION, please move the release notes updates to
docs/notes/$NEW_VERSION.x.md
if that's appropriate. -
In some cases, the release note changes can remain in the old version (for example, if the pull request is a bug fix that needs to be cherry-picked).
Step 2: Tag the release to trigger publishing
Once you have merged the VERSION
bump — which will be on main
for dev
and a0
releases, and on the release branch for release candidates — tag the release commit to trigger wheel building and publishing.
First, ensure that you are on your release branch at your version bump commit.
You can reset to your release commit by running git reset --hard <sha>
.
Then, run:
./pants run src/python/pants_release/release.py -- tag-release
This will tag the release with your PGP key, and push the tag to origin, which will kick off a Release
job to build the wheels and publish them to PyPI.
Step 3: Test the release
Run this script as a basic smoke test:
./pants run src/python/pants_release/release.py -- test-release
You should also check GitHub Releases to ensure everything looks good. Find the version you released, then click it and confirm that the "Assets" list includes PEXes for macOS and Linux.
Step 4: Run release testing on public repositories
Manually trigger a run of the public repositories testing workflow, specifying the version just published as the "Pants version".
This workflow checks out various open-source repositories that use Pants and runs the given version of Pants against them, to try to validate if they can upgrade smoothly or if there's any (obvious) bugs. The workflow runs the repositories in two configurations: first with the repo's default configuration as a baseline, and then with the specified Pants version (and any additional options).
Once the workflow finishes, look through any failures and determine if there's any interesting/unknown problems, ensuring there's issues filed (and tagged with the appropriate milestone) for them. For instance, a custom plugin that is broken by a plugin API change is okay, but other sorts of breakage might not be. If there's a failure during the baseline, a similar failure during the real (non-baseline) test can be ignored, as it likely means the repository in question is broken.
Alternatively, after starting the workflow, post the link to the in-progress run in #development
in Slack, so that someone can come back to it when it does finish.
Step 5: Publish a schema in JSON Schema Store
Some editors can use JSON Schema for better completions when editing TOML files like pants.toml
.
Pants configuration file schema is published at https://www.schemastore.org/. For every stable 2.x.0
release,
a new schema needs to be generated and uploaded by submitting a PR against https://github.com/SchemaStore/schemastore.
This is an example pull request for reference: https://github.com/SchemaStore/schemastore/pull/3880.
To produce pantsbuild-<version>.json
schema file, run:
pants help-all > all-help.json
pants run build-support/bin/generate_json_schema.py -- --all-help-file=all-help.json
It may be helpful to compare the last schema file with the newly produced one to make sure there are no discrepancies
(e.g. the config values have a sensible type and the help strings are rendered adequately). You can download the
schemas of previous releases from the store website; the JSON files are available at
https://json.schemastore.org/pantsbuild-<version>.json
.
Watch out for any configuration parameters that may rely on your local environment as certain default config values will be expanded using local runtime environment which is undesirable. The script handles those known config values by keeping a list of them, however, it may need to be extended as more options with environment specific default values are added.
When Things Go Wrong
From time to time, a release will fail. It's a complex process. The first thing to do after you've exhausted your knowledge and debugging skills or patience is to contact others. You might reach out to the development or maintainers channels on Pantsbuild Slack in the absence of other ideas about whom to ask for help.