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: doc/contributing/releases.md
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1207,6 +1207,20 @@ Notify the `@nodejs/npm` team in the release proposal PR to inform them of the
1207
1207
upcoming release. `npm` maintains a list of [supported versions](https://github.com/npm/cli/blob/latest/lib/utils/unsupported.js#L3)
1208
1208
that will need updating to include the new major release.
1209
1209
1210
+
To keep the branch in sync until the release date, it can be as simple as
1211
+
doing the following:
1212
+
1213
+
> Make sure to check that there are no PRs with the label `dont-land-on-vX.x`.
1214
+
1215
+
```bash
1216
+
git checkout vN.x
1217
+
git reset --hard upstream/main
1218
+
git checkout vN.x-staging
1219
+
git reset --hard upstream/main
1220
+
git push upstream vN.x
1221
+
git push upstream vN.x-staging
1222
+
```
1223
+
1210
1224
### Update `NODE_MODULE_VERSION`
1211
1225
1212
1226
This macro in `src/node_version.h` is used to signal an ABI version for native
0 commit comments