2022-08-08 19:31:45 -04:00
|
|
|
- [ ] Fork this gist and follow the instructions there.
|
|
|
|
|
|
|
|
## Pre-flight
|
2022-08-06 09:45:34 -04:00
|
|
|
|
2024-05-22 18:29:41 -04:00
|
|
|
**During this process $BRANCH_NAME branch should be frozen and no commits should
|
|
|
|
land until the release is finished.**
|
|
|
|
|
|
|
|
- [ ] Ensure forks and local clones of:
|
|
|
|
- [`denoland/deno`](https://github.com/denoland/deno/),
|
|
|
|
- [`denoland/dotcom`](https://github.com/denoland/dotcom/),
|
|
|
|
- [`denoland/deno_docker`](https://github.com/denoland/deno_docker/),
|
|
|
|
- [`denoland/deno-docs`](https://github.com/denoland/deno-docs)
|
2023-02-02 18:41:46 -05:00
|
|
|
- [ ] Check https://deno.land/benchmarks?-100 and ensure there's no recent
|
|
|
|
regressions.
|
2024-05-22 18:29:41 -04:00
|
|
|
- [ ] Write a message in company's `#cli` channel:
|
|
|
|
|
|
|
|
```
|
|
|
|
:lock:
|
|
|
|
|
2024-05-30 06:50:48 -04:00
|
|
|
@here
|
2024-05-22 18:29:41 -04:00
|
|
|
|
|
|
|
Deno v$VERSION is now getting released.
|
|
|
|
|
2024-06-13 00:21:57 -04:00
|
|
|
`denoland/deno` is now locked.
|
2024-05-22 18:29:41 -04:00
|
|
|
|
2024-06-13 00:21:57 -04:00
|
|
|
*DO NOT LAND ANY PRs*
|
2024-05-22 18:29:41 -04:00
|
|
|
|
|
|
|
Release checklist: <LINK TO THIS FORKED GIST GOES HERE>
|
|
|
|
```
|
2022-08-06 09:45:34 -04:00
|
|
|
|
|
|
|
## Patch release preparation
|
|
|
|
|
2024-10-18 23:42:19 -04:00
|
|
|
⛔ **If you are cutting a patch release**: First you need to sync commits to the
|
2024-07-12 18:44:55 -04:00
|
|
|
`v$MINOR_VERSION` branch in the `deno` repo.
|
2024-05-22 18:29:41 -04:00
|
|
|
|
2024-07-12 18:44:55 -04:00
|
|
|
To do that, you need to cherry-pick commits from the main branch to the
|
|
|
|
`v$MINOR_VERSION` branch. If the branch doesn't exist yet, create one from the
|
|
|
|
latest minor tag:
|
2024-05-22 18:29:41 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
# checkout latest minor release
|
2024-07-12 18:44:55 -04:00
|
|
|
$ git checkout v$PAST_VERSION
|
2022-08-06 09:45:34 -04:00
|
|
|
|
2024-05-22 18:29:41 -04:00
|
|
|
# create a branch
|
2024-07-12 18:44:55 -04:00
|
|
|
$ git checkout v$MINOR_VERSION
|
2024-05-22 18:29:41 -04:00
|
|
|
|
|
|
|
# push the branch to the `denoland/deno` repository
|
2024-07-12 18:44:55 -04:00
|
|
|
$ git push upstream v$MINOR_VERSION
|
2024-05-22 18:29:41 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
2024-07-12 18:44:55 -04:00
|
|
|
Check what was the last commit on `v$MINOR_VERSION` branch before the previous
|
|
|
|
release and start cherry-picking newer commits from the `main`.
|
2024-05-22 18:29:41 -04:00
|
|
|
|
|
|
|
<!--
|
|
|
|
TODO: we should add sample deno program that does that for you,
|
|
|
|
and then provides a complete `git` command to run.
|
|
|
|
-->
|
2022-08-06 09:45:34 -04:00
|
|
|
|
|
|
|
Once all relevant commits are cherry-picked, push the branch to the upstream and
|
|
|
|
verify on GitHub that everything looks correct.
|
|
|
|
|
2024-07-12 18:44:55 -04:00
|
|
|
- ⛔ DO NOT create a `v$VERSION`-like branch! You are meant to cherry pick to
|
|
|
|
the `v$MINOR_VERSION` branch. If you have accidentally created then
|
|
|
|
`v$VERSION` branch then delete it as tagging the CLI will fail otherwise.
|
2022-08-06 09:45:34 -04:00
|
|
|
|
|
|
|
## Updating `deno`
|
|
|
|
|
|
|
|
### Phase 1: Bumping versions
|
|
|
|
|
2024-05-22 18:29:41 -04:00
|
|
|
- [ ] Go to the "version_bump" workflow in the CLI repo's actions:
|
2022-08-06 09:45:34 -04:00
|
|
|
https://github.com/denoland/deno/actions/workflows/version_bump.yml
|
|
|
|
1. Click on the "Run workflow" button.
|
2024-07-12 18:44:55 -04:00
|
|
|
1. In the drop down, select the minor branch (`v$MINOR_VERSION`) if doing a
|
|
|
|
patch release or the main branch if doing a minor release.
|
2024-10-18 23:42:19 -04:00
|
|
|
1. For the kind of release, select either `patch` or `minor`.
|
2022-08-06 09:45:34 -04:00
|
|
|
1. 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.
|
2024-10-18 23:42:19 -04:00
|
|
|
- ⛔ **DO NOT** create a release tag manually That will automatically happen.
|
2022-08-06 09:45:34 -04:00
|
|
|
|
|
|
|
<details>
|
2022-08-08 19:31:45 -04:00
|
|
|
<summary>Failure Steps</summary>
|
2022-08-06 09:45:34 -04:00
|
|
|
|
|
|
|
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
|
2024-03-27 13:51:52 -04:00
|
|
|
2. Ensure `Releases.md` was updated correctly
|
2022-08-06 09:45:34 -04:00
|
|
|
3. Open a PR with the changes and continue with the steps below.
|
|
|
|
</details>
|
|
|
|
|
|
|
|
### 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
|
|
|
|
1. Run it on the same branch that you used before and wait for it to complete.
|
|
|
|
|
|
|
|
<details>
|
2022-08-08 19:31:45 -04:00
|
|
|
<summary>Failure Steps</summary>
|
2022-08-06 09:45:34 -04:00
|
|
|
|
|
|
|
1. The workflow was designed to be restartable. Try restarting it.
|
|
|
|
2. If that doesn't work, then do the following:
|
2024-07-12 18:44:55 -04:00
|
|
|
1. Checkout the `v$MINOR_VERSION` branch.
|
2022-08-06 09:45:34 -04:00
|
|
|
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
|
2024-07-12 18:44:55 -04:00
|
|
|
manually create and push the `v$VERSION` tag on the `v$MINOR_VERSION`
|
|
|
|
branch.
|
2022-08-06 09:45:34 -04:00
|
|
|
</details>
|
|
|
|
|
|
|
|
- [ ] 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
|
2023-04-02 13:53:52 -04:00
|
|
|
(https://github.com/denoland/deno/releases).
|
2022-08-06 09:45:34 -04:00
|
|
|
|
|
|
|
- ⛔ Verify that:
|
2024-10-18 23:42:19 -04:00
|
|
|
- [ ] There are 24 assets on the
|
|
|
|
[GitHub release draft](https://github.com/denoland/deno/releases/v$VERSION).
|
2024-02-15 03:10:24 -05:00
|
|
|
- [ ] There are 10 zip files for this version on
|
2023-04-02 13:53:52 -04:00
|
|
|
[dl.deno.land](https://console.cloud.google.com/storage/browser/dl.deno.land/release/v$VERSION).
|
2022-08-06 09:45:34 -04:00
|
|
|
|
|
|
|
- [ ] Publish the release on Github
|
|
|
|
|
2024-07-09 17:10:04 -04:00
|
|
|
- [ ] Run
|
|
|
|
https://github.com/denoland/dotcom/actions/workflows/update_version.yml to
|
|
|
|
automatically open a PR.
|
2023-11-24 13:00:39 -05:00
|
|
|
- [ ] Merge the PR.
|
2023-09-27 15:22:39 -04:00
|
|
|
|
2023-09-19 20:47:51 -04:00
|
|
|
- [ ] Run
|
|
|
|
https://github.com/denoland/deno-docs/actions/workflows/update_versions.yml
|
2023-11-24 13:00:39 -05:00
|
|
|
to automatically open a PR.
|
|
|
|
- [ ] Merge the PR.
|
2022-08-06 09:45:34 -04:00
|
|
|
|
|
|
|
- [ ] 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_docker`
|
|
|
|
|
2023-03-21 11:38:59 -04:00
|
|
|
- [ ] 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.
|
2024-07-12 18:44:55 -04:00
|
|
|
- [ ] Create a `$VERSION` tag (_without_ `v` prefix).
|
2022-08-06 09:45:34 -04:00
|
|
|
|
|
|
|
## All done!
|
|
|
|
|
2023-04-02 13:53:52 -04:00
|
|
|
- [ ] Write a message in company's #cli channel:
|
2024-05-22 18:29:41 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
:unlock:
|
|
|
|
|
2024-06-13 00:21:57 -04:00
|
|
|
@here
|
2024-05-22 18:29:41 -04:00
|
|
|
|
2024-06-13 00:21:57 -04:00
|
|
|
`denoland/deno` is now unlocked.
|
2024-05-22 18:29:41 -04:00
|
|
|
|
2024-06-13 00:21:57 -04:00
|
|
|
*You can land PRs now*
|
2024-05-22 18:29:41 -04:00
|
|
|
|
|
|
|
Deno v$VERSION has been released.
|
|
|
|
```
|