Skip to content

Commit 1468c9f

Browse files
committed
lib: runtime deprecate access to process.binding('async_wrap')
Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #37576 Fixes: #37575 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
1 parent a8b5cdc commit 1468c9f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

lib/internal/bootstrap/loaders.js

+11
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ const internalBindingAllowlist = new SafeSet([
105105
'zlib',
106106
]);
107107

108+
const runtimeDeprecatedList = new SafeSet([
109+
'async_wrap',
110+
]);
111+
108112
// Set up process.binding() and process._linkedBinding().
109113
{
110114
const bindingObj = ObjectCreate(null);
@@ -114,6 +118,13 @@ const internalBindingAllowlist = new SafeSet([
114118
// Deprecated specific process.binding() modules, but not all, allow
115119
// selective fallback to internalBinding for the deprecated ones.
116120
if (internalBindingAllowlist.has(module)) {
121+
if (runtimeDeprecatedList.has(module)) {
122+
runtimeDeprecatedList.delete(module);
123+
process.emitWarning(
124+
`Access to process.binding('${module}') is deprecated.`,
125+
'DeprecationWarning',
126+
'DEP0111');
127+
}
117128
return internalBinding(module);
118129
}
119130
// eslint-disable-next-line no-restricted-syntax

0 commit comments

Comments
 (0)