@react-native-firebase/app 21.3.0 → 21.4.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
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.0](https://github.com/invertase/react-native-firebase/compare/v21.3.0...v21.4.0) (2024-11-07)
7
+
8
+ ### Features
9
+
10
+ - Add initial tvOS support to some firebase packages ([ca51b51](https://github.com/invertase/react-native-firebase/commit/ca51b51f86edb9a5e293b463491fad40e4189e53))
11
+
12
+ ### Bug Fixes
13
+
14
+ - **app, tvOS:** tvOS minimum target upstream is 13.0, aligning here ([3fa3f07](https://github.com/invertase/react-native-firebase/commit/3fa3f07f00f0444fff3eb864afce3882e855ac41))
15
+
6
16
  ## [21.3.0](https://github.com/invertase/react-native-firebase/compare/v21.2.0...v21.3.0) (2024-10-31)
7
17
 
8
18
  ### 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
 
@@ -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.0";
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.0";
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.0';
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.0",
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",
@@ -76,7 +76,8 @@
76
76
  "ios": {
77
77
  "firebase": "11.4.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": "227e1ed54cf668cbc701c0ed2542b8ec66957e1e"
93
94
  }