@react-native-firebase/app 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 CHANGED
@@ -3,6 +3,26 @@
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
+ ### Bug Fixes
9
+
10
+ - **app, ios:** adopt firebase-ios-sdk 11.5.0 ([c387357](https://github.com/invertase/react-native-firebase/commit/c387357ac8be7a2186aa1872a3d41e370d4ce5e3))
11
+
12
+ ### Reverts
13
+
14
+ - Revert "fix(ios, sdk): constrain transitive dependencies more tightly" ([1ff247c](https://github.com/invertase/react-native-firebase/commit/1ff247cd73804efbd52eb9490f68087685de814c))
15
+
16
+ ## [21.4.0](https://github.com/invertase/react-native-firebase/compare/v21.3.0...v21.4.0) (2024-11-07)
17
+
18
+ ### Features
19
+
20
+ - Add initial tvOS support to some firebase packages ([ca51b51](https://github.com/invertase/react-native-firebase/commit/ca51b51f86edb9a5e293b463491fad40e4189e53))
21
+
22
+ ### Bug Fixes
23
+
24
+ - **app, tvOS:** tvOS minimum target upstream is 13.0, aligning here ([3fa3f07](https://github.com/invertase/react-native-firebase/commit/3fa3f07f00f0444fff3eb864afce3882e855ac41))
25
+
6
26
  ## [21.3.0](https://github.com/invertase/react-native-firebase/compare/v21.2.0...v21.3.0) (2024-10-31)
7
27
 
8
28
  ### Bug Fixes
package/RNFBApp.podspec CHANGED
@@ -4,6 +4,7 @@ package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4
4
  firebase_sdk_version = package['sdkVersions']['ios']['firebase']
5
5
  firebase_ios_target = package['sdkVersions']['ios']['iosTarget']
6
6
  firebase_macos_target = package['sdkVersions']['ios']['macosTarget']
7
+ firebase_tvos_target = package['sdkVersions']['ios']['tvosTarget']
7
8
 
8
9
  Pod::Spec.new do |s|
9
10
  s.name = "RNFBApp"
@@ -19,6 +20,7 @@ Pod::Spec.new do |s|
19
20
  s.social_media_url = 'http://twitter.com/invertaseio'
20
21
  s.ios.deployment_target = firebase_ios_target
21
22
  s.macos.deployment_target = firebase_macos_target
23
+ s.tvos.deployment_target = firebase_tvos_target
22
24
  s.cocoapods_version = '>= 1.12.0'
23
25
  s.source_files = "ios/**/*.{h,m}"
24
26
 
@@ -31,7 +33,7 @@ Pod::Spec.new do |s|
31
33
  end
32
34
 
33
35
  # Firebase dependencies
34
- s.dependency 'Firebase/CoreOnly', "<= #{firebase_sdk_version}"
36
+ s.dependency 'Firebase/CoreOnly', firebase_sdk_version
35
37
 
36
38
  if defined?($RNFirebaseAsStaticFramework)
37
39
  Pod::UI.puts "#{s.name}: Using overridden static_framework value of '#{$RNFirebaseAsStaticFramework}'"
@@ -18,5 +18,5 @@ package io.invertase.firebase.app;
18
18
  */
19
19
  // generated file - do not modify or commit
20
20
  public class ReactNativeFirebaseVersion {
21
- public static String VERSION = "21.3.0";
21
+ public static String VERSION = "21.4.1";
22
22
  }
@@ -18,4 +18,4 @@
18
18
  #import <React/RCTVersion.h>
19
19
 
20
20
  // generated file - do not modify or commit
21
- NSString* const RNFBVersionString = @"21.3.0";
21
+ NSString* const RNFBVersionString = @"21.4.1";
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '21.3.0';
2
+ module.exports = '21.4.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/app",
3
- "version": "21.3.0",
3
+ "version": "21.4.1",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Storage and more.",
6
6
  "main": "lib/index.js",
@@ -74,9 +74,10 @@
74
74
  },
75
75
  "sdkVersions": {
76
76
  "ios": {
77
- "firebase": "11.4.0",
77
+ "firebase": "11.5.0",
78
78
  "iosTarget": "13.0",
79
- "macosTarget": "10.15"
79
+ "macosTarget": "10.15",
80
+ "tvosTarget": "13.0"
80
81
  },
81
82
  "android": {
82
83
  "minSdk": 21,
@@ -89,5 +90,5 @@
89
90
  "playServicesAuth": "21.2.0"
90
91
  }
91
92
  },
92
- "gitHead": "88d33627112c9c0a6f022379de5ce61dfb9bbc0e"
93
+ "gitHead": "1c4301c4f57fe6fe8235e73e13a523ad1af156ad"
93
94
  }