mirror of https://github.com/nodejs/node.git
deps: update icu to 74.2
Refs: https://github.com/unicode-org/icu/releases/tag/release-74-2 PR-URL: https://github.com/nodejs/node/pull/51723 Refs: https://github.com/nodejs/node/pull/51721 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Steven R Loomis <srl295@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>pull/51792/head
parent
1c147423d0
commit
3f4f642ede
|
@ -59,7 +59,7 @@
|
|||
* This value will change in the subsequent releases of ICU
|
||||
* @stable ICU 2.6
|
||||
*/
|
||||
#define U_ICU_VERSION_MINOR_NUM 1
|
||||
#define U_ICU_VERSION_MINOR_NUM 2
|
||||
|
||||
/** The current ICU patchlevel version as an integer.
|
||||
* This value will change in the subsequent releases of ICU
|
||||
|
@ -132,7 +132,7 @@
|
|||
* This value will change in the subsequent releases of ICU
|
||||
* @stable ICU 2.4
|
||||
*/
|
||||
#define U_ICU_VERSION "74.1"
|
||||
#define U_ICU_VERSION "74.2"
|
||||
|
||||
/**
|
||||
* The current ICU library major version number as a string, for library name suffixes.
|
||||
|
@ -151,7 +151,7 @@
|
|||
/** Data version in ICU4C.
|
||||
* @internal ICU 4.4 Internal Use Only
|
||||
**/
|
||||
#define U_ICU_DATA_VERSION "74.1"
|
||||
#define U_ICU_DATA_VERSION "74.2"
|
||||
#endif /* U_HIDE_INTERNAL_API */
|
||||
|
||||
/*===========================================================================
|
||||
|
|
Binary file not shown.
|
@ -1023,7 +1023,7 @@ struct DateTimePatternGenerator::AvailableFormatsSink : public ResourceSink {
|
|||
AvailableFormatsSink(DateTimePatternGenerator& _dtpg) : dtpg(_dtpg) {}
|
||||
virtual ~AvailableFormatsSink();
|
||||
|
||||
virtual void put(const char *key, ResourceValue &value, UBool isRoot,
|
||||
virtual void put(const char *key, ResourceValue &value, UBool /*isRoot*/,
|
||||
UErrorCode &errorCode) override {
|
||||
const UnicodeString formatKey(key, -1, US_INV);
|
||||
if (!dtpg.isAvailableFormatSet(formatKey) ) {
|
||||
|
@ -1032,7 +1032,7 @@ struct DateTimePatternGenerator::AvailableFormatsSink : public ResourceSink {
|
|||
// derived from std patterns, but not a previous availableFormats entry:
|
||||
const UnicodeString& formatValue = value.getUnicodeString(errorCode);
|
||||
conflictingPattern.remove();
|
||||
dtpg.addPatternWithSkeleton(formatValue, &formatKey, !isRoot, conflictingPattern, errorCode);
|
||||
dtpg.addPatternWithSkeleton(formatValue, &formatKey, true, conflictingPattern, errorCode);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
@ -123,19 +123,19 @@ if (isMockable) {
|
|||
locales.map((LANG) => runEnvOutside({ LANG, TZ: 'Europe/Zurich' }, 'new Date(333333333333).toLocaleString()')),
|
||||
[
|
||||
'7/25/1980, 1:35:33 AM',
|
||||
'1980/7/25 1:35:33',
|
||||
'1980/7/25 01:35:33',
|
||||
'25/7/1980, 1:35:33 am',
|
||||
'25/7/1980, 1:35:33',
|
||||
'25/07/1980 1:35:33',
|
||||
'25/07/1980 01:35:33',
|
||||
'٢٥/٧/١٩٨٠، ١:٣٥:٣٣ ص',
|
||||
'২৫/৭/১৯৮০, ১:৩৫:৩৩ AM',
|
||||
'25.07.1980, 1:35:33',
|
||||
'25/07/1980, 1:35:33',
|
||||
'25.07.1980, 01:35:33',
|
||||
'25/07/1980, 01:35:33',
|
||||
'25/7/1980، 1:35:33 AM',
|
||||
'25/7/1980, 01.35.33',
|
||||
'25.7.1980, 1:35:33',
|
||||
'25.7.1980, 01:35:33',
|
||||
'1980/7/25 1:35:33',
|
||||
'25/7/1980 1:35:33',
|
||||
'25/7/1980 01:35:33',
|
||||
'२५/७/१९८०, १:३५:३३ AM',
|
||||
'25/7/1980 1:35:33 AM',
|
||||
]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[
|
||||
{
|
||||
"url": "https://github.com/unicode-org/icu/releases/download/release-74-1/icu4c-74_1-src.tgz",
|
||||
"md5": "71e60b22697c4f35820a1897417dbab4"
|
||||
"url": "https://github.com/unicode-org/icu/releases/download/release-74-2/icu4c-74_2-src.tgz",
|
||||
"md5": "94c0b370f43123ea92b146ebea9c709d"
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue