summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common.gypi2
-rw-r--r--deps/v8/include/v8.h4
2 files changed, 2 insertions, 4 deletions
diff --git a/common.gypi b/common.gypi
index 8c313aad9b..6ce9c5e877 100644
--- a/common.gypi
+++ b/common.gypi
@@ -39,7 +39,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.1',
+ 'v8_embedder_string': '-node.2',
##### V8 defaults for Node.js #####
diff --git a/deps/v8/include/v8.h b/deps/v8/include/v8.h
index 1387f74715..615911ef46 100644
--- a/deps/v8/include/v8.h
+++ b/deps/v8/include/v8.h
@@ -4640,8 +4640,7 @@ class V8_EXPORT WasmModuleObject : public Object {
* An opaque, native heap object for transferring wasm modules. It
* supports move semantics, and does not support copy semantics.
*/
- using TransferrableModule V8_DEPRECATED("Use CompiledWasmModule directly") =
- CompiledWasmModule;
+ using TransferrableModule = CompiledWasmModule;
/**
* Get an in-memory, non-persistable, and context-independent (meaning,
@@ -7055,7 +7054,6 @@ class PromiseRejectMessage {
typedef void (*PromiseRejectCallback)(PromiseRejectMessage message);
// --- Microtasks Callbacks ---
-V8_DEPRECATE_SOON("Use *WithData version.")
typedef void (*MicrotasksCompletedCallback)(Isolate*);
typedef void (*MicrotasksCompletedCallbackWithData)(Isolate*, void*);
typedef void (*MicrotaskCallback)(void* data);