@ontrails/logtape 1.0.0-beta.42 → 1.0.0-beta.45
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 +22 -0
- package/package.json +7 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.45
|
|
4
|
+
|
|
5
|
+
## 1.0.0-beta.44
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- [`b1fbe57`](https://github.com/outfitter-dev/trails/commit/b1fbe574e6f44d1fecb5e3a000270955c0a77b7b): Publish Bun-validated package tarballs through an npm trusted-publishing adapter
|
|
10
|
+
binding, add exact repository metadata for each public workspace package, and
|
|
11
|
+
correct the native Bun release descriptor to its pack-only runtime boundary.
|
|
12
|
+
|
|
13
|
+
## 1.0.0-beta.43
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- [`50e2779`](https://github.com/outfitter-dev/trails/commit/50e27796d074851bccd57d7df009db749757b457): Extract the real `@ontrails/logtape` and `@ontrails/pino` adapters from the
|
|
18
|
+
temporary observability subpaths. The new packages own their namesake foreign
|
|
19
|
+
dependencies and preserve Trails record metadata, levels, redaction boundaries,
|
|
20
|
+
and lifecycle behavior; the old subpaths are removed in the pre-v1 hard cut.
|
|
21
|
+
|
|
22
|
+
Add governed Regrade transitions for both exact import replacements and expose
|
|
23
|
+
the observability adapter target through the shared adapter readiness check.
|
|
24
|
+
|
|
3
25
|
All notable changes to this package are documented through the Trails release process.
|
package/package.json
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ontrails/logtape",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.45",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "git+https://github.com/outfitter-dev/trails.git",
|
|
7
|
+
"directory": "adapters/logtape"
|
|
8
|
+
},
|
|
4
9
|
"files": [
|
|
5
10
|
"src/**/*.ts",
|
|
6
11
|
"!src/**/__tests__/**",
|
|
@@ -25,7 +30,7 @@
|
|
|
25
30
|
"@logtape/logtape": "^2.2.4"
|
|
26
31
|
},
|
|
27
32
|
"peerDependencies": {
|
|
28
|
-
"@ontrails/observability": "^1.0.0-beta.
|
|
33
|
+
"@ontrails/observability": "^1.0.0-beta.45",
|
|
29
34
|
"zod": "^4.3.5"
|
|
30
35
|
},
|
|
31
36
|
"trails": {
|