@react-native-firebase/analytics 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,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
+ - enable tvOS installation on all package with upstream support ([e8e5f7f](https://github.com/invertase/react-native-firebase/commit/e8e5f7f9aab9a58aabf9a7b0cd756584240dbc48))
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
  ### Features
@@ -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 = "RNFBAnalytics"
@@ -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
@@ -39,19 +41,13 @@ Pod::Spec.new do |s|
39
41
  # Firebase dependencies
40
42
  if defined?($RNFirebaseAnalyticsWithoutAdIdSupport) && ($RNFirebaseAnalyticsWithoutAdIdSupport == true)
41
43
  Pod::UI.puts "#{s.name}: Using Firebase/AnalyticsWithoutAdIdSupport pod in place of default Firebase/Analytics"
42
-
43
- # Releasing as non-breaking change as it is optional but it raises minimum requirements, validate just in case
44
- if (Gem::Version.new(firebase_sdk_version) < Gem::Version.new("7.11.0"))
45
- raise "Firebase/AnalyticsWithoutAdIdSupport requires firebase-ios-sdk 7.11.0 or greater."
46
- end
47
-
48
- s.dependency 'Firebase/AnalyticsWithoutAdIdSupport', "<= #{firebase_sdk_version}"
44
+ s.dependency 'Firebase/AnalyticsWithoutAdIdSupport', firebase_sdk_version
49
45
  else
50
46
  if !defined?($RNFirebaseAnalyticsWithoutAdIdSupport)
51
47
  Pod::UI.puts "#{s.name}: Using default Firebase/Analytics with Ad Ids. May require App Tracking Transparency. Not allowed for Kids apps."
52
48
  Pod::UI.puts "#{s.name}: You may set variable `$RNFirebaseAnalyticsWithoutAdIdSupport=true` in Podfile to use analytics without ad ids."
53
49
  end
54
- s.dependency 'Firebase/Analytics', "<= #{firebase_sdk_version}"
50
+ s.dependency 'Firebase/Analytics', firebase_sdk_version
55
51
 
56
52
  # Special pod for on-device conversion
57
53
  if defined?($RNFirebaseAnalyticsEnableAdSupport) && ($RNFirebaseAnalyticsEnableAdSupport == true)
@@ -63,13 +59,7 @@ Pod::Spec.new do |s|
63
59
  # Special pod for on-device conversion
64
60
  if defined?($RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion) && ($RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion == true)
65
61
  Pod::UI.puts "#{s.name}: GoogleAppMeasurementOnDeviceConversion pod added"
66
-
67
- # Releasing as non-breaking change as it is optional but it raises minimum requirements, validate just in case
68
- if (Gem::Version.new(firebase_sdk_version) < Gem::Version.new("9.0.0"))
69
- raise "GoogleAppMeasurementOnDeviceConversion requires firebase-ios-sdk 9.0.0 or greater."
70
- end
71
-
72
- s.dependency 'GoogleAppMeasurementOnDeviceConversion', "<= #{firebase_sdk_version}"
62
+ s.dependency 'GoogleAppMeasurementOnDeviceConversion', firebase_sdk_version
73
63
  end
74
64
 
75
65
  if defined?($RNFirebaseAsStaticFramework)
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/analytics",
3
- "version": "21.3.0",
3
+ "version": "21.4.1",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - The analytics module provides out of the box support with Google Analytics for Firebase. Integration with the Android & iOS allows for in-depth analytical insight reporting, such as device information, location, user actions and more.",
6
6
  "main": "lib/index.js",
@@ -22,10 +22,10 @@
22
22
  "analytics"
23
23
  ],
24
24
  "peerDependencies": {
25
- "@react-native-firebase/app": "21.3.0"
25
+ "@react-native-firebase/app": "21.4.1"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "88d33627112c9c0a6f022379de5ce61dfb9bbc0e"
30
+ "gitHead": "1c4301c4f57fe6fe8235e73e13a523ad1af156ad"
31
31
  }