This repository has been archived by the owner on Jul 26, 2024. It is now read-only.
Releases: ssddanbrown/HtmlDiff
Releases · ssddanbrown/HtmlDiff
v1.0.3
- Fixed issues with
range
usage which could throw "undefined array key" errors in certain scenarios. - Updated GitHub actions to include PHP 8.3 for testing, and to use the latest action versions.
Full Changelog: v1.0.2...v1.0.3
v1.0.2 - Multibyte Fixing
Changes
- Fixed case where certain changes around multi-byte characters could cause issues. Required custom multi-byte character handling to retain performance. Issue originally reported in the BookStack repo.
v1.0.1 - Performance
Changes
- Swapped out some uses of
mb_
functions for non-mb equivilients for a significant speed increase. Anmb_strlen
check within a for loop definition could use up a large amount of time for a large string, and that was called for each character parsed resulting in much slower than expected performance.