Skip to content

v0.4.0

Compare
Choose a tag to compare
@pnwpedro pnwpedro released this 09 Jun 17:38
· 20 commits to main since this release
d3665c3

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
  ...