Skip to content
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

String op name in compact JSON Patch encoding #92

Closed
streamich opened this issue Nov 16, 2021 · 1 comment · Fixed by #119
Closed

String op name in compact JSON Patch encoding #92

streamich opened this issue Nov 16, 2021 · 1 comment · Fixed by #119

Comments

@streamich
Copy link
Owner

Allow in compact JSON Patch encoding to use string op names.

Instead of:

export type CompactAddOp = [opcode: OPCODE.add, path: string | Path, value: unknown];

allow:

export type CompactAddOp = [opcode: OPCODE.add | 'add', path: string | Path, value: unknown];
@streamich streamich created this issue from a note in Kanban board (To do) Nov 16, 2021
@streamich streamich moved this from To do 🧺 to In progress 🏎 in Kanban board Feb 20, 2022
Kanban board automation moved this from In progress 🏎 to Done 👍 Feb 20, 2022
@streamich
Copy link
Owner Author

🎉 This issue has been resolved in version 6.2.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Kanban board
Done 👍
Development

Successfully merging a pull request may close this issue.

1 participant