@react-native-firebase/analytics 21.4.0 → 21.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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
+
6
12
  ## [21.4.0](https://github.com/invertase/react-native-firebase/compare/v21.3.0...v21.4.0) (2024-11-07)
7
13
 
8
14
  ### 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.4.1';
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.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.4.0"
25
+ "@react-native-firebase/app": "21.4.1"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "227e1ed54cf668cbc701c0ed2542b8ec66957e1e"
30
+ "gitHead": "1c4301c4f57fe6fe8235e73e13a523ad1af156ad"
31
31
  }