-
Notifications
You must be signed in to change notification settings - Fork 510
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Patches created with v5 can not be applied with v7 #588
Comments
Hmm, interesting. Looking at the release notes, the only thing I spot that I'd expect to be pertinent is this:
Perhaps that's relevant here - i.e. perhaps v5 was generating a patch file that wasn't actually a valid patch file (in the sense of being something Alternatively, perhaps your repro involves a valid patch that GNU Time for me to figure out which! |
I think it's the thing I speculated above. If I use jsdiff v5 to generate a patch between 0.md and 1.md in your fixture, I get this, which seems nonsensical:
The first
So I'm happy about v7 rejecting this (it should! The patch is nonsense!) but I should update the release notes to note the change. I'm not sure if I ever actually realised that v5 was able to apply these invalid patches successfully; I think perhaps I accidentally or unthinkingly fixed it in the course of fixing the broken logic that was generating the invalid patches and never consciously registered that it was a distinct change that also needed release notes. |
@ExplodingCabbage Thanks for giving this a detailed look! Personally, my app isn't in production, so I can just wipe my database and import fixtures with v7 and everything is hunky dory. This seems like it could block moving to v7 for anyone with patches they need to keep. Do you have any advice for anyone that wants to look in to migrating their patches to be valid? Just remove all instances of |
Repro: https://codesandbox.io/p/devbox/x5s3pc
I'm storing a full original text document and patches for updates to that document.
After updating
diff
to version 7, the patches I had stored could not be applied.diff.applyPatch(<originalText>, <patch>);
would return false.Is this expected as part of a breaking change? I don't see any mention of breaking changes or migration needed.
The text was updated successfully, but these errors were encountered: