@react-native-firebase/storage 14.5.1 → 14.6.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +6 -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,12 @@
|
|
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.6.0](https://github.com/invertase/react-native-firebase/compare/v14.5.1...v14.6.0) (2022-03-23)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **storage, ios:** fix build failure for catalyst compiles ([a6dd0cd](https://github.com/invertase/react-native-firebase/commit/a6dd0cdef3bb66701fec883d163d20f14d384f10))
|
11
|
+
|
6
12
|
## [14.5.1](https://github.com/invertase/react-native-firebase/compare/v14.5.0...v14.5.1) (2022-03-05)
|
7
13
|
|
8
14
|
**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.6.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/storage",
|
3
|
-
"version": "14.
|
3
|
+
"version": "14.6.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.6.0"
|
33
33
|
},
|
34
34
|
"publishConfig": {
|
35
35
|
"access": "public"
|
36
36
|
},
|
37
|
-
"gitHead": "
|
37
|
+
"gitHead": "0d0f0d1f839af2a3343c8a0edb08d7749623d4de"
|
38
38
|
}
|