Releases: firebase/firebase-functions
Releases · firebase/firebase-functions
v2.0.2
- Fixed issue in Firestore-triggered functions where timestamp values in Change objects for onUpdate and onWrite functions are Date objects instead of Timestamp objects.
v2.0.1
- Fix error where Node 6 functions experienced timeout errors.
v2.0.0
- [breaking change] For Firestore-triggered functions,
snapshot.createTime,snapshot.updateTime,snapshot.readTime, and any timestamp values insnapshot.data()are now [Firestore Timestamp](https://cloud.google.com/nodejs/docs/reference/firestore/0.15.x/Timestamp#properties) objects. - Support Node.js 8 runtime. To deploy your functions to Node.js 8, add
"engines": {"node": "8"}tofunctions/package.json. You will needfirebase-tools>=v4.0.0. - Support selection of regions for your functions through the
functions.regionmethod. Learn more in the [Firebase Documentation](https://firebase.google.com/docs/functions/locations). You will needfirebase-tools>=v4.0.0. - Support configuration of timeout and memory allocation through the
functions.runWithmethod. Learn more in the [Firebase Documentation](https://firebase.google.com/docs/functions/manage-functions#set_timeout_and_memory_allocation). You will needfirebase-tools>=v4.0.0.
v1.1.0
- Make raw HTTP request available to callable HTTP functions via
context.rawRequest.
v1.0.4
- Fixed integration test.
v1.0.3
- Fixed TypeScript type for
contextin event handlers to be always defined. - Updated firebase-admin peer-dependency to v5.12.1.
v1.0.2
- Fixed bug where developers writing functions in TypeScript had to disable
noImplicitAnyin their tsconfig.json in order to avoid compiler errors.
v1.0.1
- Update firebase-admin peer dependency to v5.12.0
v1.0.0
- v1 release of
firebase-functionscontains several breaking changes. Please see migration guide at https://firebase.google.com/docs/functions/beta-v1-diff.
v0.9.1
- 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.