@coralogix/react-native-plugin 0.2.3 → 0.2.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 +9 -0
- package/android/build.gradle +1 -1
- package/android/src/main/java/com/cxsdk/CxSdkModule.kt +2 -0
- package/index.cjs.js +1 -1
- package/index.esm.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 0.2.4 (2025-12-07)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
- Fixed network request duration reporting to use milliseconds instead of nanoseconds, ensuring accurate timing metrics in network request data
|
|
7
|
+
- Fixed severity 0, sometimes being sent as fallback to 0
|
|
8
|
+
- Patch: Bump Android native version to 2.6.2
|
|
9
|
+
|
|
1
10
|
## 0.2.3 (2025-12-04)
|
|
2
11
|
|
|
3
12
|
### 🩹 Fixes
|
package/android/build.gradle
CHANGED
|
@@ -75,7 +75,7 @@ dependencies {
|
|
|
75
75
|
implementation "com.facebook.react:react-android"
|
|
76
76
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
77
77
|
|
|
78
|
-
implementation "com.coralogix:android-sdk:2.6.
|
|
78
|
+
implementation "com.coralogix:android-sdk:2.6.2"
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
react {
|
|
@@ -372,6 +372,7 @@ class CxSdkModule(reactContext: ReactApplicationContext) :
|
|
|
372
372
|
is Int -> array.pushInt(value)
|
|
373
373
|
is Double -> array.pushDouble(value)
|
|
374
374
|
is Float -> array.pushDouble(value.toDouble())
|
|
375
|
+
is Long -> array.pushDouble(value.toDouble())
|
|
375
376
|
is String -> array.pushString(value)
|
|
376
377
|
is Map<*, *> -> {
|
|
377
378
|
@Suppress("UNCHECKED_CAST")
|
|
@@ -395,6 +396,7 @@ class CxSdkModule(reactContext: ReactApplicationContext) :
|
|
|
395
396
|
is Int -> writableMap.putInt(key, value)
|
|
396
397
|
is Double -> writableMap.putDouble(key, value)
|
|
397
398
|
is Float -> writableMap.putDouble(key, value.toDouble())
|
|
399
|
+
is Long -> writableMap.putDouble(key, value.toDouble())
|
|
398
400
|
is String -> writableMap.putString(key, value)
|
|
399
401
|
is Map<*, *> -> {
|
|
400
402
|
@Suppress("UNCHECKED_CAST")
|
package/index.cjs.js
CHANGED
package/index.esm.js
CHANGED