diff --git a/common.gypi b/common.gypi index 306c027e8d49f9..ae9ad601a74257 100644 --- a/common.gypi +++ b/common.gypi @@ -36,7 +36,7 @@ # Reset this number to 0 on major V8 upgrades. # Increment by one for each non-official patch applied to deps/v8. - 'v8_embedder_string': '-node.5', + 'v8_embedder_string': '-node.6', ##### V8 defaults for Node.js ##### diff --git a/deps/v8/include/v8.h b/deps/v8/include/v8.h index 502ff70ead469e..8e664887bec911 100644 --- a/deps/v8/include/v8.h +++ b/deps/v8/include/v8.h @@ -1667,7 +1667,7 @@ class V8_EXPORT Module : public Data { */ int GetIdentityHash() const; - using ResolveCallback V8_DEPRECATED("Use ResolveModuleCallback") = + using ResolveCallback = MaybeLocal (*)(Local context, Local specifier, Local referrer); using ResolveModuleCallback = MaybeLocal (*)( @@ -7335,8 +7335,7 @@ using CallCompletedCallback = void (*)(Isolate*); * fails (e.g. due to stack overflow), the embedder must propagate * that exception by returning an empty MaybeLocal. */ -using HostImportModuleDynamicallyCallback V8_DEPRECATED( - "Use HostImportModuleDynamicallyWithImportAssertionsCallback instead") = +using HostImportModuleDynamicallyCallback = MaybeLocal (*)(Local context, Local referrer, Local specifier);