@launchdarkly/observability 0.1.17 → 0.2.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 +23 -0
- package/LICENSE +13 -0
- package/dist/observability.js +7400 -7003
- package/dist/observability.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @launchdarkly/observability
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [49b32d8]
|
|
8
|
+
- highlight.run@9.18.15
|
|
9
|
+
|
|
10
|
+
## 0.2.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- c901c22: move metrics listeners to Observability plugin from SessionReplay
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- c901c22: fix ErrorListener incorrectly reporting stacktrace via trace event
|
|
19
|
+
- c901c22: fix document_load metric not forwarding to ldClient
|
|
20
|
+
- c901c22: allow reporting 0-value document_load durations
|
|
21
|
+
- Updated dependencies [c901c22]
|
|
22
|
+
- Updated dependencies [c901c22]
|
|
23
|
+
- Updated dependencies [c901c22]
|
|
24
|
+
- highlight.run@9.18.14
|
|
25
|
+
|
|
3
26
|
## 0.1.17
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright 2025 Catamorphic, Co.
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|