5.9 KiB
- Fork this gist and follow the instructions there.
Pre-flight
- Forks and local clones of
denoland/deno
,denoland/dotcom
,denoland/deno_docker
,denoland/deno-docs
During this process main
branch (or any other branch that you're creating
release from) should be frozen and no commits should land until the release is
cut.
- Check https://deno.land/benchmarks?-100 and ensure there's no recent regressions.
- Write a message in company's #cli channel:
:lock: deno is now locked (<LINK TO THIS FORKED GIST GOES HERE>)
Patch release preparation
If you are cutting a patch release: First you need to sync commits to the
relevant minor branch in the deno
repo, so if you are cutting a v1.17.3
release you need to sync v1.17
branch.
To do that, you need to cherry-pick commits from the main branch to the v1.17
branch. For patch releases we want to cherry-pick all commits that do not add
features to the CLI. This generally means to filter out feat
commits but not
necessarily (ex. feat(core): ...
). Check what was the last commit on v1.17
branch before the previous release and start cherry-picking newer commits from
the main
.
Once all relevant commits are cherry-picked, push the branch to the upstream and verify on GitHub that everything looks correct.
-
⛔ DO NOT create a
vx.xx.x
-like branch! You are meant to cherry pick to avx.xx
branch. If you have accidentally created avx.xx.x
-like branch then delete it as tagging the CLI will fail otherwise. -
Unstable
feat
commits were merged. -
Internal API commits like
feat(core)
were merged.
Updating deno
Phase 1: Bumping versions
-
After releasing deno_std, go to the "version_bump" workflow in the CLI repo's actions: https://github.com/denoland/deno/actions/workflows/version_bump.yml
- Click on the "Run workflow" button.
- In the drop down, select the minor branch (ex.
vx.xx
) if doing a patch release or the main branch if doing a minor release. - For the kind of release, select either "patch", "minor", or "major".
- Run the workflow.
-
Wait for the workflow to complete and for a pull request to be automatically opened. Review the pull request, make any necessary changes, and merge it.
- ⛔ DO NOT create a release tag manually That will automatically happen.
Failure Steps
- Checkout the branch the release is being made on.
- Manually run
./tools/release/01_bump_crate_versions.ts
- Ensure the crate versions were bumped correctly
- Ensure
Releases.md
was updated correctly
- Open a PR with the changes and continue with the steps below.
Phase 2: Publish
-
Go to the "cargo_publish" workflow in the CLI repo's actions: https://github.com/denoland/deno/actions/workflows/cargo_publish.yml
- Run it on the same branch that you used before and wait for it to complete.
Failure Steps
- The workflow was designed to be restartable. Try restarting it.
- If that doesn't work, then do the following:
- Checkout the branch the release is occurring on.
- If
cargo publish
hasn't completed then run./tools/release/03_publish_crates.ts
- Note that you will need access to crates.io so it might fail.
- If
cargo publish
succeeded and a release tag wasn't created, then manually create and push one for the release branch with a leadingv
.
-
This CI run create a tag which triggers a second CI run that publishes the GitHub draft release.
The CI pipeline will create a release draft on GitHub (https://github.com/denoland/deno/releases).
-
⛔ Verify that:
- There are 14 assets on the release draft.
- There are 10 zip files for this version on dl.deno.land.
-
Publish the release on Github
-
Update https://github.com/denoland/dotcom/blob/main/versions.json and open a PR.
- Merge the PR.
-
Run https://github.com/denoland/deno-docs/actions/workflows/update_versions.yml to automatically open a PR.
- Merge the PR.
-
For minor releases: make sure https://github.com/mdn/browser-compat-data has been updated to reflect Web API changes in this release. Usually done ahead of time by @lucacasonato.
-
If you are cutting a patch release: a PR should have been automatically opened that forwards the release commit back to main. If so, merge it. If not and it failed, please manually create one.
Updating deno.land/api
symbols
This should occur after the Deno CLI & std are fully published, as the build script generates the symbols based on the latest tags.
-
Run the
release CLI
workflow in the apiland_scripts repo on the main branch: https://github.com/denoland/apiland_scripts/actions/workflows/release_cli.yml- Verify the workflow ran successfully.
Failure Steps
- Clone
deno/apiland_scripts
. - Execute
deno task release:cli
.
Updating deno_docker
- Run the version bump workflow: https://github.com/denoland/deno_docker/actions/workflows/version_bump.yml
- This will open a PR. Review and merge it.
- Create a tag with the version number (without
v
prefix).
Updating deno-lambda
- Run the version bump workflow: https://github.com/denoland/deno-lambda/actions/workflows/bump.yml
- This will open a PR. Review and merge it.
- Create a release with the version number (without
v
prefix).
All done!
- Write a message in company's #cli channel:
:unlock: deno is now unlocked
.