v3.13.0
·
430 commits
to master
since this release
- Adds
serviceAccount
option toruntimeOptions
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
to10.4.1
to fix a vulnerability.