- Finer-grained access control over exposed APIs on a per-column basis:
- Columns can be explicitly excluded via a
excluded_columns
config option
rendering them inaccessible for both: reads and writes. This is different
from columns prefixed with "_", which are only hidden from read operations. - A new
_REQ_FIELDS_
table is availble during access checks forUPDATE
and
CREATE
endpoints allowing to check for field presence in requests, e.g.
'field' IN _REQ_FIELDS_
. A field in_REQ
_ will beNULL
whether it was
absent or explicitly passed asnull
.
- Columns can be explicitly excluded via a
- Early message queue work (WIP).
- Updated dependencies.
Full Changelog: v0.9.4...v0.10.0