-
According to RFC 6902, a `move` operation should fail if the `from` location does not exist. The spec also states that a `replace` operation should fail if the `path` does not exist.
My testing show…
-
Same as News, this should implement the RFC 6902 defined patches:
```
PATCH /users/123
[
{"op": "add", "path": "/name", "value": "Updated username"},
{"op": "copy", "from": "/email", "path": …
-
kustomize.yaml
```
resources:
- ../deployment.yaml
patchesJson6902:
- path: secret_patch.yaml
target:
group: apps
kind: Deployment
name: base
version: v1
```
secret_pat…
miekg updated
6 years ago
-
Partial updates are a necessity, but should _not_ be done via HTTP PUT as described here (https://github.com/wufm/osdi-docs#updating-a-resource). The semantics of PUT is to replace the entire resourc…
-
Creating a new issue to continue the discussion (#37) ; "whether copy object by reference or by value"...
Your last comment:
```
Your second point, about copying by value rather than reference, i…
-
## Summary
I'm facing an issue that relates to a subtle technicality of the JSON Patch "replace" operation. In one of my model classes, I'm trying to enforce a requirement that a client does not tr…
-
**Describe the bug**
Failed to deploy to DO using image "freebsd-11-2-x64-zfs".
**To Reproduce**
Steps to reproduce the behavior:
1. Use image freebsd-11-2-x64-zfs for digitalocean provider…
fgsch updated
6 years ago
-
Please specify:
* [x] Feature request: support JSON Patch
* [x] I am willing to implement this myself
Any plan to support the [JSON Patch](http://jsonpatch.com/) specified in [RFC 6902](http:…
-
@janl:
> Currently a doc update needs the whole doc body sent to the server. There are some obvious performance improvements possible. For the longest time, I wanted to see if we can model sub-docume…
-
I see no difference in `copy` operation from `move`. I believe, [this line](https://github.com/chbrown/rfc6902/blob/76f742a631cede06b64aeefdc35b1fc32e9e8873/patch.ts#L160) should be removed.