Skip to content
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

Closed
wants to merge 4 commits into from

Conversation

jasnell
Copy link
Member

@jasnell jasnell commented Apr 24, 2017

Deprecate util.deprecate()... there are better userland alternatives and core is using it from
internal/util.

/cc @sam-github @nodejs/ctc

Checklist
  • make -j4 test (UNIX), or vcbuild test (Windows) passes
  • documentation is changed or added
  • commit message follows commit guidelines
Affected core subsystem(s)

util, repl, lib, domain

jasnell added 4 commits April 24, 2017 14:42
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.
@nodejs-github-bot nodejs-github-bot added domain Issues and PRs related to the domain subsystem. lib / src Issues and PRs related to general changes in the lib or src directory. repl Issues and PRs related to the REPL subsystem. util Issues and PRs related to the built-in util module. labels Apr 24, 2017
@jasnell jasnell added semver-major PRs that contain breaking changes and should be released in the next major version. and removed domain Issues and PRs related to the domain subsystem. lib / src Issues and PRs related to general changes in the lib or src directory. repl Issues and PRs related to the REPL subsystem. util Issues and PRs related to the built-in util module. labels Apr 24, 2017
@jasnell jasnell changed the title Deprecate util deprecate util: deprecate util.deprecate() Apr 24, 2017
@mscdex mscdex added the util Issues and PRs related to the built-in util module. label Apr 24, 2017
@Fishrock123
Copy link
Contributor

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.

@jasnell
Copy link
Member Author

jasnell commented Apr 26, 2017

I'm completely neutral on this, to be honest. The userland options are good, we do have process.emitWarning() that can be used, but this is not expensive to keep around. I'd like to hear what others think on it but wanted to at least float the idea.

@cjihrig
Copy link
Contributor

cjihrig commented Apr 26, 2017

No really strong opinion. If pressed, I'd say keep it (do not deprecate). Also, 👍 to the title of this PR.

@misterdjules
Copy link

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.

@jasnell
Copy link
Member Author

jasnell commented Apr 26, 2017

Closing given the -1's

@jasnell jasnell closed this Apr 26, 2017
@sam-github
Copy link
Contributor

sam-github commented Apr 26, 2017

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.

@sam-github
Copy link
Contributor

@jasnell Thanks for floating the idea... even if it sunk :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
semver-major PRs that contain breaking changes and should be released in the next major version. util Issues and PRs related to the built-in util module.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants