Skip to content

Commit df59271

Browse files
joehansamtstern
andauthored
Adds changelog entries for v3.13.0 (#824)
* adds changelog entries for 3.13.0 * formats * Update CHANGELOG.md Co-authored-by: Sam Stern <samstern@google.com> * Update CHANGELOG.md Co-authored-by: Sam Stern <samstern@google.com> * Update CHANGELOG.md Co-authored-by: Sam Stern <samstern@google.com> * formats * formats Co-authored-by: Sam Stern <samstern@google.com>
1 parent 07ca97f commit df59271

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
- Adds `serviceAccount` option to `runtimeOptions` to specify which service account Cloud Function should use at runtime. For example:
2+
3+
```
4+
const functions = require('firebase-functions');
5+
6+
exports.myFunction = functions.runWith({
7+
serviceAccount: 'test-sa@project.iam.gserviceaccount.com'
8+
// OR
9+
// serviceAcount: 'test-sa@"
10+
// OR
11+
// serviceAccount: 'default'
12+
})
13+
14+
```
15+
16+
Requires firebase-tools@8.18.0 or later. Thanks @egor-miasnikov!
17+
18+
- Upgrades `highlight.js` to `10.4.1` to fix a vulnerability.

0 commit comments

Comments
 (0)