-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
src, buffer: add --pending-deprecation flag #11968
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Flags: --no-warnings --pending-deprecation | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const Buffer = require('buffer').Buffer; | ||
|
||
process.on('warning', common.mustNotCall('A warning should not be emitted')); | ||
|
||
// With the --pending-deprecation flag, the deprecation warning for | ||
// new Buffer() should not be emitted when Uint8Array methods are called. | ||
|
||
Buffer.from('abc').map((i) => i); | ||
Buffer.from('abc').filter((i) => i); | ||
Buffer.from('abc').slice(1, 2); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Flags: --pending-deprecation --no-warnings | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const Buffer = require('buffer').Buffer; | ||
|
||
const bufferWarning = 'The Buffer() and new Buffer() constructors are not ' + | ||
'recommended for use due to security and usability ' + | ||
'concerns. Please use the new Buffer.alloc(), ' + | ||
'Buffer.allocUnsafe(), or Buffer.from() construction ' + | ||
'methods instead.'; | ||
|
||
common.expectWarning('DeprecationWarning', bufferWarning); | ||
|
||
new Buffer(10); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
'use strict'; | ||
|
||
// Tests that --pending-deprecation and NODE_PENDING_DEPRECATION both | ||
// set the process.binding('config').pendingDeprecation flag that is | ||
// used to determine if pending deprecation messages should be shown. | ||
// The test is performed by launching two child processes that run | ||
// this same test script with different arguments. If those exit with | ||
// code 0, then the test passes. If they don't, it fails. | ||
|
||
const common = require('../common'); | ||
|
||
const assert = require('assert'); | ||
const config = process.binding('config'); | ||
const fork = require('child_process').fork; | ||
|
||
function message(name) { | ||
return `${name} did not set the process.binding('config').` + | ||
'pendingDeprecation flag.'; | ||
} | ||
|
||
switch (process.argv[2]) { | ||
case 'env': | ||
case 'switch': | ||
assert.strictEqual(config.pendingDeprecation, true); | ||
break; | ||
default: | ||
// Verify that the flag is off by default. | ||
assert.strictEqual(config.pendingDeprecation, undefined); | ||
|
||
// Test the --pending-deprecation command line switch. | ||
fork(__filename, ['switch'], { | ||
execArgv: ['--pending-deprecation'], | ||
silent: true | ||
}).on('exit', common.mustCall((code) => { | ||
assert.strictEqual(code, 0, message('--pending-deprecation')); | ||
})); | ||
|
||
// Test the NODE_PENDING_DEPRECATION environment var. | ||
fork(__filename, ['env'], { | ||
env: {NODE_PENDING_DEPRECATION: 1}, | ||
silent: true | ||
}).on('exit', common.mustCall((code) => { | ||
assert.strictEqual(code, 0, message('NODE_PENDING_DEPRECATION')); | ||
})); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Maybe add a sentence with the purpose of a pending deprecation?
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.
Optional: Maybe also specify that it's specifically the runtime deprecation that's pending, and that stuff is frequently deprecated in the docs but with no runtime deprecation message. Or something. We differentiate between "runtime deprecation" and "docs deprecation" pretty much everywhere, so it seems like there ought to be some clarity when people are using this flag.
That said, I'm fine with this landing without that information. I know it's crunch time on this stuff right now. It can always be added in a subsequent pull request if it turns out that it's important to include.
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.
Updated to add an explanatory note.