From a44775be8ae36792f385d45ced9d7065fc4e60d2 Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Thu, 24 Jun 2021 09:43:37 +0200 Subject: [PATCH] deps: update V8 to 9.1 https://github.com/nodejs/node/pull/38273 --- patches/node/.patches | 1 - ..._tostring_behavior_in_v8_serdes_test.patch | 20 ------------------- 2 files changed, 21 deletions(-) delete mode 100644 patches/node/fix_handle_new_tostring_behavior_in_v8_serdes_test.patch diff --git a/patches/node/.patches b/patches/node/.patches index c14cfaac32398..42590ed4fdcb1 100644 --- a/patches/node/.patches +++ b/patches/node/.patches @@ -23,7 +23,6 @@ fix_add_v8_enable_reverse_jsargs_defines_in_common_gypi.patch fix_allow_preventing_initializeinspector_in_env.patch src_allow_embedders_to_provide_a_custom_pageallocator_to.patch fix_crypto_tests_to_run_with_bssl.patch -fix_handle_new_tostring_behavior_in_v8_serdes_test.patch src_add_node_use_v8_platform_in_initializeonceperprocess.patch tls_tweak_clientcertengine_argument_parsing.patch src_add_get_set_pair_for_unhandled_rejections_mode.patch diff --git a/patches/node/fix_handle_new_tostring_behavior_in_v8_serdes_test.patch b/patches/node/fix_handle_new_tostring_behavior_in_v8_serdes_test.patch deleted file mode 100644 index 4752d0724a9be..0000000000000 --- a/patches/node/fix_handle_new_tostring_behavior_in_v8_serdes_test.patch +++ /dev/null @@ -1,20 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Samuel Attard -Date: Wed, 14 Apr 2021 12:03:27 -0700 -Subject: fix: handle new ToString() behavior in v8 serdes test - -Refs: https://chromium-review.googlesource.com/c/v8/v8/+/2739980 - -diff --git a/test/parallel/test-v8-serdes.js b/test/parallel/test-v8-serdes.js -index 1d3b6ff81168e704aa67e7abe1556c460e06ffa9..4dffedd3c32b4b1b6eb75e46f8bfb447260046bb 100644 ---- a/test/parallel/test-v8-serdes.js -+++ b/test/parallel/test-v8-serdes.js -@@ -50,7 +50,7 @@ const hostObject = new (internalBinding('js_stream').JSStream)(); - { - const ser = new v8.DefaultSerializer(); - ser._getDataCloneError = common.mustCall((message) => { -- assert.strictEqual(message, '[object Object] could not be cloned.'); -+ assert.strictEqual(message, '# could not be cloned.'); - return new Error('foobar'); - }); -