NightOwl888 opened a new pull request, #1161: URL: https://github.com/apache/lucenenet/pull/1161
<!-- Thank you for submitting a pull request to our repo. --> <!-- Please do NOT submit PRs for features in newer versions of Lucene. We should keep the target version consistent across our repository to make the upgrade process to newer versions of Lucene go smoothly. --> <!-- If this is your first PR in the Lucene.NET repo, please run through the checklist below to ensure a smooth review and merge process for your PR. --> - [X] You've read the [Contributor Guide](https://github.com/apache/lucenenet/blob/main/CONTRIBUTING.md) and [Code of Conduct](https://www.apache.org/foundation/policies/conduct.html). - [ ] You've included unit or integration tests for your change, where applicable. - [ ] You've included inline docs for your change, where applicable. - [x] There's an open issue for the PR that you are making. If you'd like to propose a change, please [open an issue](https://github.com/apache/lucenenet/issues/new/choose) to discuss the change or find an existing issue. <!-- Once all that is done, you're ready to go. Open the PR with the content below. --> Summary of the changes (Less than 80 chars) Fixes #1044, Fixes #1135, Fixes #1159 ## Description This bumps ICU4N to 60.1.0-alpha.438 which contains patches to address: - ICU4J 60 had a concurrency bug when cloning dictionary-based break engine instances where the state was shared between threads after cloning. This bug was transferred from upstream in ICU4N (fixed in https://github.com/NightOwl888/ICU4N/pull/96). See #1044. - ICU4N had another shared memory problem in the CJK dictionary engine, which was addressed in https://github.com/NightOwl888/ICU4N/pull/109 by reverting the System.Memory optimizations, for now. - ICU4N.Text (Normalizer + Normalizer2): Addressed access to unsafe pointers that was addressed in https://github.com/NightOwl888/ICU4N/pull/101 - The Normalizer2 in ICU4N had several allocation bugs that were addressed in https://github.com/NightOwl888/ICU4N/pull/104 This also fixes: - #1135 - Bumped .NET 9 SDK to 9.0.200 minimum to address issue with satellite assemblies for 3-character language codes not being copied to build/publish output (for ICU4N.Resources) - #1159 - Log exceptions that occur when calling `Close()` in `BaseTokenStreamTestCase` when there is already an exception being thrown by the test - `ThaiWordBreaker`: Clear the state of the `transitions` queue when `SetText()` is called. This was causing random `CheckRandomData()` test failures when there was a failure in the middle of a set of transitions. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@lucenenet.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org