@react-native-firebase/analytics 21.4.0 → 21.5.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.5.0](https://github.com/invertase/react-native-firebase/compare/v21.4.1...v21.5.0) (2024-11-16)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/analytics
9
+
10
+ ## [21.4.1](https://github.com/invertase/react-native-firebase/compare/v21.4.0...v21.4.1) (2024-11-13)
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
+
6
16
  ## [21.4.0](https://github.com/invertase/react-native-firebase/compare/v21.3.0...v21.4.0) (2024-11-07)
7
17
 
8
18
  ### Features
@@ -41,19 +41,13 @@ Pod::Spec.new do |s|
41
41
  # Firebase dependencies
42
42
  if defined?($RNFirebaseAnalyticsWithoutAdIdSupport) && ($RNFirebaseAnalyticsWithoutAdIdSupport == true)
43
43
  Pod::UI.puts "#{s.name}: Using Firebase/AnalyticsWithoutAdIdSupport pod in place of default Firebase/Analytics"
44
-
45
- # Releasing as non-breaking change as it is optional but it raises minimum requirements, validate just in case
46
- if (Gem::Version.new(firebase_sdk_version) < Gem::Version.new("7.11.0"))
47
- raise "Firebase/AnalyticsWithoutAdIdSupport requires firebase-ios-sdk 7.11.0 or greater."
48
- end
49
-
50
- s.dependency 'Firebase/AnalyticsWithoutAdIdSupport', "<= #{firebase_sdk_version}"
44
+ s.dependency 'Firebase/AnalyticsWithoutAdIdSupport', firebase_sdk_version
51
45
  else
52
46
  if !defined?($RNFirebaseAnalyticsWithoutAdIdSupport)
53
47
  Pod::UI.puts "#{s.name}: Using default Firebase/Analytics with Ad Ids. May require App Tracking Transparency. Not allowed for Kids apps."
54
48
  Pod::UI.puts "#{s.name}: You may set variable `$RNFirebaseAnalyticsWithoutAdIdSupport=true` in Podfile to use analytics without ad ids."
55
49
  end
56
- s.dependency 'Firebase/Analytics', "<= #{firebase_sdk_version}"
50
+ s.dependency 'Firebase/Analytics', firebase_sdk_version
57
51
 
58
52
  # Special pod for on-device conversion
59
53
  if defined?($RNFirebaseAnalyticsEnableAdSupport) && ($RNFirebaseAnalyticsEnableAdSupport == true)
@@ -65,13 +59,7 @@ Pod::Spec.new do |s|
65
59
  # Special pod for on-device conversion
66
60
  if defined?($RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion) && ($RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion == true)
67
61
  Pod::UI.puts "#{s.name}: GoogleAppMeasurementOnDeviceConversion pod added"
68
-
69
- # Releasing as non-breaking change as it is optional but it raises minimum requirements, validate just in case
70
- if (Gem::Version.new(firebase_sdk_version) < Gem::Version.new("9.0.0"))
71
- raise "GoogleAppMeasurementOnDeviceConversion requires firebase-ios-sdk 9.0.0 or greater."
72
- end
73
-
74
- s.dependency 'GoogleAppMeasurementOnDeviceConversion', "<= #{firebase_sdk_version}"
62
+ s.dependency 'GoogleAppMeasurementOnDeviceConversion', firebase_sdk_version
75
63
  end
76
64
 
77
65
  if defined?($RNFirebaseAsStaticFramework)
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '21.4.0';
2
+ module.exports = '21.5.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/analytics",
3
- "version": "21.4.0",
3
+ "version": "21.5.0",
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.4.0"
25
+ "@react-native-firebase/app": "21.5.0"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "227e1ed54cf668cbc701c0ed2542b8ec66957e1e"
30
+ "gitHead": "ca6b846408d5f1773adb84b94c6dcb8c6a7c658a"
31
31
  }