diff --git a/common.gypi b/common.gypi index a8b38b25678171..fda54611734358 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.75', + 'v8_embedder_string': '-node.76', ##### V8 defaults for Node.js ##### diff --git a/deps/v8/test/intl/regress-1074578.js b/deps/v8/test/intl/regress-1074578.js index c8fa56e8a27b1c..3240b97545a30c 100644 --- a/deps/v8/test/intl/regress-1074578.js +++ b/deps/v8/test/intl/regress-1074578.js @@ -30,10 +30,12 @@ const df2 = new Intl.DateTimeFormat( const d3 = new Date("2020-03-09T00:00Z"); const d4 = new Date("2021-03-09T00:00Z"); -// Before tz202a change will get "March 8, 2020 at 5:00:00 PM PDT" -assertEquals("March 8, 2020 at 5:00:00 PM MST", df2.format(d3)); +// Before tz2020a change will get "March 8, 2020 at 5:00:00 PM PDT" +// In tz2020a it should be "March 8, 2020 at 5:00:00 PM MST" +// but tz2020b roll this back. +assertEquals("March 8, 2020 at 5:00:00 PM PDT", df2.format(d3)); -// Before tz202a change will get "March 8, 2021 at 4:00:00 PM PST" +// Before tz2020a change will get "March 8, 2021 at 4:00:00 PM PST" assertEquals("March 8, 2021 at 5:00:00 PM MST", df2.format(d4)); // C. Test America/Nuuk renamed from America/Godthab.