-
Notifications
You must be signed in to change notification settings - Fork 30.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tools: checkout for unassigned DEP00XX codes #14702
Conversation
doc/releases.md
Outdated
If this release includes any new deprecations it is necessary to ensure that | ||
those are assigned a proper static deprecation code. These are listed in the | ||
docs (see `doc/api/deprecations.md`) and in the source as `DEP00XX`. The code | ||
must be assigned a number (e.g. `DEP0012`). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably mention that usually assigning deprecation codes should happen while landing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, they should be made before landing, otherwise we could end up with nightlies that contain invalid/duplicate deprecation codes if we wait until the next release.
Check for `DEP00XX` codes on release build like we do with `REPLACEME`
Check for `DEP00XX` codes on release build like we do with `REPLACEME` PR-URL: #14702 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Landed in eac0147 |
Check for `DEP00XX` codes on release build like we do with `REPLACEME` PR-URL: nodejs/node#14702 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Check for `DEP00XX` codes on release build like we do with `REPLACEME` PR-URL: #14702 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
I don't believe this is applicable to v6.x. LMK if it should land. |
Check for
DEP00XX
codes on release build like we do withREPLACEME
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
tools