File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 36
36
37
37
# Reset this number to 0 on major V8 upgrades.
38
38
# Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string' : '-node.75 ' ,
39
+ 'v8_embedder_string' : '-node.76 ' ,
40
40
41
41
##### V8 defaults for Node.js #####
42
42
Original file line number Diff line number Diff line change @@ -30,10 +30,12 @@ const df2 = new Intl.DateTimeFormat(
30
30
const d3 = new Date ( "2020-03-09T00:00Z" ) ;
31
31
const d4 = new Date ( "2021-03-09T00:00Z" ) ;
32
32
33
- // Before tz202a change will get "March 8, 2020 at 5:00:00 PM PDT"
34
- assertEquals ( "March 8, 2020 at 5:00:00 PM MST" , df2 . format ( d3 ) ) ;
33
+ // Before tz2020a change will get "March 8, 2020 at 5:00:00 PM PDT"
34
+ // In tz2020a it should be "March 8, 2020 at 5:00:00 PM MST"
35
+ // but tz2020b roll this back.
36
+ assertEquals ( "March 8, 2020 at 5:00:00 PM PDT" , df2 . format ( d3 ) ) ;
35
37
36
- // Before tz202a change will get "March 8, 2021 at 4:00:00 PM PST"
38
+ // Before tz2020a change will get "March 8, 2021 at 4:00:00 PM PST"
37
39
assertEquals ( "March 8, 2021 at 5:00:00 PM MST" , df2 . format ( d4 ) ) ;
38
40
39
41
// C. Test America/Nuuk renamed from America/Godthab.
You can’t perform that action at this time.
0 commit comments