Skip to content

Creating a new Wagtail release

Matt Westcott edited this page Feb 9, 2024 · 79 revisions

Before making a new release

  • A 'stable' branch should exist in git, e.g. stable/5.1.x. Switch to that branch.
    • If making the first release candidate for a new Wagtail version, we will create this later. Use the main branch for now.
  • There should be a release notes page about the release in docs/releases/, e.g. 5.1.md.
    • Ensure that any deprecated features are mentioned in the "Upgrade considerations" section.
    • If there are a large number of upgrade considerations, consider organising them by largest impact first, and breaking them down into:
      • Changes affecting all projects
      • Deprecation of old functionality
      • Changes affecting Wagtail customisations
  • CHANGELOG.txt should contain a section for the new release.
  • The minor version of the release should be listed in the 'compatible Django / Python versions' table in docs/releases/upgrading.md.
  • Update translation files.
  • For a release candidate:
  • For a major / minor release - a "New in Wagtail x.x" page should exist on guide.wagtail.org and be linked from the help menu.
    • Sign in to https://guide.wagtail.org
    • Go to https://guide.wagtail.org/releases/latest/
    • If it already redirects to the page for the correct minor release, skip this step. Otherwise:
      • From the userbar, click "Edit this page"
      • From the three-dot menu in the header, click "Copy this page"
      • Update the page title and slug for the new release, e.g. New in Wagtail 5.1 and new-in-wagtail-5-1.
      • Make sure it's copied as a child of the "Releases" page.
      • Click "Copy this page"
      • Go to the "Releases" page in the page explorer and edit the newly-created "New in Wagtail 5.1" page.
      • Update any mentions and links of the previous version e.g. 5.0 to the current version e.g. 5.1.
      • Update the rest of the content based on the rendered release notes in the developer docs, but only include parts that are relevant for content editors.
      • Publish the page.
    • Update wagtail.admin.wagtail_hooks.register_whats_new_in_wagtail_version_menu_item so the version's value is correct, e.g. "5.1" (might be done already) and wagtail.templatetags.wagtailcore_tags.wagtail_feature_release_whats_new_link so that the link points to the page we just published.
    • Commit the changes to the stable/5.1.x branch, e.g. git commit -m "Update What's new in Wagtail version menu item to 5.1".
  • Update wagtail/__init__.py with the new version number.
    • For a release candidate: VERSION = (5, 1, 0, 'rc', 1)
    • For a major release: VERSION = (6, 0, 0, 'final', 1)
    • For a minor release: VERSION = (5, 1, 0, 'final', 1)
    • For a patch release: VERSION = (5, 1, 1, 'final', 1)
  • Update wagtail/project_template/requirements.txt with the new version number.
    • For a release candidate, use the exact version: wagtail==5.1rc1
    • For a major, minor or patch release, use a range covering the minor release (e.g. wagtail>=5.1,<5.2)
  • Commit the changes, e.g. git commit -m "Version bump to 5.1.2".
  • For a major, minor or patch release:
    • Fill in the release date, and remove any IN DEVELOPMENT text, in:
      • CHANGELOG.txt
      • the release notes page in docs/releases/
  • For a minor release:
  • Confirm that the latest revision is passing on GitHub Actions CI

You can do the above steps with your existing clone of the Wagtail repository.

Prerequisites

You will need the wheel and twine packages (pip install wheel, pip install twine from a fresh empty virtualenv will work fine) and a working Node/NPM build on your host machine.

You will also need to be authenticated with PyPI with a user account that's listed as a maintainer of the wagtail project - the sysadmin team at Torchbox have access to the shared torchbox account and can add you if necessary.

Package build

Create a fresh clone of the Wagtail repository, and check out the appropriate 'stable' branch. By creating a fresh clone, we minimise the risk of having random development files floating around the codebase that screw up the package.

If you're creating multiple releases (e.g. patch releases for different minor releases), create a fresh clone for each release. This ensures that we do not keep any files that have been moved/deleted.

git clone https://github.com/wagtail/wagtail.git
cd wagtail
git checkout stable/1.<x>.x

(Using a Vagrant dev instance will not work: running the setup.py command within Vagrant will fail because it creates symlinks, which aren't supported by Virtualbox shared folders; and running it on the host machine will fail because it will try to run the copy of node-sass in node_modules, which is built for the VM's architecture.)

From the root of the wagtail codebase, run:

nvm use
npm install
python ./setup.py sdist bdist_wheel

This will create a .tar.gz package and a .whl package in the 'dist' directory. We now need to test that these installs successfully - from a location other than wagtail root (because the presence of the wagtail directory confuses the installer), run:

mkvirtualenv wagtailinstalltest
pip install /path/to/wagtail-0.x.x.tar.gz
wagtail start myproject
cd myproject
./manage.py migrate
./manage.py runserver

and confirm that the site starts up successfully at http://localhost:8000/ . Repeat the test with the .whl package. (Note that bringing up a Vagrant VM will not work at this point, because the provisioning script will try to install a version of Wagtail that isn't on PyPI yet.)

GitHub release

From https://github.com/wagtail/wagtail/releases, click 'Draft a new release':

  • Tag version should be of the form v5.1 - the target should be the stable/5.1.x branch (in practice, for a new 5.x version this will probably be identical to main)
  • Release title should be 5.1 (without the v)
  • For the "Describe the release", we usually just paste in the CHANGELOG.txt entry
  • For a release candidate: Check the "Set as pre-release box" checkbox
  • Click "Publish release" - this will create a new git tag for the release, and a new entry on https://github.com/wagtail/wagtail/releases

PyPI

From the root of your checkout, run: twine upload dist/*

The new version should now be up on https://pypi.python.org/pypi/wagtail .

Major version bump classifier

Testing the release

  • Install it in a clean virtualenv and check that wagtail start myproject creates a codebase that starts successfully (test with Vagrant as well if necessary)
  • Bring up a fresh instance of bakerydemo with the new version set in requirements/base.txt; if successful, commit the version bump to bakerydemo master

Docs

Readthedocs will spot the addition of a release tag with a newer version number, and automatically publish that as the new 'stable' version.

If you made a mistake in the documentation before the git tag was created and would like to update the documentation for the release, you can do the following steps:

Steps
  • Delete the tag via https://github.com/wagtail/wagtail/tags
    • If a GitHub release has been created, you need to delete it before deleting the tag
  • Delete the tag locally with git tag -D v5.0.1
  • Create a new tag with git tag v5.0.1
  • Push the new tag with git push upstream --tags
  • Trigger a new rebuild of the documentation for the release's branch on readthedocs

releases.wagtail.org

For a release candidate: you can skip this section.

Once the new release is out, please update https://releases.wagtail.org/latest.txt accordingly. You'll need AWS credentials for the S3 bucket and Cloudfront cache, which are held by the Torchbox sysadmins.

Set up the AWS client, if you haven't already - pip install awscli, then aws configure and enter the credentials.

Edit scripts/latest.txt with the new version details: version is the newest version, url is its release notes page, and minorUrl is the release notes page for the corresponding minor version, e.g. 2.15 for 2.15.1. (This is shown to users who are running an earlier minor version, so that they see the changelog for the whole minor release rather than just the .1 patch). If this is a new release (major, minor or patch) within an LTS branch, update the lts section too. Then, with the AWS client configured, run:

cd wagtail/scripts
./latest.sh put latest.txt

(It will take up to a day for changes to propagate to the Cloudfront cache. If you need it to update faster than that, someone with access to the AWS web console can purge it - the relevant operation to perform is "Create invalidation".)

The SSL certificates for releases.wagtail.org and releases.wagtail.io needs to be manually renewed once a year: https://projects.torchbox.com/projects/sysadmin/notebook/releases.wagtail.io.md

Post-release

Housekeeping for the next release

This is likely only relevant if you've just released an RC release.

Switch back to the main branch of your Wagtail development clone. Make sure it's up-to-date by running git pull upstream main.

Create and switch to a new branch from main, e.g. admin/start-wagtail-5.2.

Update deprecated features

  • Delete features deprecated in this release
  • Update wagtail.utils.deprecation

For example, let's say we are releasing Wagtail 6.0:

  1. Look for RemovedInWagtail60Warning messages and remove the features they are warning about
  2. In wagtail.utils.deprecation:
    • Delete RemovedInWagtail60Warning
    • Change RemovedInWagtail70Warning to a DeprecationWarning
    • Create a new warning called RemovedInWagtail80Warning which inherits from PendingDeprecationWarning
  3. Look for RemovedInWagtail60, which may exist in client-side code that needs to be removed but does not emit a deprecation warning.

Drop support for old versions of Django

Search the code base for django.VERSION and DJANGO_VERSION. Remove any code for versions of Django that are no longer supported in future releases. Look in setup.py to check which versions of Django are currently supported.

Remove old versionadded / versionchanged notes in the docs

versionadded and versionchanged notes for old versions of Wagtail should be removed from the docs. These notes are kept for two releases. If Wagtail 6.2 had just been released, versionadded and versionchanged notes from version 6.1 should be dropped. This will leave notes in the docs only for the stable/6.1.x and stable/6.2.x branches, with notes added for 6.3 being added for the next release (the main branch).

Bump the version

  • Update wagtail/__init__.py with the new version number, e.g. VERSION = (5, 2, 0, 'alpha', 1)
  • Update wagtail/project_template/requirements.txt with the new version number, e.g. wagtail==5.2a0
  • Update wagtail.admin.wagtail_hooks.register_whats_new_in_wagtail_version_menu_item so the version's value is correct, e.g. "5.2".
  • Add a row for the new version to the compatibility table in docs/releases/upgrading.md
  • Commit the changes e.g. git commit -m "Version bump to start work on 5.2"

Set up release notes

Update CHANGELOG.txt with a new section:

5.2 (xx.xx.xxxx) - IN DEVELOPMENT
~~~~~~~~~~~~~~~~

 * ...

Create a new file in docs/releases/ with the following template:

Template
# Wagtail 5.2 release notes - IN DEVELOPMENT

_Unreleased_

```{contents}
---
local:
depth: 1
---
```

## What's new


### Other features

 * ...

### Bug fixes

 * ...

### Documentation

 * ...

### Maintenance

 * ...


## Upgrade considerations - changes affecting all projects

## Upgrade considerations - deprecation of old functionality

## Upgrade considerations - changes affecting Wagtail customisations

## Upgrade considerations - changes to undocumented internals

Update docs/releases/index.rst to include the new version.

Update the Wagtail/Django/Python version compatibility table in docs/releases/upgrading.md to include the new version.

Commit the changes e.g. git commit -m "Set up release notes for 5.2"

Make a new PR

Make a new PR from this branch. Core team member approval is optional.

See https://github.com/wagtail/wagtail/pulls?q=is%3Apr+is%3Aclosed+in%3Atitle+housekeeping+start for past examples.

GitHub Projects for release planning

We use GitHub Projects to plan work scheduled for a specific release.

To plan the work for a new release,

  1. Go to our template Wagtail X.Y* release planning and click "Use this template"
  2. Create a new copy with the appropriate name, for example, "Wagtail 23.4 release planning"
  3. Go to your copy’s settings, and set:
  • A Short description mentioning the target month for the release.
  • Visibility: set to Public
  • Under Manage Access, add @wagtail/release-sprinters with Admin access.

If moving from a previous release, you also need to:

  1. Transfer all the issues in the Post-release sprint, adding them to the new release’s "Sprint 0". Go to the GitHub Issues and Pull Requests listings, filter by project, and set all items to the new project. Then manually copy over the status and estimates.
  2. Transfer all issues in Backlog , adding them to the new project’s Backlog.
  3. Transfer all Notes (draft issues). This needs to be done manually.
Clone this wiki locally