0.6.0
Features
- Add quota monitoring (#806) (9e6759e, closes #791, #793, #797, #789, #801)
- Convert some of the validation storage errors into metrics (#810) (66221d8b, closes #795)
- switch from
regex_contains
tostarts_with
(#805) (a79f8407)
DEPLOYMENT NOTE!
This release ships with quota monitoring disabled.
Enabling quota will require a modification to the user_collections
table:
alter table user_collections add column (total_bytes bigint, count int);
This is included in migrations/2020-08-24-091401_add_quota
.
You will also need to specify SYNC_ENABLE_QUOTA=1
in the run time environment.