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
jsonpath is read-only and approval compares whole artifacts, so nothing
could address one location, compute a structured delta, or apply a partial
update to a JSON document. Add the three IETF primitives: RFC 6901 JSON
Pointer, RFC 6902 JSON Patch (all six ops, atomic apply, plus make_patch
diffing), and RFC 7386 JSON Merge Patch. Pure stdlib, validated against
the RFC test vectors. Wired through the facade, four AC_* executor
commands, MCP tools and the Script Builder.
Address, diff and patch JSON. Full reference: [`docs/source/Eng/doc/new_features/v63_features_doc.rst`](docs/source/Eng/doc/new_features/v63_features_doc.rst).
122
+
123
+
-**`resolve_pointer` / `make_patch` / `apply_patch` / `merge_patch` / `make_merge_patch`** (`AC_resolve_pointer`, `AC_apply_json_patch`, `AC_make_json_patch`, `AC_merge_patch`): `jsonpath` is read-only and `approval` compares whole artifacts — nothing could address one location, compute a structured delta, or apply a partial update. This adds the three IETF primitives — JSON Pointer (RFC 6901), JSON Patch (RFC 6902, all six ops, **atomic** apply), and JSON Merge Patch (RFC 7386, `null` deletes) — for config-drift detection, partial updates, HTTP PATCH bodies, and golden-master deltas. Pure-stdlib `json`+`copy`, validated against the RFC test vectors.
124
+
118
125
## What's new (2026-06-21) — Client-Side Rate Limiting
119
126
120
127
Stay under API quotas. Full reference: [`docs/source/Eng/doc/new_features/v62_features_doc.rst`](docs/source/Eng/doc/new_features/v62_features_doc.rst).
0 commit comments