------
- Improve PATCH paths passed into handlers.
If you have custom handlers for patch calls defined in your adapters file
(eg. def handle_add(path, value, operation): ...) then you will need to
update your handlers to accept a 3-tuple in place of the current string held
by path. A quick fix for this is to add the following line to the beginning of
each handler:
path, subattr, uri = path
Thanks for your patience as we migrate to a better system for handling PATCH
paths.