@coralogix/browser 2.8.5 → 2.8.7
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 +15 -0
- package/index.esm.js +2 -3
- package/index.esm2.js +622 -797
- package/package.json +1 -1
- package/sessionRecorder.esm.js +28 -1291
- package/src/constants.d.ts +0 -4
- package/src/custom-spans/custom-spans.consts.d.ts +1 -0
- package/src/custom-spans/custom-spans.utils.d.ts +4 -0
- package/src/otel/otel.consts.d.ts +0 -10
- package/src/session/session.model.d.ts +0 -40
- package/src/session/sessionManager.d.ts +1 -0
- package/src/tools/addEventListener.d.ts +0 -7
- package/src/tools/getZoneJsOriginalDom.d.ts +0 -3
- package/src/types.d.ts +0 -87
- package/src/utils/array.d.ts +0 -9
- package/src/utils/general.d.ts +0 -6
- package/src/utils/object.d.ts +0 -26
- package/src/utils/string.d.ts +0 -4
- package/src/version.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## 2.8.7 (2025-06-30)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- Add sessionId to span attr
|
|
6
|
+
- Fix adding network span to global span even when the global span is ended.
|
|
7
|
+
- Handle global span in idle mode.
|
|
8
|
+
|
|
9
|
+
## 2.8.6 (2025-06-26)
|
|
10
|
+
|
|
11
|
+
### 🧰 Improvements
|
|
12
|
+
|
|
13
|
+
- Bundle size optimization: Reduced the size of the browser SDK bundle.
|
|
14
|
+
- Bundle the error-stack-parser and shimmer libraries from cjs to esm to improve compatibility with various bundlers and environments.
|
|
15
|
+
|
|
1
16
|
## 2.8.5 (2025-06-25)
|
|
2
17
|
|
|
3
18
|
### 🩹 Fixes
|
package/index.esm.js
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
export {
|
|
2
|
-
import 'tslib';
|
|
1
|
+
export { n as CoralogixEventType, l as CoralogixLogSeverity, k as CoralogixRum, O as OtelNetworkAttrs, P as PerformanceTypes, m as SessionRecordingEventType, U as UrlBasedLabelProvider, o as UrlType } from './index.esm2.js';
|
|
3
2
|
import '@opentelemetry/sdk-trace-base';
|
|
4
3
|
import '@opentelemetry/sdk-trace-web';
|
|
5
4
|
import '@opentelemetry/instrumentation';
|
|
6
|
-
import 'error-stack-parser';
|
|
7
5
|
import '@opentelemetry/instrumentation-fetch';
|
|
8
6
|
import '@opentelemetry/instrumentation-xml-http-request';
|
|
9
7
|
import 'web-vitals/attribution';
|
|
8
|
+
import '@opentelemetry/core';
|
|
10
9
|
import '@opentelemetry/api';
|
|
11
10
|
import '@opentelemetry/propagator-b3';
|
|
12
11
|
import '@opentelemetry/propagator-aws-xray';
|