Skip to content

Commit d30cdfb

Browse files
authored
Merge branch 'master' into colerogers.enable-function-retry
2 parents ad23582 + 95ae33f commit d30cdfb

File tree

88 files changed

+4070
-809
lines changed

Some content is hidden

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

88 files changed

+4070
-809
lines changed

.github/workflows/postmerge.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ name: Post-merge tests
1515

1616
on:
1717
workflow_dispatch:
18-
workflow_run:
19-
workflows: ["CI Tests"]
20-
types: [completed]
21-
branches: [master]
2218

2319
concurrency:
2420
group: postmerge-${{ github.ref }}
@@ -34,7 +30,7 @@ jobs:
3430
- uses: actions/checkout@v3
3531
- uses: actions/setup-node@v3
3632
with:
37-
node-version: 16
33+
node-version: 18
3834

3935
- uses: google-github-actions/auth@v0
4036
with:

.github/workflows/test.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ jobs:
3030
strategy:
3131
matrix:
3232
node-version:
33-
- 14.x
34-
- 16.x
3533
- 18.x
34+
- 20.x
3635
steps:
3736
- uses: actions/checkout@v1
3837
- uses: actions/setup-node@v1
@@ -51,9 +50,8 @@ jobs:
5150
strategy:
5251
matrix:
5352
node-version:
54-
- 14.x
55-
- 16.x
5653
- 18.x
54+
- 20.x
5755
steps:
5856
- uses: actions/checkout@v1
5957
- uses: actions/setup-node@v1

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
- Remove HTTP server shutdown message. (#1457)
2-
- Add features to task queue functions. (#1423)
3-
- Add traces to V2 Firestore trigger logs. (#1440)
41
- Fix retry in event triggered functions. (#1463)
2+
- Expose retry configuration in v2 RTDB trigger (#1588)

integration_test/package.json.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"main": "lib/index.js",
1414
"devDependencies": {
1515
"@types/node-fetch": "^2.6.1",
16-
"typescript": "~4.2.2"
16+
"typescript": "^4.3.5"
1717
},
1818
"engines": {
1919
"node": "__NODE_VERSION__"

0 commit comments

Comments
 (0)