@ontrails/observability 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 +39 -0
- package/package.json +7 -2
- package/src/renderer.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @ontrails/observability
|
|
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
|
+
### Major Changes
|
|
16
|
+
|
|
17
|
+
- [`113aed6`](https://github.com/outfitter-dev/trails/commit/113aed62d20041e35b0cf9d6c1b1a18df4b88f57): Rename the dependency-light observability owner from `@ontrails/observe` to
|
|
18
|
+
`@ontrails/observability` as a pre-v1 hard cut. Update dependent packages,
|
|
19
|
+
documentation, package discovery, and the governed Regrade route; no
|
|
20
|
+
compatibility package or old import route is retained.
|
|
21
|
+
- [`0938e7b`](https://github.com/outfitter-dev/trails/commit/0938e7badc0c5470d194139d642b673658d099e0): Fold the removed `@ontrails/tracing` package into the truthful existing
|
|
22
|
+
owners: intrinsic trace contracts remain in core, developer-state tooling now
|
|
23
|
+
lives at `@ontrails/observability/dev`, and the dependency-light OTel adapter
|
|
24
|
+
lives at `@ontrails/observability/otel`. There is intentionally no root-package
|
|
25
|
+
compatibility redirect because the former root had more than one owner.
|
|
26
|
+
- [`50e2779`](https://github.com/outfitter-dev/trails/commit/50e27796d074851bccd57d7df009db749757b457): Extract the real `@ontrails/logtape` and `@ontrails/pino` adapters from the
|
|
27
|
+
temporary observability subpaths. The new packages own their namesake foreign
|
|
28
|
+
dependencies and preserve Trails record metadata, levels, redaction boundaries,
|
|
29
|
+
and lifecycle behavior; the old subpaths are removed in the pre-v1 hard cut.
|
|
30
|
+
|
|
31
|
+
Add governed Regrade transitions for both exact import replacements and expose
|
|
32
|
+
the observability adapter target through the shared adapter readiness check.
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- [`88a6a62`](https://github.com/outfitter-dev/trails/commit/88a6a62a9e9e230ca6d368fa78dc3ece6c816204): Complete the v1 classification-first cutover from projection/project vocabulary
|
|
37
|
+
to derive/derived for contract-owned fact production and render/rendered for
|
|
38
|
+
surface presentation. Public type, helper, rule, relation, and report names move
|
|
39
|
+
without compatibility aliases; ordinary repository/project nouns remain
|
|
40
|
+
explicit preserves or structured review inventory.
|
|
41
|
+
|
|
3
42
|
## 1.0.0-beta.42
|
|
4
43
|
|
|
5
44
|
## 1.0.0-beta.41
|
package/package.json
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ontrails/observability",
|
|
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": "packages/observability"
|
|
8
|
+
},
|
|
4
9
|
"files": [
|
|
5
10
|
"src/**/*.ts",
|
|
6
11
|
"!src/**/__tests__/**",
|
|
@@ -25,7 +30,7 @@
|
|
|
25
30
|
"clean": "rm -rf dist *.tsbuildinfo"
|
|
26
31
|
},
|
|
27
32
|
"peerDependencies": {
|
|
28
|
-
"@ontrails/core": "^1.0.0-beta.
|
|
33
|
+
"@ontrails/core": "^1.0.0-beta.45",
|
|
29
34
|
"zod": "^4.3.5"
|
|
30
35
|
},
|
|
31
36
|
"trails": {
|
package/src/renderer.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Post-execution trace tree renderer.
|
|
3
3
|
*
|
|
4
|
-
* Pure
|
|
4
|
+
* Pure rendering of a flat `TraceRecord[]` into a multi-line string suitable
|
|
5
5
|
* for stderr. The renderer is intentionally side-effect free: callers (such as
|
|
6
6
|
* the CLI's `--trace` flag) own the actual write to stderr. Live streaming is
|
|
7
7
|
* deferred per ADR-0028; this renderer assumes the records are complete.
|