Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions Release-Process.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,28 @@ non-patch flow.

### Branch terminology

Key:
- `F`: A feature commit
- `S`: A security patch
- `V`: A version (includes package.json and changelog)
- `*`: The release is run *after* merge (but the merge is a rebase, so the history flattens)

```
4.x is Current Major | 5.x is Current

feature | -F1 -F2 | -S1
| \ \ \
master | ---F1-------F2----------------------------------|--------------*--S1----------*
| \ \ \ \ / / \ /
4.x | ----F1- \ ----F2- \ -----------------*----------|------------/------\--S1(cherry-pick)
| \ \ \ \ / / \ /
4.18.3 | \ F1--- \ --F2---V4.18.3 | / \ /
| \ \ / \ /
5.x | -----------F1--------F2---------------------*---|---V5.0.0--------------*
| \ \ /
5.0(.0) | F1--------F2---V5.0.0-beta.1
```

"Master branch"

- There is a branch in git used for the current major version of Express, named
Expand Down