-
Notifications
You must be signed in to change notification settings - Fork 31.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
util: deprecate util.deprecate() #12631
Conversation
The implementation of `deprecate()` is in `internal/util`. There are other (better) userland solutions and other API options such as `process.emitWarning()` that would be better.
I think this is a bad or harmful course of action. It would be ideal to keep and maintain a standard for deprecation warnings with helpers for using it, especially ones that are the same as Node itself uses. |
I'm completely neutral on this, to be honest. The userland options are good, we do have |
No really strong opinion. If pressed, I'd say keep it (do not deprecate). Also, 👍 to the title of this PR. |
In general, I'm opposed to breaking users' code when the maintenance cost is not prohibitive. In this specific case, it seems that it could break users' code and that the maintenance cost would be negligible, so I'm -1. |
Closing given the -1's |
Maintenance cost isn't non-negligible, current behaviour of the API is contested as being unclear for thirdparty users, and also insufficiently informative for node users. Its not clear we can make it good without breaking backwards compat. See:
That said, I reluctantly agree it should not be deprecated. Instead, I think it should be abandoned, left to sit doing exactly what it does, backwards compatibly, forever?, while node itself moves to using a different API internally, one which includes the URL to the deprecation notice, and some information on how to suppress deprecation warnings. #11703 refed above is the place for that discussion. |
@jasnell Thanks for floating the idea... even if it sunk :-) |
Deprecate
util.deprecate()
... there are better userland alternatives and core is using it frominternal/util
./cc @sam-github @nodejs/ctc
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
util, repl, lib, domain