@lssm/lib.observability 1.41.0 → 1.42.0
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 +11 -5
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @lssm/lib.observability
|
|
2
2
|
|
|
3
|
+
## 1.42.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 66a5dfd: initial release
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [66a5dfd]
|
|
12
|
+
- @lssm/lib.lifecycle@1.42.0
|
|
13
|
+
|
|
3
14
|
## 0.5.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -83,8 +94,3 @@
|
|
|
83
94
|
- Metrics collection (counters, histograms)
|
|
84
95
|
- Structured logging with trace correlation
|
|
85
96
|
- HTTP tracing middleware
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/lib.observability",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.42.0",
|
|
4
4
|
"main": "./dist/index.mjs",
|
|
5
5
|
"types": "./dist/index.d.mts",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
8
|
+
"publish:pkg:canary": "bun publish:pkg --tag canary",
|
|
8
9
|
"build": "bun build:bundle && bun build:types",
|
|
9
10
|
"build:bundle": "tsdown",
|
|
10
11
|
"build:types": "tsc --noEmit",
|
|
@@ -16,7 +17,7 @@
|
|
|
16
17
|
"test": "bun run"
|
|
17
18
|
},
|
|
18
19
|
"dependencies": {
|
|
19
|
-
"@lssm/lib.lifecycle": "
|
|
20
|
+
"@lssm/lib.lifecycle": "1.42.0"
|
|
20
21
|
},
|
|
21
22
|
"peerDependencies": {
|
|
22
23
|
"@opentelemetry/api": "*"
|