Skip to content

Commit d2d5992

Browse files
committed
Merge remote-tracking branch 'public/master'
2 parents 9c4f680 + ef4e0db commit d2d5992

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+1833
-477
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @kevinajian @thechenky

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ All submissions, including submissions by project members, require review. We
2121
use GitHub pull requests for this purpose. Consult [GitHub Help] for more
2222
information on using pull requests.
2323

24-
[GitHub Help]: https://help.github.com/articles/about-pull-requests/
24+
[github help]: https://help.github.com/articles/about-pull-requests/

.github/ISSUE_TEMPLATE/---feature-request.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
---
22
name: "\U0001F4A1 Feature Request"
3-
about: Have a feature you'd like to see in the functions SDK? Request it through our
3+
about:
4+
Have a feature you'd like to see in the functions SDK? Request it through our
45
support channel.
56
title: ''
67
labels: ''
78
assignees: ''
89
---
9-
<!-- DO NOT DELETE
10+
11+
<!-- DO NOT DELETE
1012
validate_template=false
1113
template_path=.github/ISSUE_TEMPLATE/---feature-request.md
1214
-->

.github/ISSUE_TEMPLATE/---report-a-bug.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
name: "⚠️ Report a Bug"
2+
name: '⚠️ Report a Bug'
33
about: Think you found a bug in the SDK? Report it here.
44
title: ''
55
labels: ''
66
assignees: ''
7-
87
---
9-
<!-- DO NOT DELETE
8+
9+
<!-- DO NOT DELETE
1010
validate_template=true
1111
template_path=.github/ISSUE_TEMPLATE/---report-a-bug.md
1212
-->
@@ -21,11 +21,13 @@ template_path=.github/ISSUE_TEMPLATE/---report-a-bug.md
2121
be fixed in the latest versions. -->
2222

2323
**node:**
24+
2425
<!-- Run node --version and print the output here-->
2526

2627
**firebase-functions:**
2728

2829
**firebase-tools:**
30+
2931
<!-- Run firebase --version and print the output here-->
3032

3133
**firebase-admin:**
@@ -34,17 +36,14 @@ be fixed in the latest versions. -->
3436

3537
<!-- Provide a minimal, complete, and verifiable example (http://stackoverflow.com/help/mcve) -->
3638

37-
3839
### [REQUIRED] Steps to reproduce
3940

4041
<!-- Provide the steps needed to reproduce the issue given the above test case. -->
4142

42-
4343
### [REQUIRED] Expected behavior
4444

4545
<!-- What is the expected behavior? -->
4646

47-
4847
### [REQUIRED] Actual behavior
4948

5049
<!-- Please copy and paste any error logs from https://console.firebase.google.com/project/_/functions/logs.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ and make note of the following:
55
66
Run the linter and test suite
77
==============================
8-
Run `npm test` to make sure your changes compile properly and the tests all pass on your local machine.
9-
We've hooked up this repo with continuous integration to double check those things for you.
8+
Run `npm test` to make sure your changes compile properly and the tests all pass on your local machine.
9+
We've hooked up this repo with continuous integration to double check those things for you.
1010
1111
Add tests (if applicable)
1212
==============================
@@ -20,12 +20,11 @@ before sending PRs. We cannot accept code without this.
2020
2121
-->
2222

23-
2423
### Description
2524

2625
<!-- Are you fixing a bug? Implementing a new feature? Make sure we have the context around your change.
2726
Link to other relevant issues or pull requests. -->
2827

2928
### Code sample
3029

31-
<!-- Proposing an API change? Provide code samples showing how the API will be used. -->
30+
<!-- Proposing an API change? Provide code samples showing how the API will be used. -->

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
.tmp
44
.vscode/
55
coverage
6+
docgen/html
67
firebase-functions-*.tgz
78
integration_test/.firebaserc
89
integration_test/*.log

.mocharc.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
exit: true
2+
extension:
3+
- ts
4+
file:
5+
- mocha/setup.ts
6+
package: ./package.json
7+
reporter: spec
8+
require:
9+
- 'ts-node/register'
10+
spec: spec/**/*.spec.ts

.npmignore

Lines changed: 0 additions & 17 deletions
This file was deleted.

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
lib
2+
package.json
3+
spec/fixtures/credential/unparsable.key.json

changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
feature - Adds support for Test Lab triggered functions with `functions.testLab`.
2-
feature - Adds region support for us-east4.
2+
fixed - Upgrade lodash dependency to resolve security vulnerability CVE-2019-10744.

0 commit comments

Comments
 (0)