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
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.