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
New openStore() in the generated code to simplify creating a store instance, especially on Flutter (uses application
documents directory as a default).
Add support for Entities used together with some custom code-generators (immutable objects, JSON, ...).
See @Entity(realClass: ) new field and its docs.
New Query.param() to support reusable queries (changing condition values before execution).
See Reusing queries in docs.
Rename semi-internal QueryRelationProperty to QueryRelationToOne and QueryRelationMany to QueryRelationToMany
to help users pick the right link function: link() vs linkMany().
Add support for the entity/property/relation rename or reset workflow.
See Data model updates for details.
Add support for ToOne relation cycles.
Enforce you can only open the same database directory once (multiple parallel Store instances are not allowed).
Fix macOS sandbox database directory permissions (see notes in Flutter-specific "Getting Started" docs).
Fix ToMany showing duplicate items after adding them before reading the previous list.
Fix invalid native free during store shutdown if large data was inserted (more than 64 kilobytes flatbuffer).