Commit d1fdeef
committed
minor #62360 [Intl] Update data to ICU 78.1 (llupa)
This PR was squashed before being merged into the 6.4 branch.
Discussion
----------
[Intl] Update data to ICU 78.1
| Q | A
| ------------- | ---
| Branch? | 6.4
| Bug fix? | no
| New feature? | no
| Deprecations? | no
| Issues | Fixes #60041
| License | MIT
The latest version of ICU has a different format (for whatever reason), I only changed the literal dash to be a set of either dot and dash:
```php
$gitTag = $git->getLastTag(fn ($tag) => preg_match('#^release-[0-9]{1,}[.-][0-9]{1}$#', $tag));
$shortIcuVersion = strip_minor_versions(preg_replace('#release-([0-9]{1,})[.-]([0-9]{1,})#', '$1.$2', $gitTag));
```
All other file changes are from the update command 👍
### Tests changes:
`TimezonesTest.php` updated because there is a new `America/Coyhaique` timezone.
`ScriptsTest.php` updated because of four new scripts: `Berf`, `Sidt`, `Tayo`, and `Tols`.
`ResourceBundleTestCase::LOCALES` updated because of fifteen new locales (most are sub-regional): `ba`, `ba_RU`, `en_EE`, `en_GE`, `en_JP`, `en_LT`, `en_LV`, `en_UA`, `kk_Arab`, `kk_Arab_CN`, `ku_Latn`, `ku_Latn_IQ`, `ku_Latn_TR`, `ku_Latn_SY`, and `ku_SY`.
`LanguagesTest.php` updated because of three new ALPHA-3 codes: `kek`, `mww`, and `suz`.
`CurrenciesTest.php` updated because of new code: `XCG`.
Commits
-------
f7c316b8934 [Intl] Update data to ICU 78.11 file changed
+6
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
| 26 | + | |
26 | 27 | | |
27 | 28 | | |
28 | 29 | | |
| |||
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
| 36 | + | |
35 | 37 | | |
36 | 38 | | |
37 | 39 | | |
| |||
56 | 58 | | |
57 | 59 | | |
58 | 60 | | |
| 61 | + | |
| 62 | + | |
59 | 63 | | |
60 | 64 | | |
61 | 65 | | |
| |||
98 | 102 | | |
99 | 103 | | |
100 | 104 | | |
| 105 | + | |
101 | 106 | | |
102 | 107 | | |
103 | 108 | | |
| |||
130 | 135 | | |
131 | 136 | | |
132 | 137 | | |
| 138 | + | |
133 | 139 | | |
134 | 140 | | |
135 | 141 | | |
| |||
0 commit comments