mirror of https://github.com/nodejs/node.git
doc: add command to get patch minors and majors
PR-URL: https://github.com/nodejs/node/pull/50067 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>pull/50095/head
parent
9f9c58212e
commit
3c430212c3
|
@ -1279,6 +1279,12 @@ The commits in the generated changelog must then be organized:
|
|||
* Remove all reverted commits and their reverts
|
||||
* Separate all SEMVER-MAJOR, SEMVER-MINOR, and SEMVER-PATCH commits into lists
|
||||
|
||||
```console
|
||||
$ branch-diff upstream/vN-1.x upstream/vN.x --require-label=semver-major --group --filter-release # get all majors
|
||||
$ branch-diff upstream/vN-1.x upstream/vN.x --require-label=semver-minor --group --filter-release # get all minors
|
||||
$ branch-diff upstream/vN-1.x upstream/vN.x --exclude-label=semver-major,semver-minor --group --filter-release # get all patches
|
||||
```
|
||||
|
||||
#### Generate the notable changes
|
||||
|
||||
For a major release, all SEMVER-MAJOR commits that are not strictly internal,
|
||||
|
|
Loading…
Reference in New Issue