Skip to content

Latest commit

 

History

History
43 lines (25 loc) · 2.55 KB

release-process.md

File metadata and controls

43 lines (25 loc) · 2.55 KB

Release process

Overview

While our release schedule is flexible, our general strategy is to release several larger improvements inside each stable release. In order to provide faster access to fixes and enhancements between main releases we provide release candidates which are published on every merge into main.

While the versioning and publishing of our primitives is mostly automated via scripts, updates to our documentation website is currently a manual process. We are working to improve this but for now this outline should help contributors with the process.

Release strategy

We track versions during the pull request process. As features are added, modified or improved it's important to keep track of these via versioning.

Tracking version changes

Run pnpm changeset to mark the appropriate type of change for those packages. This is later consumed when publishing new versions. Be sure to check-in these files along with your code changes.

Publishing a stable release

  1. Checkout the stable branch and pull the latest changes from main
  2. Push the changes to stable. This will trigger the Changeset action, which will create a new release PR.
  3. Review the release PR, ensure all tests pass and make any necessary changes.
  4. Merge the PR. This will trigger the Changeset action to publish the new version to npm.

Release candidates

Release candidates are automatically published when new changes are merged into main.

Updating documentation

Our documentation is in a separate repository and updating it is a three step process:

  1. Write and update the change log
  2. Bump package version/s and create / update the pages for each version change
  3. Perform documentation updates and remove live demos from previous versions

Steps 2 and 3 are typically raised as separate pull requests to make changes easier to review.

Creating new version pages

This is as simple as duplicating the latest page and updating the version number to match the release. Some things to keep in mind:

  • We only provide live demos for the latest version of a package so you must remember to disable/remove the previous live demo (this avoids breaking changes affecting old versions in our docs)
  • If the incoming version is a patch which doesn't require a docs update then you can simply change the page name to match the new version rather than duplicating the same content