Skip to content

Releases: firebase/firebase-functions

v3.5.0

20 Mar 18:18
Compare
Choose a tag to compare
  • Adds support for defining max number of instances for a function. Example:

    functions.runWith({
      maxInstances: 10
    }).https.onRequest(...);
    

    Learn more about max instances in the Google Cloud documentation.

  • Fixes TypeScript build error when package-lock.json is present by updating dependencies (Issue #637).

v3.4.0

19 Mar 18:10
Compare
Choose a tag to compare
  • Adds support for writing scheduled functions under handler namespace.

v3.3.0

10 Oct 21:58
Compare
Choose a tag to compare
  • Add a helper function for the Firebase Emulator suite.

v3.2.0

24 Jul 20:39
Compare
Choose a tag to compare
  • Adds support for Test Lab triggered functions with functions.testLab.
  • Upgrade lodash dependency to resolve security vulnerability CVE-2019-10744.

v3.1.0

08 Jul 22:36
Compare
Choose a tag to compare
  • Adds region support for us-east4.

v3.0.2

25 Jun 23:38
Compare
Choose a tag to compare
  • bug where auth.UserRecord.metadata was undefined.

v3.0.1

12 Jun 23:35
Compare
Choose a tag to compare
  • Includes required types for functions SDK.

v3.0.0

12 Jun 22:57
Compare
Choose a tag to compare
  • [breaking change] The Firebase Functions SDK no longer supports Node 6. Developers must use Node 8.13.0 or higher.
  • [breaking change] The Firebase Functions SDK no longer supports Firebase Tools SDK below version 6.8.0.
  • [breaking change] FIREBASE_PROJECT environment variable is no longer supported and has been supplanted by FIREBASE_CONFIG.
  • Fixed bug in Node 10 where events from Node 10 were not parsed properly resulting in undefined.
  • Set GCLOUD_PROJECT from FIREBASE_CONFIG when missing.

v2.3.1

09 May 18:19
Compare
Choose a tag to compare
  • Adds region support for europe-west2 and asia-east2

v2.3.0

18 Apr 22:47
Compare
Choose a tag to compare
  • Adds pubsub.schedule()