@react-native-firebase/analytics 25.0.0 → 25.1.0

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,14 @@
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
+ ## [25.1.0](https://github.com/invertase/react-native-firebase/compare/v25.0.1...v25.1.0) (2026-06-25)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/analytics
9
+
10
+ ## [25.0.1](https://github.com/invertase/react-native-firebase/compare/v25.0.0...v25.0.1) (2026-06-23)
11
+
12
+ **Note:** Version bump only for package @react-native-firebase/analytics
13
+
6
14
  ## [25.0.0](https://github.com/invertase/react-native-firebase/compare/v24.0.0...v25.0.0) (2026-06-23)
7
15
 
8
16
  ### ⚠ BREAKING CHANGES
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
 
3
3
  // Generated by genversion.
4
- export const version = '25.0.0';
4
+ export const version = '25.1.0';
5
5
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export declare const version = "25.0.0";
1
+ export declare const version = "25.1.0";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -165,7 +165,7 @@ RCT_EXPORT_METHOD(getSessionId
165
165
  return;
166
166
  }
167
167
  completed = YES;
168
- DLog(@"Error getting session ID: timed out after 60 seconds");
168
+ DLog(@"getSessionId timed_out: no SDK callback within 60 seconds");
169
169
  resolve([NSNull null]);
170
170
  });
171
171
 
@@ -178,16 +178,18 @@ RCT_EXPORT_METHOD(getSessionId
178
178
  // Occasionally sessionID is 0 despite nil error, reject as if it were an error
179
179
  // https://github.com/firebase/firebase-ios-sdk/issues/15258
180
180
  if (!error && [NSNumber numberWithLongLong:sessionID] == 0) {
181
- DLog(@"Error getting session ID: sessionID is zero despite nil error");
181
+ DLog(@"getSessionId zero_without_error: sessionID=0 (firebase-ios-sdk#15258)");
182
182
  return resolve([NSNull null]);
183
183
  }
184
184
 
185
185
  if (error) {
186
- DLog(@"Error getting session ID: %@", error);
186
+ DLog(@"getSessionId sdk_error: domain=%@ code=%ld description=%@", error.domain,
187
+ (long)error.code, error.localizedDescription ?: @"(none)");
187
188
  return resolve([NSNull null]);
188
- } else {
189
- return resolve([NSNumber numberWithLongLong:sessionID]);
190
189
  }
190
+
191
+ DLog(@"getSessionId success: sessionID=%lld", sessionID);
192
+ return resolve([NSNumber numberWithLongLong:sessionID]);
191
193
  }];
192
194
  }
193
195
 
package/lib/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '25.0.0';
2
+ export const version = '25.1.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/analytics",
3
- "version": "25.0.0",
3
+ "version": "25.1.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": "./dist/module/index.js",
@@ -25,7 +25,7 @@
25
25
  "analytics"
26
26
  ],
27
27
  "peerDependencies": {
28
- "@react-native-firebase/app": "25.0.0",
28
+ "@react-native-firebase/app": "25.1.0",
29
29
  "expo": ">=47.0.0"
30
30
  },
31
31
  "publishConfig": {
@@ -76,5 +76,5 @@
76
76
  "node_modules/",
77
77
  "dist/"
78
78
  ],
79
- "gitHead": "eac5bf5f3c80b158bf85b33789e4b64bfd16bbe1"
79
+ "gitHead": "e0a565d8a73a9b103d140ffacfb8876b30d8bdc5"
80
80
  }
@@ -1,3 +1,6 @@
1
- import { withIosWithoutAdIdSupport, withIosGoogleAppMeasurementOnDeviceConversion } from './podfile';
1
+ import {
2
+ withIosWithoutAdIdSupport,
3
+ withIosGoogleAppMeasurementOnDeviceConversion,
4
+ } from './podfile';
2
5
 
3
6
  export { withIosWithoutAdIdSupport, withIosGoogleAppMeasurementOnDeviceConversion };