📣New ways to setup permissions for shareable content. Read the release notes.

    Triplit Release Notes 3/1/2024

    • Added support for has and !has operators in the where clause for the Set type.
    // Find all episodes that have Alice in the cast
    client.query('episodes').where('cast', 'has', 'Alice');
    
    // Find all episodes that don't have Bob in the cast
    client.query('episodes').where('cast', '!has', 'Bob');
    
    • Drastically reduced memory usage on server when syncing with clients.

    • Improved query performance when using limit.

    • Various other bug fixes and performance improvements.