@ontrails/hono 1.0.0-beta.39 → 1.0.0-beta.42

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,18 @@
1
1
  # @ontrails/hono
2
2
 
3
+ ## 1.0.0-beta.42
4
+
5
+ ## 1.0.0-beta.41
6
+
7
+ ## 1.0.0-beta.40
8
+
9
+ ### Minor Changes
10
+
11
+ - [`5adb995`](https://github.com/outfitter-dev/trails/commit/5adb99551c2dda6190d46cce7f60bb08d63c99aa): Complete the v1 hard cutover from the authored `blaze` field to
12
+ `implementation` across trail contracts, surface projections, tests, examples,
13
+ and public source-analysis helpers. Existing applications must rename authored
14
+ trail behavior fields and direct trail-object access before upgrading.
15
+
3
16
  ## 1.0.0-beta.39
4
17
 
5
18
  ## 1.0.0-beta.38
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ontrails/hono",
3
- "version": "1.0.0-beta.39",
3
+ "version": "1.0.0-beta.42",
4
4
  "files": [
5
5
  "src/**/*.ts",
6
6
  "!src/**/__tests__/**",
@@ -22,11 +22,11 @@
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.42",
26
26
  "hono": "^4.7.0"
27
27
  },
28
28
  "peerDependencies": {
29
- "@ontrails/http": "^1.0.0-beta.39",
29
+ "@ontrails/http": "^1.0.0-beta.42",
30
30
  "zod": "^4.3.5"
31
31
  },
32
32
  "trails": {
@@ -7,7 +7,7 @@ import { z } from 'zod';
7
7
  const caughtErrors = new Map<string, Error>();
8
8
  const caughtErrorInput = z.object({ errorId: z.string() });
9
9
  const caughtErrorTrail = trail('__ontrails.hono.error', {
10
- blaze: () =>
10
+ implementation: () =>
11
11
  Result.err(new InternalError('Hono error fallback executed directly')),
12
12
  input: caughtErrorInput,
13
13
  intent: 'read',