@react-native-firebase/storage 21.3.0 → 21.4.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +12 -0
- package/RNFBStorage.podspec +3 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,18 @@
|
|
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
|
+
## [21.4.1](https://github.com/invertase/react-native-firebase/compare/v21.4.0...v21.4.1) (2024-11-13)
|
7
|
+
|
8
|
+
### Reverts
|
9
|
+
|
10
|
+
- Revert "fix(ios, sdk): constrain transitive dependencies more tightly" ([1ff247c](https://github.com/invertase/react-native-firebase/commit/1ff247cd73804efbd52eb9490f68087685de814c))
|
11
|
+
|
12
|
+
## [21.4.0](https://github.com/invertase/react-native-firebase/compare/v21.3.0...v21.4.0) (2024-11-07)
|
13
|
+
|
14
|
+
### Features
|
15
|
+
|
16
|
+
- Add initial tvOS support to some firebase packages ([ca51b51](https://github.com/invertase/react-native-firebase/commit/ca51b51f86edb9a5e293b463491fad40e4189e53))
|
17
|
+
|
6
18
|
## [21.3.0](https://github.com/invertase/react-native-firebase/compare/v21.2.0...v21.3.0) (2024-10-31)
|
7
19
|
|
8
20
|
**Note:** Version bump only for package @react-native-firebase/storage
|
package/RNFBStorage.podspec
CHANGED
@@ -10,6 +10,7 @@ if coreVersionDetected != coreVersionRequired
|
|
10
10
|
end
|
11
11
|
firebase_ios_target = appPackage['sdkVersions']['ios']['iosTarget']
|
12
12
|
firebase_macos_target = appPackage['sdkVersions']['ios']['macosTarget']
|
13
|
+
firebase_tvos_target = appPackage['sdkVersions']['ios']['tvosTarget']
|
13
14
|
|
14
15
|
Pod::Spec.new do |s|
|
15
16
|
s.name = "RNFBStorage"
|
@@ -25,6 +26,7 @@ Pod::Spec.new do |s|
|
|
25
26
|
s.social_media_url = 'http://twitter.com/invertaseio'
|
26
27
|
s.ios.deployment_target = firebase_ios_target
|
27
28
|
s.macos.deployment_target = firebase_macos_target
|
29
|
+
s.tvos.deployment_target = firebase_tvos_target
|
28
30
|
s.source_files = 'ios/**/*.{h,m}'
|
29
31
|
|
30
32
|
# React Native dependencies
|
@@ -37,7 +39,7 @@ Pod::Spec.new do |s|
|
|
37
39
|
end
|
38
40
|
|
39
41
|
# Firebase dependencies
|
40
|
-
s.dependency 'Firebase/Storage',
|
42
|
+
s.dependency 'Firebase/Storage', firebase_sdk_version
|
41
43
|
|
42
44
|
if defined?($RNFirebaseAsStaticFramework)
|
43
45
|
Pod::UI.puts "#{s.name}: Using overridden static_framework value of '#{$RNFirebaseAsStaticFramework}'"
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '21.
|
2
|
+
module.exports = '21.4.1';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/storage",
|
3
|
-
"version": "21.
|
3
|
+
"version": "21.4.1",
|
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": "21.
|
32
|
+
"@react-native-firebase/app": "21.4.1"
|
33
33
|
},
|
34
34
|
"publishConfig": {
|
35
35
|
"access": "public"
|
36
36
|
},
|
37
|
-
"gitHead": "
|
37
|
+
"gitHead": "1c4301c4f57fe6fe8235e73e13a523ad1af156ad"
|
38
38
|
}
|