Skip to content

Releases: samuelgozi/firebase-firestore-lite

Typescript

27 Apr 12:23
26d9a6d
Compare
Choose a tag to compare
Typescript Pre-release
Pre-release

Finally migrated to typescript.
Although I'm a big fan of plain JS. I like the help type suggestion gives developers.

There should be no breaking changes.
However, if you are importing some of the "private" files directly, then your code will break.
There are no longer default exports for List and Document.

Transforms

13 Apr 20:23
Compare
Choose a tag to compare
Transforms Pre-release
Pre-release

Feature

This beta release adds a big new feature called Transforms.
You can read more about it here: #14

Breaking changes

  • Calling ref.update() will now fail if the document does not exist. If you are sure you want to update a document even when it doesn't exist, then you can use reference.set() or pass true as the second argument to reference.update({...}, true) method. This will remove the requirement for the document to exist.

v0.5.0

12 Apr 11:10
Compare
Choose a tag to compare
v0.5.0 Pre-release
Pre-release

Breaking changes:
When constructing a query and specifying an order, you should now use asc/desc instead of ascending/descending. When unspecified the order on each field will default to asc.

v0.4.0

26 Mar 18:51
Compare
Choose a tag to compare
v0.4.0 Pre-release
Pre-release

This release adds two atomic operations:

  • Transactions
  • Batch Writes