@ontrails/hono 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,16 @@
1
1
  # @ontrails/hono
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
+
3
14
  ## 1.0.0-beta.39
4
15
 
5
16
  ## 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.41",
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.41",
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.41",
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',