2021-04-20 11:00:14 -04:00
|
|
|
# Cutting a Deno release
|
|
|
|
|
2021-09-22 19:12:56 -04:00
|
|
|
## Pre-flight checklist
|
|
|
|
|
|
|
|
- [ ] An up to date stable Rust toolchain
|
|
|
|
- [ ] A binary version of `deno` available (hopefully built from `main`) that is
|
2021-11-01 16:22:27 -04:00
|
|
|
going to be available throughout any local building you might do.
|
2021-09-22 19:12:56 -04:00
|
|
|
- [ ] Forks and local clones of
|
2021-11-01 16:22:27 -04:00
|
|
|
[`denoland/deno`](https://github.com/denoland/deno/),
|
|
|
|
[`denoland/deno_std`](https://github.com/denoland/deno_std/),
|
2021-12-16 20:13:45 -05:00
|
|
|
[`denoland/dotland`](https://github.com/denoland/dotland/),
|
|
|
|
[`denoland/docland`](https://github.com/denoland/docland/),
|
2021-11-01 16:22:27 -04:00
|
|
|
[`denoland/deno_docker`](https://github.com/denoland/deno_docker/)
|
2022-01-13 10:43:35 -05:00
|
|
|
[`denoland/manual`](https://github.com/denoland/manual/)
|
2021-09-22 19:12:56 -04:00
|
|
|
- [ ] Ensure that external dependencies are up-to date in `denoland/deno` (e.g.
|
2021-11-01 16:22:27 -04:00
|
|
|
`rusty_v8`, `serde_v8`, `deno_doc`, `deno_lint`).
|
2021-09-22 19:12:56 -04:00
|
|
|
- [ ] Lot's of ☕
|
|
|
|
|
2021-04-20 11:00:14 -04:00
|
|
|
**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.**
|
|
|
|
|
2022-01-13 10:43:35 -05:00
|
|
|
Before starting the process write a message in company's #general channel:
|
|
|
|
`:lock: deno and deno_std are now locked`
|
|
|
|
|
2021-06-22 10:39:44 -04:00
|
|
|
## Updating `deno_std`
|
|
|
|
|
2022-04-04 09:37:54 -04:00
|
|
|
1. Go to the "version_bump" workflow in the deno_std repo's actions:
|
2022-04-08 12:32:25 -04:00
|
|
|
https://github.com/denoland/deno_std/actions/workflows/version_bump.yml
|
2021-09-21 16:53:47 -04:00
|
|
|
|
2022-04-04 09:37:54 -04:00
|
|
|
2. Click on the "Run workflow" button.
|
|
|
|
1. For the kind of release, select "minor".
|
|
|
|
2. Run the workflow.
|
2021-07-26 18:26:39 -04:00
|
|
|
|
2022-04-04 09:37:54 -04:00
|
|
|
3. A PR will be automatically created. Follow the checklist in the PR and review
|
|
|
|
it.
|
2021-07-26 18:26:39 -04:00
|
|
|
|
2022-04-21 12:33:37 -04:00
|
|
|
<details>
|
|
|
|
<summary>❌ Failure Steps</summary>
|
|
|
|
|
|
|
|
1. Checkout the latest main.
|
|
|
|
2. Manually run `./_tools/release/01_bump_version.ts --minor`
|
|
|
|
1. Ensure the version in `version.ts` is updated correctly.
|
|
|
|
2. Ensure `Releases.md` is updated correctly.
|
|
|
|
3. Ensure all the tests pass with the latest build
|
2022-05-06 15:09:33 -04:00
|
|
|
- Use
|
|
|
|
`../deno/target/release/deno test --doc --unstable --allow-all --ignore=node/`
|
2022-04-21 12:33:37 -04:00
|
|
|
3. Open a PR with the changes and continue with the steps below.
|
|
|
|
</details>
|
|
|
|
|
2022-04-15 09:39:41 -04:00
|
|
|
4. Merge the PR.
|
2022-01-13 10:43:35 -05:00
|
|
|
|
2022-04-04 09:37:54 -04:00
|
|
|
5. Wait for the CI run to complete which will tag the repo and create a draft
|
|
|
|
release. Review the draft release and then publish it.
|
2021-06-22 10:39:44 -04:00
|
|
|
|
2022-04-21 12:33:37 -04:00
|
|
|
<details>
|
|
|
|
<summary>❌ Failure Steps</summary>
|
|
|
|
|
|
|
|
1. Tag the repo manually in the format `x.x.x`
|
|
|
|
2. Draft a new GH release by copying and pasting the release notes from
|
|
|
|
`Releases.md`
|
|
|
|
</details>
|
|
|
|
|
2021-06-22 10:39:44 -04:00
|
|
|
## Updating the main repo
|
|
|
|
|
2022-01-13 10:43:35 -05:00
|
|
|
**If you are cutting a patch release**: First you need to sync commit to the
|
|
|
|
relevant minor branch, 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`
|
2022-04-08 12:32:25 -04:00
|
|
|
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`.
|
2022-01-13 10:43:35 -05:00
|
|
|
|
|
|
|
Once all relevant commits are cherry-picked, push the branch to the upstream and
|
|
|
|
verify on GitHub that everything looks correct.
|
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
### Phase 1: Bumping versions
|
2021-08-25 09:02:22 -04:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
1. 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
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
2. Click on the "Run workflow" button.
|
2022-05-06 15:09:33 -04:00
|
|
|
1. In the drop down, select the minor branch if doing a patch release or the
|
2022-03-30 16:37:00 -04:00
|
|
|
main branch if doing a minor release.
|
|
|
|
2. For the kind of release, select either "patch", "minor", or "major".
|
|
|
|
3. Run the workflow.
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
3. Wait for the workflow to complete and for a pull request to be automatically
|
|
|
|
opened.
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2022-04-21 12:33:37 -04:00
|
|
|
<details>
|
|
|
|
<summary>❌ Failure Steps</summary>
|
|
|
|
|
|
|
|
1. Checkout the branch the release is being made on.
|
|
|
|
2. Manually run `./tools/release/01_bump_crate_versions.ts`
|
|
|
|
1. Ensure the crate versions were bumped correctly
|
|
|
|
2. Ensure deno_std version was updated correctly in `cli/compat/mod.rs`
|
|
|
|
3. Ensure `Releases.md` was updated correctly
|
|
|
|
3. Open a PR with the changes and continue with the steps below.
|
|
|
|
</details>
|
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
4. Review the pull request and make any necessary changes.
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
5. Merge it.
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
### Phase 2: Publish
|
2021-09-21 18:44:46 -04:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
1. Go to the "cargo_publish" workflow in the CLI repo's actions:
|
|
|
|
https://github.com/denoland/deno/actions/workflows/cargo_publish.yml
|
2021-09-21 18:44:46 -04:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
2. Run it on the same branch that you used before and wait for it to complete.
|
2021-11-10 10:49:47 -05:00
|
|
|
|
2022-04-21 12:33:37 -04:00
|
|
|
<details>
|
|
|
|
<summary>❌ Failure Steps</summary>
|
|
|
|
|
|
|
|
1. The workflow was designed to be restartable. Try restarting it.
|
|
|
|
2. If that doesn't work, then do the following:
|
|
|
|
1. Checkout the branch the release is occurring on.
|
|
|
|
2. 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.
|
|
|
|
3. If `cargo publish` succeeded and a release tag wasn't created, then
|
|
|
|
manually create and push one for the release branch with a leading `v`.
|
|
|
|
</details>
|
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
3. This CI run create a tag which triggers a second CI run that publishes the
|
|
|
|
GitHub draft release.
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
The CI pipeline will create a release draft on GitHub
|
|
|
|
(https://github.com/denoland/deno/releases). Update the draft with the
|
|
|
|
contents of `Releases.md` that you previously added.
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
4. Upload Apple M1 build (`deno-aarch64-apple-darwin.zip`) to the release draft
|
|
|
|
and to https://console.cloud.google.com/storage/browser/dl.deno.land
|
2021-12-23 10:43:13 -05:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
```
|
|
|
|
cargo build --release
|
|
|
|
cd target/release
|
|
|
|
zip -r deno-aarch64-apple-darwin.zip deno
|
|
|
|
```
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
5. Publish the release on Github
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
6. Update the Deno version on the website by updating
|
|
|
|
https://github.com/denoland/dotland/blob/main/versions.json.
|
2021-06-22 10:39:44 -04:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
7. Push a new tag to [`manual`](https://github.com/denoland/manual). The tag
|
|
|
|
must match the CLI tag; you don't need to create dedicated commit for that
|
|
|
|
purpose, it's enough to tag the latest commit in that repo.
|
2021-07-26 18:26:39 -04:00
|
|
|
|
2022-03-30 16:37:00 -04:00
|
|
|
8. 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.
|
2021-10-22 08:45:16 -04:00
|
|
|
|
2022-04-04 14:56:29 -04:00
|
|
|
9. **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.
|
2022-01-13 10:43:35 -05:00
|
|
|
|
2021-12-16 20:13:45 -05:00
|
|
|
## Updating `doc.deno.land`
|
|
|
|
|
|
|
|
This should occur after the Deno CLI is fully published, as the build script
|
|
|
|
queries the GitHub API to determine what it needs to change and update.
|
|
|
|
|
|
|
|
1. Goto the cloned report for `denoland/docland`.
|
|
|
|
|
|
|
|
2. Checkout a new branch (e.g. `git checkout -b deno_1.17.0`).
|
|
|
|
|
2022-04-08 12:32:25 -04:00
|
|
|
3. Execute `deno task build`
|
2021-12-16 20:13:45 -05:00
|
|
|
|
|
|
|
4. Commit changes and raise a PR on `denoland/docland`.
|
|
|
|
|
|
|
|
5. Merging the approved PR will trigger deployment to Deploy of the updates.
|
|
|
|
|
2021-06-22 10:39:44 -04:00
|
|
|
## Updating `deno_docker`
|
|
|
|
|
|
|
|
1. Open a PR on the `deno_docker` repo that bumps the Deno version in all
|
|
|
|
Dockerfiles, the README and the example Dockerfile
|
|
|
|
2. Create a tag with the version number (_without_ `v` prefix).
|
2022-01-13 10:43:35 -05:00
|
|
|
|
|
|
|
Write a message in company's #general channel:
|
|
|
|
`:unlock: deno and deno_std are now unlocked`.
|