Lucas Satabin
Lucas Satabin
Is this project still alive? Is there any chance to have 2.12 support? If no, what would be a good alternative?
BTW, I forked the project and bumped version numbers (sbt, scala, dependencies), is there any interest to merge these changes here and publish new artefacts?
The supported patch formats do not allow for this, so currently no. You can always define your own diff algorithm with custom patch format that supports this. It is a...
Well, none of the two standard patch formats supported by diffson out of the box can express this kind of diffs. You can always define you own patch format and...
Hello @juangrases, I'd say that the current behavior is correct as applying it to the `json1` value will produce `json2`. That's all what patches are about. The diff algorithm generates...
This is interesting. Is it only happening with fields named `id`?
Hi @jrfaller, it does use LCS based diff for arrays, and does not generate patches with `move` action. I was investigating other algorithms a while ago but haven’t looked into...
Thanks for reporting. My parser indeed works on decoded characters, so you need to decode it in the right way before going through the XML event pipe. This can be...
Parsed entities are DTD related (you have internal and external ones). What this says is that every externally defined entity (i.e. in a DTD that is physically in another file)...
Basically the approach taken in fs2-data is: - for textual format, you need to decode the bytes into characters first. - the textual parsers get a stream of characters that...