Skip to content

v0.3.0

Choose a tag to compare

@github-actions github-actions released this 25 Oct 07:55
· 23 commits to master since this release
54732f1

Minor Changes

  • 945dc3c: This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of fireworkers in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.2.0 or ~0.2.0. See npm's documentation about semver for more information.

    • feat: add new Firestore.set() method that matches the behavior of the SDK's setDoc.
    • fix: update Firestore.update() to match the behavior of the SDK's updateDoc:
      • Fields will be merged instead of overriding the entire document.
      • Operations will fail if the document doesn't exist.

Patch Changes

  • 9d619ba: - fix: process numbers as double instead of integer.