@launchdarkly/observability 0.4.4 → 0.4.5
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/dist/observability.js +3 -3
- package/dist/observability.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @launchdarkly/observability
|
|
2
2
|
|
|
3
|
+
## [0.4.5](https://github.com/launchdarkly/observability-sdk/compare/observability-0.4.4...observability-0.4.5) (2025-10-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* dependencies
|
|
10
|
+
* highlight.run bumped to 9.22.2
|
|
11
|
+
|
|
3
12
|
## [0.4.4](https://github.com/launchdarkly/observability-sdk/compare/observability-0.4.3...observability-0.4.4) (2025-10-03)
|
|
4
13
|
|
|
5
14
|
|
package/dist/observability.js
CHANGED
|
@@ -4089,7 +4089,7 @@ let bp = class {
|
|
|
4089
4089
|
return this._bufferCall("track", [t, r]);
|
|
4090
4090
|
}
|
|
4091
4091
|
};
|
|
4092
|
-
const Sp = "9.22.
|
|
4092
|
+
const Sp = "9.22.2", wp = {
|
|
4093
4093
|
version: Sp
|
|
4094
4094
|
}, Ap = wp.version;
|
|
4095
4095
|
function Lp(e) {
|
|
@@ -15202,12 +15202,12 @@ class Xb {
|
|
|
15202
15202
|
matchesLogConfig(t, r) {
|
|
15203
15203
|
if (t.severityText) {
|
|
15204
15204
|
const n = r[Ju];
|
|
15205
|
-
if (
|
|
15205
|
+
if (!this.matchesValue(t.severityText, n))
|
|
15206
15206
|
return !1;
|
|
15207
15207
|
}
|
|
15208
15208
|
if (t.message) {
|
|
15209
15209
|
const n = r[Qu];
|
|
15210
|
-
if (
|
|
15210
|
+
if (!this.matchesValue(t.message, n))
|
|
15211
15211
|
return !1;
|
|
15212
15212
|
}
|
|
15213
15213
|
return !!this.matchesAttributes(t.attributes, r);
|