mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
chore: bump chromium to 110.0.5481.100 (23-x-y) (#37183)
* chore: bump chromium in DEPS to 110.0.5481.78 * chore: bump chromium in DEPS to 110.0.5481.97 * 4240359: [intl] Revert date formatting behavior change from ICU 72 https://chromium-review.googlesource.com/c/v8/v8/+/4240359 * chore: bump chromium in DEPS to 110.0.5481.100 --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
This commit is contained in:
committed by
GitHub
parent
92d966c215
commit
9885c1cfe6
2
DEPS
2
DEPS
@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'
|
||||
|
||||
vars = {
|
||||
'chromium_version':
|
||||
'110.0.5481.77',
|
||||
'110.0.5481.100',
|
||||
'node_version':
|
||||
'v18.12.1',
|
||||
'nan_version':
|
||||
|
||||
@@ -50,7 +50,6 @@ src_iwyu_in_cleanup_queue_cc.patch
|
||||
fix_expose_lookupandcompile_with_parameters.patch
|
||||
fix_prevent_changing_functiontemplateinfo_after_publish.patch
|
||||
chore_add_missing_algorithm_include.patch
|
||||
fix_tolocalstring_unicode_mismatch.patch
|
||||
enable_crashpad_linux_node_processes.patch
|
||||
allow_embedder_to_control_codegenerationfromstringscallback.patch
|
||||
cherry-pick-09ae62b.patch
|
||||
|
||||
@@ -1,27 +0,0 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Shelley Vohr <shelley.vohr@gmail.com>
|
||||
Date: Fri, 25 Nov 2022 10:18:24 +0100
|
||||
Subject: fix: toLocalString Unicode mismatch
|
||||
|
||||
Fixes a failure resultant of V8 updating to ICU 72.
|
||||
|
||||
Refs https://chromium-review.googlesource.com/c/v8/v8/+/4004606.
|
||||
|
||||
Date.toLocalString now uses uU+202f (narrow nbsp) before "PM" and "AM".
|
||||
|
||||
This patch can be removed when https://github.com/nodejs/node/pull/45068
|
||||
is backported to Node.js v18.
|
||||
|
||||
diff --git a/test/parallel/test-intl.js b/test/parallel/test-intl.js
|
||||
index 7d1742f2c7d1c6e335d3ccfc81ce0834c1de9c19..df391bd4de3db9a41f3274ca678c9034be9255fe 100644
|
||||
--- a/test/parallel/test-intl.js
|
||||
+++ b/test/parallel/test-intl.js
|
||||
@@ -97,7 +97,7 @@ if (!common.hasIntl) {
|
||||
// Test format
|
||||
{
|
||||
const localeString = date0.toLocaleString(['en'], optsGMT);
|
||||
- assert.strictEqual(localeString, '1/1/1970, 12:00:00 AM');
|
||||
+ assert.strictEqual(localeString, '1/1/1970, 12:00:00 AM');
|
||||
}
|
||||
// number format
|
||||
{
|
||||
Reference in New Issue
Block a user