@react-native-firebase/storage 14.5.1 → 14.8.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +14 -0
- package/ios/RNFBStorage/RNFBStorageModule.m +5 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,20 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
# [14.8.0](https://github.com/invertase/react-native-firebase/compare/v14.7.0...v14.8.0) (2022-04-19)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/storage
|
9
|
+
|
10
|
+
# [14.7.0](https://github.com/invertase/react-native-firebase/compare/v14.6.0...v14.7.0) (2022-03-23)
|
11
|
+
|
12
|
+
**Note:** Version bump only for package @react-native-firebase/storage
|
13
|
+
|
14
|
+
# [14.6.0](https://github.com/invertase/react-native-firebase/compare/v14.5.1...v14.6.0) (2022-03-23)
|
15
|
+
|
16
|
+
### Bug Fixes
|
17
|
+
|
18
|
+
- **storage, ios:** fix build failure for catalyst compiles ([a6dd0cd](https://github.com/invertase/react-native-firebase/commit/a6dd0cdef3bb66701fec883d163d20f14d384f10))
|
19
|
+
|
6
20
|
## [14.5.1](https://github.com/invertase/react-native-firebase/compare/v14.5.0...v14.5.1) (2022-03-05)
|
7
21
|
|
8
22
|
**Note:** Version bump only for package @react-native-firebase/storage
|
@@ -511,7 +511,11 @@ RCT_EXPORT_METHOD(setTaskStatus
|
|
511
511
|
[task pause];
|
512
512
|
break;
|
513
513
|
case 1:
|
514
|
-
[task
|
514
|
+
if ([task isKindOfClass:[FIRStorageDownloadTask class]]) {
|
515
|
+
[(FIRStorageDownloadTask *)task resume];
|
516
|
+
} else {
|
517
|
+
[(FIRStorageUploadTask *)task resume];
|
518
|
+
}
|
515
519
|
break;
|
516
520
|
case 2:
|
517
521
|
[task cancel];
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// generated by genversion
|
2
|
-
module.exports = '14.
|
2
|
+
module.exports = '14.8.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/storage",
|
3
|
-
"version": "14.
|
3
|
+
"version": "14.8.0",
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
5
5
|
"description": "React Native Firebase - React Native Firebase provides native integration with Cloud Storage, providing support to upload and download files directly from your device and from your Firebase Cloud Storage bucket.",
|
6
6
|
"main": "lib/index.js",
|
@@ -29,10 +29,10 @@
|
|
29
29
|
"download"
|
30
30
|
],
|
31
31
|
"peerDependencies": {
|
32
|
-
"@react-native-firebase/app": "14.
|
32
|
+
"@react-native-firebase/app": "14.8.0"
|
33
33
|
},
|
34
34
|
"publishConfig": {
|
35
35
|
"access": "public"
|
36
36
|
},
|
37
|
-
"gitHead": "
|
37
|
+
"gitHead": "6b4ac1c0227719905dec4bf008f15366706cb465"
|
38
38
|
}
|