@ontrails/observability 1.0.0-beta.42 → 1.0.0-beta.43

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