woocommerce/plugins/woocommerce-blocks/docs/releases
Darren Ethier 0ff1db36f4 2.6.0 followups for release process etc. (https://github.com/woocommerce/woocommerce-blocks/pull/2598)
* Add a pull request template for releases

* add testing instructions for 2.6.0 in a new testing/releases folder

* add create todo list button and fixt typo

* Add additional notes to release process

- Include about creating a release pull request and the template to use.
- Include about the process for creating the package update bump in WooCommerce core.

* add testing docs for 2.6.1 release

* Apply suggestions from code review

Co-authored-by: Mike Jolley <mike.jolley@me.com>
Co-authored-by: Albert Juhé Lluveras <contact@albertjuhe.com>

* improve wording to account for merging changes to master from the release branch

* Changes to pull request template

- make checklist more assertive instead of inquisitive.
- Provide more direction via notes and leading text in the template.
- include section on devnotes.

* remove section on updating the wiki

Co-authored-by: Mike Jolley <mike.jolley@me.com>
Co-authored-by: Albert Juhé Lluveras <contact@albertjuhe.com>
2020-06-03 09:39:48 -04:00
..
readme.md 2.6.0 followups for release process etc. (https://github.com/woocommerce/woocommerce-blocks/pull/2598) 2020-06-03 09:39:48 -04:00
wordpress-update-testing-checklist.md Re-organise docs and add WP update instructions (https://github.com/woocommerce/woocommerce-blocks/pull/1691) 2020-01-31 12:48:11 +00:00

readme.md

Releases

This document outlines the process of releasing new versions of the blocks plugin.

Prerequisites - what you need to release WooCommerce Blocks

  • You should be set up for development - for more info see this doc.
  • Install & set up GitHub hub tools.
  • Configure a GitHub token for release scripts to use.
    • https://github.com/settings/tokens
    • Select the following permissions:
      • admin:org
      • public_repo
      • read:user
    • Ensure your token is available to scripts, e.g. export GH_API_TOKEN={YOUR-TOKEN} or similar.
  • Get WPORG plugin svn commit access - ask a team member.

Outcome: You are equipped to ship a release!

Release process

Lead-up to release

Ensure release development is complete

  • Github milestones are used for all releases. We do releases every two weeks from the latest release milestone - example
  • If a patch release is needed, then the milestone for the patch release is created and a decision will be made whether it just includes cherry-picked changes, or all the changes currently slated from the current release milestone. If the latter, then all the issues and pulls in the current release milestone are moved to the patch release, and the the release is built from the patch release branch rebased on master. In most cases, patch releases will involve cherry-picking.
  • Ensure all issues/PRs intended for this release are merged, closed and linked to release.
  • All PRs should have changelog entry, or skip-changelog tag.
  • Check with the team to confirm any outstanding or in progress work.

Note: changelog should be formatted like this in PR description. Note the preceding > - this is required by changelog script.

### Changelog

> bug: Fix bug in Safari and other Webkit browsers that was causing the All Products block to show 0 results when resetting the sort value.

Outcome: Team is aware of release and in agreement about what fixes & features are included.

Ensure release branch includes all relevant fixes

  • Make release branch (if needed).
    • For major and minor releases, create branch: release/X.X.
    • For patch releases, the branch should already exist.

Create a release pull request

Using the release pull request template, create a pull request for the release branch you just created. This pull request will have changes merged to master but might not be a straight merge if it contains cherry-picked commits. The pull request also contains the checklist to go over as a part of the release along with being a place to contain all planning/communication around the release. The checklist should be completed and the pull request has an approved review from at least one team member before you do the Github deploy or release the plugin to WordPress.org.

Patch releases against latest master

If it's determined a patch release will include the latest master:

  • Ensure your local checkout is updated to the tip of the release branch.
  • Rebase the release branch for the patch release against master.
  • Move all closed issues and pulls from the current release milestone into the patch release milestone.
  • Push the release branch to origin (so changes are in GitHub repo).

Patch releases with cherry-picking.

This is for releases where just fixes specific to the branch are released and not the latest changes in master.

  • Ensure your local checkout is updated to the tip of the release branch.
  • Cherry pick relevant PRs into the release branch:
  • If PR is already labelled status: cherry-picked 🍒 then continue to next PR.
  • Ideally, use GitHub Hub to cherry pick the PR - hub cherry-pick {PR-COMMIT-URL}.
  • If there are serious conflicts or extensive differences between master and release branch, you may need to take more care:
    • Manually cherry pick individual commits using git - git cherry-pick {COMMIT-HASH}.
    • Or in some cases, manually craft a new PR with appropriate changes, targeting release branch.
  • Push the release branch to origin (so changes are in GitHub repo).
  • Label the PR: status: cherry-picked 🍒.

Minor/Major releases

  • Ensure your local checkout is updated to the tip of the release branch.

Outcome: Release branch has all relevant changes merged & pushed and there is a corresponding release pull request created for the release.

Prepare release

Ensure release branch readme is up to date

  • Run changelog script $ npm run changelog to get changelog txt for readme. Changelog content will be output to screen by script.
    • The above script will automatically generate changelog entries from a milestone (you will be asked about the milestone name in the script).
  • Add changelog section for release, e.g. = 2.5.11 - 2020-01-20 =.
  • Copy-paste the changelog content into readme.txt.
  • Make any other changes to readme as needed - e.g. support versions changing, new blocks.
  • Push readme changes to release branch on origin repo.
    • Note: you can push your readme changes directly to branch no need for a PR & review process.

Outcome: Release branch has readme.txt is updated with release details.

Build zip & smoke test

  • Ensure you are on the tip of the release branch, e.g. git pull origin release/2.5
  • Update dependencies $ npm ci.
  • Run a production build - $ npm run build.
  • Run package script to get a zip to test $ npm run package-plugin.
  • Smoke test built release zip:
    • At least one other person should test the built zip - ask a teammate to help out.
    • Test in a clean environment, e.g. Jurassic.Ninja site.
    • Test existing WooCommerce Blocks content works correctly after update (no block validation errors).
    • Test to confirm blocks are available and work correctly in oldest supported WordPress version (e.g. 5.0).
    • Confidence check - check blocks are available and function.
    • Test to confirm new features/fixes are working correctly.
    • Smoke test test a cross section of core functionality.
    • Tests performed should be recorded and listed in the release pull request.
  • Ask a team member to review the changes in the release pull request and for anyone who has done testing that they approve the pull request. Remember release pull requests are just used for tracking the release and are not merged into master.

Outcome: Confident that source code is ready for release: intended fixes are working correctly, no release blockers or build issues.

Release!

Tag release on GitHub

  • Prepare tagged release on github $ npm run deploy.
    • Note: the script automatically updates version numbers (commits on your behalf).
  • Edit release, add changelog info to Github release notes.
  • Check release repo tag is correct - checkout, smoke test/confidence check.

Outcomes: Version numbers updated in source code & developers can test tagged release.

Release to WPORG

  • Run $ npm run release. This script clones a copy of the source code to your home folder, and outputs an svn command to push release up to WPORG.
  • Push release to WPORG using svn.
    • Run generated svn command to commit to WPORG svn repo.
      • The command should look like this: cd /Users/{YOU}/blocks-deployment/woo-gutenberg-products-block-svn && svn ci -m "Release 2.5.11, see readme.txt for changelog."
    • Commit should complete successfully with a message like Committed revision 2231217..
  • Confirm that the WPORG release is updated and correct:

Outcome: Customers can install/update via WPORG; WPORG plugin page is up to date.

After release

Update master with release changes

  • Merge the release branch back into master (without the branch being up to date with master). This may have merge conflicts needing resolved if there are cherry-picked commits in the release branch.
  • Do not delete the branch (release branches are kept open for potential patch releases for that version)
  • For major & minor releases, update version on master with dev suffix, e.g. 2.6-dev.

Clean up release milestone / Zenhub

  • Edit the milestone and add the current date as the due date (this basically is used for easy reference of when the milestone was completed).
  • Close the milestone.
  • If you didn't release a patch release, create a milestone for the next minor release.
  • Close any epics that are completed as of this release and remove any unfinished issues in that from the epic.

Create pull request for updating the package in WooCommerce core.

If the tagged release should be updated in WooCommerce core, do this immediately following our release.

  • Create the pull request in the WooCommerce Core Repository that bumps the package version for the blocks package to the version being pulled in.
  • Copy the release pull request notes for that tag (and merge any notes from previous tags if you're bumping up from non consecutive versions) into the pull request description.
  • Run through the testing checklist to ensure everything works in that branch for that package bump. Note: Testing should include ensuring any features/new blocks that are supposed to be behind feature gating for the core merge of this package update are working as expected.
  • Verify and make any additional edits to the pull request description for things like: Changelog to be included with WooCommerce core, additional communication that might be needed elsewhere, additional marketing communication notes that may be needed etc.
  • After the checklist is complete and the testing is done, it will be up to the WooCommerce core team to approve and merge the pull request.

Outcome: The package is updated in WooCommerce core frequently and successfully merged to WooCommerce master as a stable release..

Appendix: Versions

We have major, minor and patch releases.

For example:

  • version == 2.5.11
    • 2 == major version; has breaking changes or major new features
    • 5 == minor version; has new features
    • 11 == patch, aka point / revision / fix; has bug fixes and improvements to existing features
  • 2.0 is a major release
  • 2.5 is a minor release
  • 2.5.11 is a patch release

There are some differences to our release process for each kind of release - these are detailed in the steps above.

Appendix: updating a specific file on WPORG

Sometimes, we need to update a single file in WordPress.org without wanting to do a full release, for example, updating the readme.txt versions or descriptions. In order to do that, refer to the Editing Existing Files section of the Subversion guide in developer.wordpress.org or follow these steps:

  1. Checkout the plugin repo:
$ svn co "http://plugins.svn.wordpress.org/woo-gutenberg-products-block/"
$ cd woo-gutenberg-products-block
  1. Modify the files you want to change in trunk or tags/x.y.z.

  2. Check your changes with:

$ svn stat
$ svn diff
  1. Commit the changes to the server:
$ svn ci -m "Updated readme.txt description"