Hi!
First of all, thank you for all the libraries you've built, they're magnificent! :)
I've encountered an error when working with \SebastianFeldmann\Git\Command\Diff\Compare\FullDiffList: it goes crazy when the diff has binary/UTF-8 data. After some digging I found out the reason: it's all because of \SebastianFeldmann\Cli\Output\Util::normalizeLineEndings. For example, the following text will be processed incorrectly: text: хо — the last two symbols are Cyrillic letters, but here's the result of the method:
php > var_dump(\SebastianFeldmann\Cli\Output\Util::normalizeLineEndings('text: хо'));
string(10) "text: �
о"
It could be enough to replace the regex pattern with ~(BSR_ANYCRLF)*\R~u — at least it fixes my case, but I'm not sure about the possible side effects.
Hi!
First of all, thank you for all the libraries you've built, they're magnificent! :)
I've encountered an error when working with
\SebastianFeldmann\Git\Command\Diff\Compare\FullDiffList: it goes crazy when the diff has binary/UTF-8 data. After some digging I found out the reason: it's all because of\SebastianFeldmann\Cli\Output\Util::normalizeLineEndings. For example, the following text will be processed incorrectly:text: хо— the last two symbols are Cyrillic letters, but here's the result of the method:It could be enough to replace the regex pattern with
~(BSR_ANYCRLF)*\R~u— at least it fixes my case, but I'm not sure about the possible side effects.