File tree 8 files changed +19
-15
lines changed
auth-compat/demo/functions
rules-unit-testing/functions
8 files changed +19
-15
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @firebase/rules-unit-testing ' : patch
3
+ ---
4
+
5
+ Update firebase-functions to a version compatible with firebase-admin.
Original file line number Diff line number Diff line change 4
4
"dependencies" : {
5
5
"cors" : " 2.8.5" ,
6
6
"firebase-admin" : " 11.0.0" ,
7
- "firebase-functions" : " 3.21 .0"
7
+ "firebase-functions" : " 3.22 .0"
8
8
},
9
9
"private" : true ,
10
10
"engines" : {
11
- "node" : " 10 "
11
+ "node" : " 16 "
12
12
}
13
13
}
Original file line number Diff line number Diff line change 106
106
"eslint-plugin-unused-imports" : " 2.0.0" ,
107
107
"express" : " 4.18.1" ,
108
108
"find-free-port" : " 2.0.0" ,
109
- "firebase-functions" : " 3.21 .0" ,
109
+ "firebase-functions" : " 3.22 .0" ,
110
110
"firebase-tools" : " 11.2.2" ,
111
111
"glob" : " 7.2.0" ,
112
112
"http-server" : " 14.1.0" ,
Original file line number Diff line number Diff line change 10
10
},
11
11
"dependencies" : {
12
12
"firebase-admin" : " 11.0.0" ,
13
- "firebase-functions" : " 3.21 .0"
13
+ "firebase-functions" : " 3.22 .0"
14
14
},
15
15
"private" : true
16
16
}
Original file line number Diff line number Diff line change 10
10
},
11
11
"dependencies" : {
12
12
"firebase-admin" : " 11.0.0" ,
13
- "firebase-functions" : " 3.21 .0"
13
+ "firebase-functions" : " 3.22 .0"
14
14
},
15
15
"private" : true ,
16
16
"engines" : {
Original file line number Diff line number Diff line change @@ -1600,12 +1600,11 @@ export function onChildRemoved(
1600
1600
export { EventType } ;
1601
1601
1602
1602
/**
1603
- * Detaches a callback previously attached with `on()`.
1603
+ * Detaches a callback previously attached with the corresponding `on*()` (`onValue`, `onChildAdded`) listener.
1604
+ * Note: This is not the recommended way to remove a listener. Instead, please use the returned callback function from
1605
+ * the respective `on*` callbacks.
1604
1606
*
1605
- * Detach a callback previously attached with `on()`. Note that if `on()` was
1606
- * called multiple times with the same eventType and callback, the callback
1607
- * will be called multiple times for each event, and `off()` must be called
1608
- * multiple times to remove the callback. Calling `off()` on a parent listener
1607
+ * Detach a callback previously attached with `on*()`. Calling `off()` on a parent listener
1609
1608
* will not automatically remove listeners registered on child nodes, `off()`
1610
1609
* must also be called on any child listeners to remove the callback.
1611
1610
*
Original file line number Diff line number Diff line change 9
9
"private" : true ,
10
10
"dependencies" : {
11
11
"firebase-admin" : " 11.0.0" ,
12
- "firebase-functions" : " 3.21 .0"
12
+ "firebase-functions" : " 3.22 .0"
13
13
},
14
14
"engines" : {
15
15
"node" : " 16"
Original file line number Diff line number Diff line change @@ -8047,10 +8047,10 @@ firebase-frameworks@^0.4.2:
8047
8047
semver "^7.3.7"
8048
8048
tslib "^2.3.1"
8049
8049
8050
- firebase-functions@3.21 .0:
8051
- version "3.21 .0"
8052
- resolved "https://registry.npmjs.org/firebase-functions/-/firebase-functions-3.21 .0.tgz#46b4c771781891929408bd4424959fe552d6cd6c "
8053
- integrity sha512-Xl0EFV05+RSB9hJHlo12LguoRqAmpSXmBnpI0MANeNj07dGW0QCWPHtaAewxYEzRS3RfSCL8WH12rjvo0PPKGw ==
8050
+ firebase-functions@3.22 .0:
8051
+ version "3.22 .0"
8052
+ resolved "https://registry.npmjs.org/firebase-functions/-/firebase-functions-3.22 .0.tgz#d1b6c190551e29705d91819d8369a752ba5e061a "
8053
+ integrity sha512-d1BxBpT95MhvVqXkpLWDvWbyuX7e2l69cFAiqG3U1XQDaMV88bM9S+Zg7H8i9pitEGFr+76ErjKgrY0n+g3ZDA ==
8054
8054
dependencies:
8055
8055
"@types/cors" "^2.8.5"
8056
8056
"@types/express" "4.17.3"
You can’t perform that action at this time.
0 commit comments