You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added Document:keyInfo(). It returns the last updated DataStoreKeyInfo returned from loading, saving, or closing the document. (#50)
Migrations can now update the data mutably. Note: The value still needs to be returned from the migration function. (#51)
Gracefully handle validate throwing an error in Collection:load. Before it would keep retrying the load and spam the console with confusing errors. (#52)
Allow defaultData to be a function. The return value will be validated when a new document is created. (#53)
Migrations can now be marked as backwardsCompatible. This allows documents to be loaded on servers with an older version as long as they are compatible.
For more information, see the docs. (#54)
The validate option for collections is now optional. (#56)
Add freezeData option to collections to allow mutable updates to documents. (#57)