Skip to content

v0.1.6

Choose a tag to compare

@samselikoff samselikoff released this 14 Oct 19:04
· 1949 commits to master since this release

Update notes:

  • If you happened to be manipulating db objects using object references instead of the db API, e.g.

    let contact = db.contacts.find(1);
    contact.name = 'Gandalf';
    

    this will no longer work, as the db query methods now return copies of db data. This was considered a private API. You'll need to use the db api (e.g. db.update) to make changes to db data.

Changes: