We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07ca97f commit df59271Copy full SHA for df59271
CHANGELOG.md
@@ -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
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