@ontrails/library 1.0.0-beta.39 → 1.0.0-beta.41

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,31 @@
1
1
  # @ontrails/library
2
2
 
3
+ ## 1.0.0-beta.41
4
+
5
+ ## 1.0.0-beta.40
6
+
7
+ ### Minor Changes
8
+
9
+ - [`5adb995`](https://github.com/outfitter-dev/trails/commit/5adb99551c2dda6190d46cce7f60bb08d63c99aa): Complete the v1 hard cutover from the authored `blaze` field to
10
+ `implementation` across trail contracts, surface projections, tests, examples,
11
+ and public source-analysis helpers. Existing applications must rename authored
12
+ trail behavior fields and direct trail-object access before upgrading.
13
+
14
+ ### Patch Changes
15
+
16
+ - [`3a65ae3`](https://github.com/outfitter-dev/trails/commit/3a65ae363e05b7589f4a9876da4346886353b48c): Rename the durable graph substrate package from `@ontrails/topographer` to
17
+ `@ontrails/topography` after folding Wayfind graph queries into that owner.
18
+
19
+ Update imports to `@ontrails/topography` or
20
+ `@ontrails/topography/backend-support`. The pre-1.0 cutover does not ship a
21
+ compatibility package. TopoGraph, lock, topo-store, semantic diff, and Wayfind
22
+ APIs keep their existing contracts, and the `trails wayfind` CLI and MCP names
23
+ remain unchanged.
24
+
25
+ The governed package-route transition moves legacy `@ontrails/wayfinder`
26
+ imports directly to `@ontrails/topography`; it does not emit the retired
27
+ intermediate `@ontrails/topographer` route.
28
+
3
29
  ## 1.0.0-beta.39
4
30
 
5
31
  ## 1.0.0-beta.38
package/README.md CHANGED
@@ -61,7 +61,7 @@ Typed layer inputs are projected into the same public method input object as tra
61
61
 
62
62
  ## Errors
63
63
 
64
- The root API throws package-facing `LibraryError` subclasses. This is a surface mapping, not a blaze behavior change: blazes still return `Result`.
64
+ The root API throws package-facing `LibraryError` subclasses. This is a surface mapping, not an implementation behavior change: implementations still return `Result`.
65
65
 
66
66
  The `/result` subpath preserves the no-throw envelope:
67
67
 
@@ -75,7 +75,7 @@ The mapper is built with the shared Trails error taxonomy, so new categories mus
75
75
 
76
76
  ## Governance and dogfood
77
77
 
78
- Library projection facts are embedded in `TopoGraph.library` by Topographer. Warden's `library-projection-coherence` rule checks that serialized projection facts do not drift from the graph, including missing target trails and export name collisions.
78
+ Library projection facts are embedded in `TopoGraph.library` by Topography. Warden's `library-projection-coherence` rule checks that serialized projection facts do not drift from the graph, including missing target trails and export name collisions.
79
79
 
80
80
  Run the focused package checks while changing the surface:
81
81
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ontrails/library",
3
- "version": "1.0.0-beta.39",
3
+ "version": "1.0.0-beta.41",
4
4
  "files": [
5
5
  "src/**/*.ts",
6
6
  "!src/**/__tests__/**",
@@ -22,10 +22,10 @@
22
22
  "clean": "rm -rf dist *.tsbuildinfo"
23
23
  },
24
24
  "dependencies": {
25
- "@ontrails/core": "^1.0.0-beta.39"
25
+ "@ontrails/core": "^1.0.0-beta.41"
26
26
  },
27
27
  "devDependencies": {
28
- "@ontrails/testing": "^1.0.0-beta.39"
28
+ "@ontrails/testing": "^1.0.0-beta.41"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "zod": "^4.3.5"