Add a function for performing a JSON Merge Patch.
Review Request #9262 — Created Oct. 11, 2017 and submitted
This introduces
djblets.util.json_utils.json_merge_patch
, an
implementation of JSON Merge Patch (RFC 7396), which is used to apply a
set of changes to a JSON-compatible data structure. Merge Patches allow
for adding new values (which may be complex JSON objects) to
dictionaries or arrays, remove keys from dictionaries or arrays, or
replace existing values.This has additional support for access control around keys, preventing
certain keys from being replaced or added, optionally aborting the
patching process if encountered.
Unit tests pass.
Tested manually with several targets and dictionaries.
- Change Summary:
-
- Added/improved documentation.
- Used keyword arguments when calling
can_write_key_func
.
- Commit:
-
2df5486990a119cf5af496d1172aec8be28f01aa705c1db6cf6ec30decb9688ef53fd6ae07117131
Checks run (2 succeeded)
flake8
passed.
JSHint
passed.
- Change Summary:
-
- Renamed the "target" attribute (and related variables/docs) to "doc", helping make it clear that the target itself isn't being modified.
- Updated unit tests to sanity-check that no operations end up modifying the original document.
- Commit:
-
705c1db6cf6ec30decb9688ef53fd6ae07117131bb5ba552322a5994605d30cbc634ff6f38f5b35e