We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For V4 and V5, the apply results of the values that do not exist in replace are inconsistent.
V5: replace operation does not apply: doc is missing key: /load
v4: update success.
Is there any consideration for this? Check whether the configuration will be modified in V5.
Also, where are the differences between v4 and v5? Is there a link available?
What is the difference between the v5 and cmd/json directories?
func TestJsonPatchNewOrRep(t *testing.T) { originalFile := []byte(`{ "allowedNfDomains": [ "nfdomain" ] }`) rawPatches := []byte(`[ { "op": "replace", "path": "/load", "value": 30 } ]`) patch, err := jsonpatch.DecodePatch(rawPatches) if err != nil { fmt.Println("cannot decode jsonpatch", err) } jsonPatched, err := patch.Apply(originalFile) if err != nil { fmt.Println("cannot apply jsonpatch: ", err) } fmt.Println(jsonPatched) }
The text was updated successfully, but these errors were encountered:
@evanphx Could you help me to answer it?
Sorry, something went wrong.
No branches or pull requests
For V4 and V5, the apply results of the values that do not exist in replace are inconsistent.
V5: replace operation does not apply: doc is missing key: /load
v4: update success.
Is there any consideration for this? Check whether the configuration will be modified in V5.
Also, where are the differences between v4 and v5? Is there a link available?
What is the difference between the v5 and cmd/json directories?
The text was updated successfully, but these errors were encountered: