Skip to content

v3.13.0

Compare
Choose a tag to compare
@google-oss-bot google-oss-bot released this 07 Dec 23:48
· 430 commits to master since this release
  • Adds serviceAccount option to runtimeOptions to specify which service account Cloud Function should use at runtime. For example:
const functions = require('firebase-functions');

exports.myFunction = functions.runWith({
    serviceAccount: '[email protected]'
    // OR
    // serviceAcount: 'test-sa@"
    // OR
    // serviceAccount: 'default'
  })

Requires [email protected] or later. Thanks @egor-miasnikov!

  • Upgrades highlight.js to 10.4.1 to fix a vulnerability.