Release Checklist¶
This document is intended for Nautobot maintainers and covers the steps to perform when releasing new versions.
Minor Version Bumps¶
Update Requirements¶
Required Python packages are maintained in two files: pyproject.toml
and poetry.lock
.
The pyproject.toml
file¶
Python packages are defined inside of pyproject.toml
. The [tool.poetry.dependencies]
section of this file contains a list of all the packages required by Nautobot.
Where possible, we use tilde requirements to specify a minimal version with some ability to update, for example:
This would allow Poetry to install djangorestframework
versions >=3.12.2
but <3.13.0
.
The poetry.lock
file¶
The other file is poetry.lock
, which is managed by Poetry and contains package names, versions, and other metadata.
Each of the required packages pinned to its current stable version. When Nautobot is installed, this file is used to resolve and install all dependencies listed in pyproject.toml
, but Poetry will use the exact versions found in poetry.lock
to ensure that a new release of a dependency doesn't break Nautobot.
Warning
You must never directly edit this file. You will use poetry update
commands to manage it.
Run poetry update
¶
Every minor version release should refresh poetry.lock
, so that it lists the most recent stable release of each package. To do this:
- Review each requirement's release notes for any breaking or otherwise noteworthy changes.
- Run
poetry update <package>
to update the package versions inpoetry.lock
as appropriate. - If a required package requires updating to a new release not covered in the version constraints for a package as defined in
pyproject.toml
, (e.g.Django ~3.1.7
would never installDjango >=4.0.0
), update it manually inpyproject.toml
. - Run
poetry install
to install the refreshed versions of all required packages. - Run all tests and check that the UI and API function as expected.
Hint
You may use poetry update --dry-run
to have Poetry automatically tell you what package updates are available and the versions it would upgrade.
Update Static Libraries¶
Update the following static libraries to their most recent stable release:
Link to the Release Notes Page¶
Add the release notes (docs/release-notes/X.Y.md
) to the table of contents within mkdocs.yml
, and point index.md
to the new file.
Verify and Revise the Install Documentation¶
Follow the install instructions to perform a new production installation of Nautobot.
The goal of this step is to walk through the entire install process as documented to make sure nothing there needs to be changed or updated, to catch any errors or omissions in the documentation, and to ensure that it is current with each release.
Tip
Fire up mkdocs serve
in your development environment to start the documentation server! This allows you to view the documentation locally and automatically rebuilds the documents as you make changes.
Commit any necessary changes to the documentation before proceeding with the release.
Close the Release Milestone¶
Close the release milestone on GitHub after ensuring there are no remaining open issues associated with it.
All Releases¶
Verify CI Build Status¶
Ensure that continuous integration testing on the develop
branch is completing successfully.
Bump the Version¶
Update the package version using poetry version
. This command shows the current version of the project or bumps the version of the project and writes the new version back to pyproject.toml
if a valid bump rule is provided.
The new version should ideally be a valid semver string or a valid bump rule: patch
, minor
, major
, prepatch
, preminor
, premajor
, prerelease
. Always try to use a bump rule when you can.
Display the current version with no arguments:
Bump pre-release versions using prerelease
:
For major versions, use major
:
For patch versions, use minor
:
And lastly, for patch versions, you guessed it, use patch
:
Please see the official Poetry documentation on version
for more information.
Update the Changelog¶
Create a release branch off of develop
(git checkout -b release-1.4.3 develop
)
Generate release notes with towncrier build --version 1.4.3
and answer yes
to the prompt Is it okay if I remove those files? [Y/n]:
. This will update the release notes in nautobot/docs/release-notes/version-1.4.md
, stage that file in git, and git rm
all of the fragments that have now been incorporated into the release notes.
Run invoke markdownlint
to make sure the generated release notes pass the linter checks.
Check the git diff to verify the changes are correct (git diff --cached
).
Commit and push the staged changes.
Important
The changelog must adhere to the Keep a Changelog style guide.
Submit Pull Requests¶
Submit a pull request to merge your release branch into develop
. Once merged, submit another pull request titled "Release vX.Y.Z" to merge the develop
branch into main
. Copy the documented release notes into the pull request's body.
Once CI has completed on the PR, merge it.
Create a New Release¶
Draft a new release with the following parameters.
- Tag: Current version (e.g.
v1.0.0
) - Target:
main
- Title: Version and date (e.g.
v1.0.0 - 2021-06-01
)
Copy the description from the pull request to the release.
Publish to PyPI¶
Now that there is a tagged release, the final step is to upload the package to the Python Package Index.
First, you'll need to render the documentation.
Second, you'll need to build the Python package distributions (which will include the rendered documentation):
Finally, publish to PyPI using the username __token__
and the Nautobot PyPI API token as the password. The API token can be found in the Nautobot maintainers vault (if you're a maintainer, you'll have access to this vault):
Publish Docker Images¶
Build the images locally:
for ver in 3.7 3.8 3.9 3.10; do
export INVOKE_NAUTOBOT_PYTHON_VER=$ver
invoke buildx --target final --tag networktocode/nautobot-py${INVOKE_NAUTOBOT_PYTHON_VER}:local
invoke buildx --target final-dev --tag networktocode/nautobot-dev-py${INVOKE_NAUTOBOT_PYTHON_VER}:local
done
Test the images locally - to do this you need to set the following in your invoke.yml
:
Warning
You should not include docker-compose.dev.yml
in this test scenario!
for ver in 3.7 3.8 3.9 3.10; do
export INVOKE_NAUTOBOT_PYTHON_VER=$ver
invoke stop
invoke integration-tests
done
Push the images to GitHub Container Registry and Docker Hub
docker login
docker login ghcr.io
for ver in 3.7 3.8 3.9 3.10; do
export INVOKE_NAUTOBOT_PYTHON_VER=$ver
invoke docker-push main
done
Bump the Development Version¶
Use poetry version prepatch
to bump the version to the next release and commit it to the develop
branch.
For example, if you just released v1.1.0
: