Hans Larsen (hansl@google.com)
June 8th, 2018
- Clone the Angular-CLI repo. A local copy works just fine.
- Create an upstream remote:
$ git remote add upstream https://github.com/angular/angular-cli.git
The caretaker should triage issues, merge PR, and sheppard the release.
Caretaker calendar can be found here.
TBD
TBD
Everytime a PR is merged, commits need to be cherry-picked to an associated branch;
- the latest patch branch (e.g.
1.2.x
or1.3.x-rc.0
) should also be updated by cherry-picking all applicable commits to it.fix()
,docs()
,refactor()
and
Say the following PR is merged;
* fix(@angular/cli): fix path when doing stuff
* refactor(@angular-devkit/core): replace Fizz with Buzz
* feat(@angular-devkit/core): add new feature
* fix(@angular-devkit/core): fix something related to new feature
* refactor(@angular-devkit/core): move stuff to new feature
Only the first 2 commits should be cherry picked to the patch branch, as the last 3 are related to a new feature.
Make sure the CI is green.
Consider if you need to update packages/schematics/angular/utility/latest-versions.ts
to reflect changes in dependent versions.
As commits are cherry-picked when PRs are merged, creating the release should be a matter of updating the version numbers. This can be done with the following command.
See scripts/release.ts
for the full list of release types, e.g. patch updates the third number per semver.
devkit-admin release patch --force # replace with minor-beta etc.
git commit -a -m 'release: vXX'
git tag 'vXX'
git push upstream && git push upstream --tags
This can ONLY be done by a Google employee.
It is a good idea to wait for CI to be green on the patch branch and tag before doing the release.
Check out the patch tag (e.g. v6.7.8
), then run:
devkit-admin publish
Check out the minor tag (e.g. v6.8.0-beta.0
), then run:
devkit-admin publish --tag next
devkit-admin changelog
takes from
and to
arguments which are any valid git ref.
For example, running the following command will output the release notes on stdout between v1.2.3 and 1.2.4:
devkit-admin changelog --from=v1.2.3 --to=v1.2.4
Copy paste the output (you can use | pbcopy
on MacOS or |xclip
on Linux) and create the release notes on github for the tag just
released. If you have an API token for GitHub you can create a draft automatically by using the --githubToken
flag.
You just have then to confirm the draft.
Tags containing beta
or rc
should be marked as pre-release.