You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 16, 2022. It is now read-only.
copying an element into an array previously replaced the element at that index; it now properly adds as per the spec:
This operation is functionally identical to an "add" operation at the target location using the value specified in the "from" member.
copying an object previously would copy the pointer to the object internally, meaning a subsequent replace on the target object would modify the origin object, as well.
It adds support for escape ordering to the path-finding extension (/key=value). If you have a path that you want to find and the value contains a /, use ~1 to escape the slash, e.g. /key=a~1b to match an object with key key and value a/b.
It also adds support for the test operation, to test that a value at a certain path matches the given value.