Skip to content

Release 1.1.0

Choose a tag to compare

@bfops bfops released this 16 Apr 01:51
· 2018 commits to master since this release

We're releasing our first version bump since 1.0! πŸŽ‰

Row-level security

This release includes public access for row-level security.

See https://spacetimedb.com/docs/rls for more info on how to use it!

Improved usability for timestamps and durations

From the PR #2502:

Specifically, we add methods and trait impls for T x U -> V, where x is a binary operator, either + or -:

  • Timestamp x TimeDuration -> Timestamp
  • Timestamp x Duration -> Timestamp.
    • This one is kind of weird, since we convert the Duration into a TimeDuration before doing math with it, which may be a lossy conversion depending on platform.
  • TimeDuration x TimeDuration -> TimeDuration.

Other notable improvements

  • Features to save disk space and reduce memory usage
  • Support for enums as index keys
  • Restore CLI functionality for printing the number of rows affected by an operation

What's Changed

Full Changelog: v1.0.1...v1.1.0