A typical release goes like this:
- You must be a member of the
@base-uiorg in npm to publish the release. - Set up your npm authToken by logging into npm (
npm login) . This will save a token to~/.npmrcas a line that looks like this://registry.npmjs.org/:_authToken=npm_000000000000000000000000000000000000 - Generate a GitHub Token at https://github.com/settings/personal-access-tokens/new and add it to your shell rc script (either
.bashrcor.zshrc) asGITHUB_TOKEN.- When creating the token, choose mui as the Resource owner.
- Set expiration to 366 days or less.
- Set Public Repositories (read-only) in Repository access.
- Organization permissions are not required.
- Update the root
/package.json's version. - Generate the changelog with
pnpm release:changelogThe output must be prepended to the top levelCHANGELOG.md. Runpnpm release:changelog --helpfor more information. If your GitHub token is not in your env, pass it as--githubToken <my-token>to the above command. - Update the changelog as necessary. In particular, describe all the breaking changes.
- Generate the changelog in a format suitable for the docs with
pnpm release:changelog:docs. - Create a new release page at
docs/src/app/(docs)/react/overview/releases/<version-slug>/page.mdx(where<version-slug>uses hyphens, for example,v1-1-0for v1.1.0). Paste the generated changelog there, following the format of existing release pages (title,<Subtitle>with the date,<Meta>tag). - Copy the changes made in point 3 to the new release page.
- Add a new entry to
docs/src/data/releases.tswith the version, versionSlug, date, and highlights. Move thelatest: trueflag to the new release if appropriate. - Run
pnpm release:version. Keep the package versions of stable public packages the same as the rootpackage.jsonversion. - Open a PR with changes and wait for review and green CI.
- Merge the PR once the CI is green and it has been approved.
-
Run
pnpm release:publish. You may be asked to authenticate with GitHub when running the command for the first time or after a very long time. -
It'll automatically fetch the latest merged release PR and ask for confirmation before publishing.
-
If you already know the sha of the commit, you can pass it directly like
pnpm release:publish --sha <your-sha>. -
Other flags for the command:
- --dry-run Used for debugging. Or directly run
pnpm release:publish:dry-run. - --dist-tag Use to publish legacy or canary versions.
- --dry-run Used for debugging. Or directly run
-
This command invokes the Publish GitHub action. It'll log the url which can be opened to see the latest workflow run.
-
The next screen shows "@username requested your review to deploy to npm-publish", click "Review deployments" and authorize your workflow run. Never approve workflow runs you didn't initiaite.
The documentation must be updated on the docs-vX branch (docs-v1 for v1.X releases, docs-v2 for v2.X releases, etc.)
Push the working branch to the documentation release branch to deploy the documentation with the latest changes:
pnpm docs:deployYou can follow the deployment process on the Netlify Dashboard
Once deployed, it will be accessible at https://base-ui.netlify.app/ for the docs-v1 deployment.
After the documentation deployment is done, review, and then publish the release that was created in draft mode during the release step GitHub releases page Make sure to check the Set as a pre-release checkbox if publishing an unstable version.