@react-native-firebase/perf 23.8.3 → 23.8.4
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 +6 -0
- package/lib/HttpMetric.js +1 -1
- package/lib/MetricWithAttributes.js +1 -1
- package/lib/ScreenTrace.js +1 -1
- package/lib/Trace.js +1 -1
- package/lib/index.js +2 -2
- package/lib/modular/index.js +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
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
|
+
## [23.8.4](https://github.com/invertase/react-native-firebase/compare/v23.8.3...v23.8.4) (2026-01-24)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- internal cross-module references to transpiled code must be dist not src ([b03db0a](https://github.com/invertase/react-native-firebase/commit/b03db0aa3fb748ee039826ccd9c7e73bc3c78f6f))
|
|
11
|
+
|
|
6
12
|
## [23.8.3](https://github.com/invertase/react-native-firebase/compare/v23.8.2...v23.8.3) (2026-01-16)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/lib/HttpMetric.js
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
*
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
-
import { isNull, isNumber, isString } from '@react-native-firebase/app/
|
|
18
|
+
import { isNull, isNumber, isString } from '@react-native-firebase/app/dist/module/common';
|
|
19
19
|
import MetricWithAttributes from './MetricWithAttributes';
|
|
20
20
|
|
|
21
21
|
export default class HttpMetric extends MetricWithAttributes {
|
package/lib/ScreenTrace.js
CHANGED
package/lib/Trace.js
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
*
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
-
import { hasOwnProperty, isNumber, isString } from '@react-native-firebase/app/
|
|
18
|
+
import { hasOwnProperty, isNumber, isString } from '@react-native-firebase/app/dist/module/common';
|
|
19
19
|
import MetricWithAttributes from './MetricWithAttributes';
|
|
20
20
|
|
|
21
21
|
export default class Trace extends MetricWithAttributes {
|
package/lib/index.js
CHANGED
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
*
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
-
import { isBoolean, isOneOf, isString } from '@react-native-firebase/app/
|
|
18
|
+
import { isBoolean, isOneOf, isString } from '@react-native-firebase/app/dist/module/common';
|
|
19
19
|
import {
|
|
20
20
|
createModuleNamespace,
|
|
21
21
|
FirebaseModule,
|
|
22
22
|
getFirebaseRoot,
|
|
23
|
-
} from '@react-native-firebase/app/
|
|
23
|
+
} from '@react-native-firebase/app/dist/module/internal';
|
|
24
24
|
import { Platform } from 'react-native';
|
|
25
25
|
import HttpMetric from './HttpMetric';
|
|
26
26
|
import Trace from './Trace';
|
package/lib/modular/index.js
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
|
|
26
26
|
import { getApp } from '@react-native-firebase/app';
|
|
27
27
|
|
|
28
|
-
import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/
|
|
28
|
+
import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/dist/module/common';
|
|
29
29
|
|
|
30
30
|
/**
|
|
31
31
|
* Returns a Performance instance for the given app.
|
package/lib/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
module.exports = '23.8.
|
|
2
|
+
module.exports = '23.8.4';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-firebase/perf",
|
|
3
|
-
"version": "23.8.
|
|
3
|
+
"version": "23.8.4",
|
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
|
5
5
|
"description": "React Native Firebase - React Native Firebase provides native integration with Performance Monitoring to gain insight into key performance characteristics within your React Native application.",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"performance monitoring"
|
|
30
30
|
],
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@react-native-firebase/app": "23.8.
|
|
32
|
+
"@react-native-firebase/app": "23.8.4",
|
|
33
33
|
"expo": ">=47.0.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"access": "public",
|
|
45
45
|
"provenance": true
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "30df38f6df8750ff753566eb961bb46c10a84fed"
|
|
48
48
|
}
|