summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahooinc.com>2022-01-17 07:44:18 +0000
committerArne H Juul <arnej@yahooinc.com>2022-01-17 07:44:18 +0000
commit03bed08b4b865d1758ee17b2b2ab001f4b77a4bf (patch)
tree3f61ef09289e2eea1457d50f32bb3fa199b518c9
parent111335bbcb3b88e94952383e52ba53da592f43d0 (diff)
update icu4j to latest stable version
* note: this adds support for newer Unicode versions, so will give changed collation for text that use characters that are newly added. For example, Unicode 14 adds three glyphs U+9FFD, U+9FFE, and U+9FFF requested by the Macao Special Administrative Region: https://appsrv.cse.cuhk.edu.hk/~irg/irg/irg53/IRGN2430R.pdf
-rw-r--r--container-search/src/test/java/com/yahoo/search/query/SortingTestCase.java4
-rw-r--r--parent/pom.xml2
2 files changed, 3 insertions, 3 deletions
diff --git a/container-search/src/test/java/com/yahoo/search/query/SortingTestCase.java b/container-search/src/test/java/com/yahoo/search/query/SortingTestCase.java
index 9e56fba0e17..4f14ae066cb 100644
--- a/container-search/src/test/java/com/yahoo/search/query/SortingTestCase.java
+++ b/container-search/src/test/java/com/yahoo/search/query/SortingTestCase.java
@@ -63,8 +63,8 @@ public class SortingTestCase {
private void requireThatChineseHasCorrectRules(Collator col) {
final int reorderCodes [] = {UScript.HAN};
- assertEquals("8.0.0.0", col.getUCAVersion().toString());
- assertEquals("153.64.29.0", col.getVersion().toString());
+ assertEquals("14.0.0.0", col.getUCAVersion().toString());
+ assertEquals("153.112.40.0", col.getVersion().toString());
assertEquals(Arrays.toString(reorderCodes), Arrays.toString(col.getReorderCodes()));
assertNotEquals("", ((RuleBasedCollator) col).getRules());
diff --git a/parent/pom.xml b/parent/pom.xml
index 8afebd281c9..ebff2a975f4 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -474,7 +474,7 @@
<dependency>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
- <version>57.2</version>
+ <version>70.1</version>
</dependency>
<dependency>
<groupId>com.infradna.tool</groupId>