Skip to content

Releases: firebase/firebase-functions

v1.0.2

24 Apr 21:27
Compare
Choose a tag to compare
  • Fixed bug where developers writing functions in TypeScript had to disable noImplicitAny in their tsconfig.json in order to avoid compiler errors.

v1.0.1

06 Apr 18:31
Compare
Choose a tag to compare
  • Update firebase-admin peer dependency to v5.12.0

v1.0.0

03 Apr 15:45
Compare
Choose a tag to compare
  • v1 release of firebase-functions contains several breaking changes. Please see migration guide at https://firebase.google.com/docs/functions/beta-v1-diff.

v0.9.1

22 Mar 00:17
Compare
Choose a tag to compare
  • Fixed bug where HTTPS callable function will reject all requests with an auth token if the function has not called firebase.initializeApp.
  • Corrected type signature for firestore.DeltaDocumentSnapshot.

v0.9.0

20 Mar 16:36
Compare
Choose a tag to compare
  • Adds HTTPS Callable Functions, a kind of HTTPS trigger that can be called from a Firebase client SDK. Visit https://firebase.google.com/docs/functions/callable to learn more.

v0.8.2

13 Mar 21:07
Compare
Choose a tag to compare
  • Updated firebase-admin peer dependency to v5.10.0.
  • Fix bug where if there's a leading slash in the path provided to a database function, it turns into 2 slashes.
  • Warn when GCLOUD_PROJECT environment variable was not set in a unit test.

v0.8.1

17 Jan 22:22
Compare
Choose a tag to compare
  • Updated firebase-admin peer dependency to v5.8.1

v0.8.0

03 Jan 22:19
Compare
Choose a tag to compare
  • firebase-admin peer dependency is now v5.6.0. Must update firebase-admin version inside of your functions directory's package.json and re-install locally.
  • For Firestore events where no previous data exists, event.data.previous is no longer null, it is always a Firebase DocumentSnapshot. event.data.previous.exists will be false if there is no previous data. (This change was previously released in v0.7.4, and reverted in v0.7.5.)

v0.7.5

20 Dec 01:12
Compare
Choose a tag to compare
  • Reverts change which causes the error "Cannot decode type from Firestore Value" if firebase-admin peer dependency not met.

v0.7.4

18 Dec 19:21
Compare
Choose a tag to compare
  • For Firestore events where no previous data exists, event.data.previous is no longer null, it is always a Firebase DocumentSnapshot. event.data.previous.exists will be false if there is no previous data.
  • Fixed regression where DeltaSnapshot constructor parameter ordering was changed.
  • The typing of functions.config() now guarantees the existence of functions.config().firebase.