Releases: fauna-labs/serverless-fauna
Releases · fauna-labs/serverless-fauna
v0.4.4
Whats Changed
- v10 collection definitions now support configuring
ttl_days
andhistory_days
v0.4.3
v0.4.0
Improvements
- Fixes a bug where the remove transaction happens even if the create/update transaction fails
- Improves deploy and remove query composition to allow for a larger number of resources
New features
- Add support for Collections, including indexes and constraints
- Add support for Roles
Breaking changes
Remove support for declaring both v4 and v10 schema in a single file. Instead, move to single top-level property, fauna, with a version sub-property.
Before, in one file:
fqlx:
...
fauna:
...
After, in separate files:
fauna:
version: 10
...
fauna:
version: 4 # optional, default is 4
...