You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/process/release.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,10 +69,15 @@ Releasing is performed using Angular's unified release tooling. Each week, two r
69
69
70
70
Once FW releases the actual minor/major release (for example: `13.0.0` or `13.1.0`), update dependencies with the following:
71
71
72
-
1. Update [`constants.bzl`](../../constants.bzl) so `@angular/core` and `ng-packagr` are using the release version (drop `-next.0`).
73
-
74
-
Merge the above change in a separate PR which lands _after_ FW releases (or else CI will fail) but _before_ the CLI
75
-
release PR. Releases are built before the PR is sent for review, so any changes after that point won't be included in the release.
72
+
1. Update [`constants.bzl`](../../constants.bzl) so `@angular/core` and `ng-packagr` are using the release version (drop `-rc.*`).
73
+
2. Update all `package.json` dependencies on framework packages to to the release version (drop `-rc.*`).
74
+
- Components packages release _after_ CLI, so those should be left as `-rc.*`.
75
+
3.`pnpm install` to update the `pnpm-lock.yaml` file.
76
+
77
+
Create a PR with the above changes ([example](https://github.com/angular/angular-cli/pull/31872)) and merge it directly to the RC
78
+
branch. This PR must land _after_ FW releases (or else CI will fail) but _before_ the CLI release PR. Releases are built before
79
+
the PR is sent for review, so any changes after that point won't be included in the release and this cannot be combined with the
0 commit comments