diff --git a/common.gypi b/common.gypi index 87d35a2771812c..576d5057d988fc 100644 --- a/common.gypi +++ b/common.gypi @@ -38,7 +38,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.47', + 'v8_embedder_string': '-node.48', ##### V8 defaults for Node.js ##### diff --git a/deps/v8/src/wasm/wasm-feature-flags.h b/deps/v8/src/wasm/wasm-feature-flags.h index 1f7c5f4e290a01..4fb01e8fba9d8a 100644 --- a/deps/v8/src/wasm/wasm-feature-flags.h +++ b/deps/v8/src/wasm/wasm-feature-flags.h @@ -105,11 +105,6 @@ /* V8 side owner: jkummerow */ \ V(imported_strings_utf8, "imported strings (utf8 features)", false) \ \ - /* Exnref */ \ - /* This flag enables the new exception handling proposal */ \ - /* V8 side owner: thibaudm */ \ - V(exnref, "exnref", false) \ - \ /* JavaScript Promise Integration proposal. */ \ /* https://github.com/WebAssembly/js-promise-integration */ \ /* V8 side owner: thibaudm, fgm */ \ @@ -130,7 +125,13 @@ /* https://github.com/WebAssembly/js-string-builtins */ \ /* V8 side owner: jkummerow */ \ /* Shipped in v13.0 */ \ - V(imported_strings, "imported strings", true) + V(imported_strings, "imported strings", true) \ + \ + /* Exnref */ \ + /* This flag enables the new exception handling proposal */ \ + /* V8 side owner: thibaudm */ \ + /* Shipped in v13.7 */ \ + V(exnref, "exnref", true) // Combination of all available wasm feature flags. #define FOREACH_WASM_FEATURE_FLAG(V) \