From 8bb4e048afcd145876ed2f536bd61671130617be Mon Sep 17 00:00:00 2001 From: James M Snell Date: Mon, 22 Mar 2021 10:59:20 -0700 Subject: [PATCH] lib: runtime deprecate access to process.binding('url') MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: James M Snell PR-URL: https://github.com/nodejs/node/pull/37799 Reviewed-By: Matteo Collina Reviewed-By: Anna Henningsen Reviewed-By: Michaƫl Zasso Reviewed-By: Rich Trott Reviewed-By: Trivikram Kamat --- lib/internal/bootstrap/loaders.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/internal/bootstrap/loaders.js b/lib/internal/bootstrap/loaders.js index 4417a94181410b..4f0bd1cc3e2768 100644 --- a/lib/internal/bootstrap/loaders.js +++ b/lib/internal/bootstrap/loaders.js @@ -110,6 +110,7 @@ const runtimeDeprecatedList = new SafeSet([ 'async_wrap', 'crypto', 'signal_wrap', + 'url', 'v8', ]);