@zhin.js/adapter-sandbox 1.0.69 → 1.1.0

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.
Files changed (46) hide show
  1. package/CHANGELOG.md +961 -49
  2. package/README.md +60 -36
  3. package/adapters/sandbox.js +25 -0
  4. package/adapters/sandbox.ts +30 -0
  5. package/agent/skills/sandbox.md +33 -0
  6. package/lib/client.d.ts +27 -0
  7. package/lib/client.js +27 -0
  8. package/lib/endpoint.d.ts +42 -0
  9. package/lib/endpoint.js +357 -0
  10. package/lib/index.d.ts +3 -53
  11. package/lib/index.js +3 -173
  12. package/lib/protocol.d.ts +78 -0
  13. package/lib/protocol.js +301 -0
  14. package/lib/run-config.d.ts +10 -0
  15. package/lib/run-config.js +30 -0
  16. package/package.json +60 -24
  17. package/pages/RichTextEditor.js +366 -0
  18. package/{client → pages}/RichTextEditor.tsx +59 -13
  19. package/pages/SandboxChat.js +615 -0
  20. package/pages/SandboxChat.tsx +1186 -0
  21. package/pages/agentTrace.js +559 -0
  22. package/pages/agentTrace.test.js +235 -0
  23. package/pages/agentTrace.test.ts +265 -0
  24. package/pages/agentTrace.ts +646 -0
  25. package/pages/index.js +18 -0
  26. package/pages/index.tsx +18 -0
  27. package/pages/playgroundState.js +126 -0
  28. package/pages/playgroundState.test.js +92 -0
  29. package/pages/playgroundState.test.ts +105 -0
  30. package/pages/playgroundState.ts +172 -0
  31. package/pages/sandboxTransport.js +45 -0
  32. package/pages/sandboxTransport.ts +45 -0
  33. package/plugin.js +8 -0
  34. package/schema.json +76 -0
  35. package/src/client.ts +47 -0
  36. package/src/endpoint.ts +420 -0
  37. package/src/index.ts +26 -234
  38. package/src/protocol.ts +398 -0
  39. package/src/run-config.ts +41 -0
  40. package/LICENSE +0 -21
  41. package/client/Sandbox.tsx +0 -493
  42. package/client/index.tsx +0 -11
  43. package/client/tsconfig.json +0 -7
  44. package/dist/index.js +0 -1
  45. package/lib/index.d.ts.map +0 -1
  46. package/lib/index.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,917 @@
1
1
  # @zhin.js/adapter-process
2
2
 
3
+ ## 1.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1fc6270: Reset all 88 published official packages onto the owner-governed 1.1.x stable line. Packages whose historical 1.1.0 version is still available publish as 1.1.0; packages where npm permanently reserves that version use the next available 1.1.x patch. Historical higher version lines remain installable but are superseded, and routine releases after this reset are patch-only.
8
+
9
+ ### Patch Changes
10
+
11
+ - a34bf91: Publish internal peer dependencies as compatible caret ranges instead of exact versions, preventing compatible internal minor releases from forcing unrelated major bumps.
12
+ - Updated dependencies [1fc6270]
13
+ - @zhin.js/adapter@1.1.12
14
+ - @zhin.js/client@1.1.5
15
+ - @zhin.js/console-contract@1.1.0
16
+ - @zhin.js/core@1.1.35
17
+ - @zhin.js/feature-kit@1.1.0
18
+ - @zhin.js/host-http@1.1.0
19
+ - @zhin.js/im-contract@1.1.0
20
+ - @zhin.js/logger@1.1.0
21
+ - @zhin.js/page@1.1.0
22
+
23
+ ## 9.0.1
24
+
25
+ ### Patch Changes
26
+
27
+ - f7ee28d: Keep the Console SDK as a required dependency instead of also declaring it as an optional peer, which could remove it from a clean pnpm installation and prevent page compilation.
28
+ - Updated dependencies [f7ee28d]
29
+ - @zhin.js/adapter@1.2.2
30
+ - @zhin.js/core@1.5.16
31
+ - zhin.js@7.0.1
32
+
33
+ ## 9.0.0
34
+
35
+ ### Patch Changes
36
+
37
+ - zhin.js@7.0.0
38
+
39
+ ## 8.0.6
40
+
41
+ ### Patch Changes
42
+
43
+ - Updated dependencies [a728a20]
44
+ - @zhin.js/host-http@1.0.17
45
+ - zhin.js@6.0.15
46
+
47
+ ## 8.0.5
48
+
49
+ ### Patch Changes
50
+
51
+ - Updated dependencies [fcbff21]
52
+ - @zhin.js/host-http@1.0.16
53
+ - zhin.js@6.0.15
54
+
55
+ ## 8.0.4
56
+
57
+ ### Patch Changes
58
+
59
+ - Updated dependencies [882a08a]
60
+ - @zhin.js/client@2.1.14
61
+ - zhin.js@6.0.15
62
+ - @zhin.js/core@1.5.15
63
+
64
+ ## 8.0.3
65
+
66
+ ### Patch Changes
67
+
68
+ - Updated dependencies [d85eddd]
69
+ - @zhin.js/host-http@1.0.15
70
+ - @zhin.js/client@2.1.13
71
+ - @zhin.js/core@1.5.15
72
+ - zhin.js@6.0.15
73
+
74
+ ## 8.0.2
75
+
76
+ ### Patch Changes
77
+
78
+ - Updated dependencies [a5ee497]
79
+ - Updated dependencies [ba7e17a]
80
+ - Updated dependencies [7108d0b]
81
+ - @zhin.js/host-http@1.0.14
82
+ - @zhin.js/core@1.5.15
83
+ - zhin.js@6.0.15
84
+
85
+ ## 8.0.1
86
+
87
+ ### Patch Changes
88
+
89
+ - e9c6a73: Preserve WebSocket path ownership when a previous hot-reload generation stops after its replacement starts.
90
+ - 1fc78bc: Unify native platform Client access behind the literal `adapter` discriminant. Handlers infer both native events and Clients, while command, inbound/outbound middleware, and both Agent tool authoring surfaces expose the exact operation-scoped Client through a lazy `$client` getter. Definitions without `adapter` keep `$client` typed as `unknown`, and runtime dispatch rejects adapter mismatches before resolving the Client. Bundled platform tools now use this single path instead of model-provided endpoint ids and adapter-specific dependency wrappers. Every adapter registers one Client/EventMap contract, and protocol adapters including NapCat, Milky, OneBot and Satori now produce transport-independent Client objects rather than letting Endpoint instances impersonate Clients.
91
+ - Updated dependencies [4e8117c]
92
+ - Updated dependencies [54bfd6b]
93
+ - Updated dependencies [12025ee]
94
+ - Updated dependencies [09b14d6]
95
+ - Updated dependencies [1fc78bc]
96
+ - @zhin.js/adapter@1.2.1
97
+ - @zhin.js/core@1.5.14
98
+ - @zhin.js/host-http@1.0.13
99
+ - @zhin.js/logger@1.0.77
100
+ - zhin.js@6.0.14
101
+ - @zhin.js/feature-kit@1.0.13
102
+ - @zhin.js/page@1.0.13
103
+ - @zhin.js/client@2.1.12
104
+
105
+ ## 8.0.0
106
+
107
+ ### Patch Changes
108
+
109
+ - Updated dependencies [b10d058]
110
+ - Updated dependencies [f2c532f]
111
+ - @zhin.js/client@2.1.11
112
+ - @zhin.js/host-http@1.0.12
113
+ - @zhin.js/adapter@1.2.0
114
+ - @zhin.js/core@1.5.13
115
+ - zhin.js@6.0.13
116
+
117
+ ## 7.0.15
118
+
119
+ ### Patch Changes
120
+
121
+ - bcc4c87: Probe Docker readiness asynchronously so Sandbox WebSocket permissions and messages are never blocked by the informational ready frame.
122
+
123
+ ## 7.0.14
124
+
125
+ ### Patch Changes
126
+
127
+ - 9e609f4: Stabilize Sandbox WebSocket regressions by waiting for the server-side connection registration and verifying the demo-scope gate independently from the informational ready frame.
128
+
129
+ ## 7.0.13
130
+
131
+ ### Patch Changes
132
+
133
+ - 974772e: Replace the user-facing `Prompt` vocabulary with the `UserInteraction` authoring surface for input, confirmation, and selection. Commands and handlers now expose `interaction`; IM Runtime exposes `createInteraction`; schema-driven endpoint collection is named `SchemaInteraction`. The old prompt-named interaction types and properties are removed rather than aliased. User interactions render through one canonical Markdown and keyboard/list presentation module shared by commands and Agent `ask_user` turns.
134
+
135
+ Extract the transport-neutral interaction contract into `@zhin.js/interaction`. A discriminated `ask()` API supports text, number, confirmation, single-select, multi-select, and typed lists with structured `title`, `description`, and `tip` content. Typed `sequence()` interactions return one result object keyed by step id, render progress, and retry invalid replies without leaking invalid values to callers.
136
+
137
+ Preserve AI Markdown and card command actions through outbound publishing. QQ delivers Markdown with native command buttons; KOOK, Discord, Telegram, DingTalk, and Lark/Feishu now declare and encode their native Markdown dialects while retaining each adapter's interaction policy. Correct QQ callback button action encoding and button style mapping.
138
+
139
+ - 5969c5b: Add SideEventGateway so adapters forward notice/request/system into HandlerIndex. HandlerContext now exposes only generation-safe capabilities and prompt ports; live Endpoint escape hatches are removed.
140
+ - Updated dependencies [5969c5b]
141
+ - Updated dependencies [d336a3f]
142
+ - Updated dependencies [5969c5b]
143
+ - Updated dependencies [5969c5b]
144
+ - Updated dependencies [974772e]
145
+ - Updated dependencies [5969c5b]
146
+ - Updated dependencies [2f786bd]
147
+ - Updated dependencies [1312ca0]
148
+ - Updated dependencies [985fa22]
149
+ - @zhin.js/im-contract@1.0.4
150
+ - @zhin.js/core@1.5.12
151
+ - @zhin.js/adapter@1.1.11
152
+ - @zhin.js/host-http@1.0.11
153
+ - @zhin.js/client@2.1.10
154
+ - zhin.js@6.0.12
155
+ - @zhin.js/page@1.0.12
156
+
157
+ ## 7.0.12
158
+
159
+ ### Patch Changes
160
+
161
+ - @zhin.js/core@1.5.11
162
+ - zhin.js@6.0.11
163
+
164
+ ## 7.0.11
165
+
166
+ ### Patch Changes
167
+
168
+ - @zhin.js/core@1.5.10
169
+ - zhin.js@6.0.10
170
+ - @zhin.js/client@2.1.9
171
+
172
+ ## 7.0.10
173
+
174
+ ### Patch Changes
175
+
176
+ - eb84b77: fix: 更新文档,建立正确的依赖关系
177
+ - Updated dependencies [d3920e9]
178
+ - @zhin.js/core@1.5.10
179
+ - zhin.js@6.0.10
180
+ - @zhin.js/page@1.0.11
181
+ - @zhin.js/adapter@1.1.10
182
+
183
+ ## 7.0.9
184
+
185
+ ### Patch Changes
186
+
187
+ - Updated dependencies [e4757a8]
188
+ - Updated dependencies [c3c0ebf]
189
+ - @zhin.js/host-http@1.0.10
190
+ - @zhin.js/core@1.5.9
191
+ - @zhin.js/client@2.1.8
192
+ - @zhin.js/page@1.0.10
193
+ - @zhin.js/adapter@1.1.9
194
+
195
+ ## 7.0.8
196
+
197
+ ### Patch Changes
198
+
199
+ - Updated dependencies [63253bb]
200
+ - Updated dependencies [953cfe1]
201
+ - Updated dependencies [0e73866]
202
+ - @zhin.js/plugin-runtime@1.1.6
203
+ - @zhin.js/core@1.5.8
204
+ - @zhin.js/adapter@1.1.8
205
+ - @zhin.js/host-http@1.0.9
206
+ - @zhin.js/page@1.0.9
207
+ - @zhin.js/client@2.1.7
208
+
209
+ ## 7.0.7
210
+
211
+ ### Patch Changes
212
+
213
+ - Updated dependencies [36cb1ca]
214
+ - @zhin.js/core@1.5.7
215
+
216
+ ## 7.0.6
217
+
218
+ ### Patch Changes
219
+
220
+ - @zhin.js/adapter@1.1.7
221
+ - @zhin.js/core@1.5.6
222
+
223
+ ## 7.0.5
224
+
225
+ ### Patch Changes
226
+
227
+ - @zhin.js/adapter@1.1.7
228
+ - @zhin.js/core@1.5.5
229
+
230
+ ## 7.0.4
231
+
232
+ ### Patch Changes
233
+
234
+ - Updated dependencies [0de46a8]
235
+ - Updated dependencies [c106ecc]
236
+ - Updated dependencies [b0f37ae]
237
+ - Updated dependencies [daffd4c]
238
+ - Updated dependencies [36c7400]
239
+ - Updated dependencies [162fa34]
240
+ - Updated dependencies [e40b048]
241
+ - Updated dependencies [f1708c3]
242
+ - Updated dependencies [e53444f]
243
+ - Updated dependencies [92b0dd7]
244
+ - Updated dependencies [a7df753]
245
+ - @zhin.js/host-http@1.0.8
246
+ - @zhin.js/im-contract@1.0.3
247
+ - @zhin.js/adapter@1.1.7
248
+ - @zhin.js/plugin-runtime@1.1.5
249
+ - @zhin.js/core@1.5.4
250
+ - @zhin.js/page@1.0.8
251
+ - @zhin.js/client@2.1.6
252
+
253
+ ## 7.0.3
254
+
255
+ ### Patch Changes
256
+
257
+ - f8c7a54: fix: im
258
+ - Updated dependencies [f8c7a54]
259
+ - @zhin.js/logger@1.0.76
260
+ - @zhin.js/client@2.1.5
261
+ - @zhin.js/page@1.0.7
262
+ - @zhin.js/console-contract@1.0.1
263
+ - @zhin.js/host-http@1.0.7
264
+ - @zhin.js/adapter@1.1.6
265
+ - @zhin.js/core@1.5.3
266
+ - @zhin.js/im-contract@1.0.2
267
+ - @zhin.js/plugin-runtime@1.1.4
268
+
269
+ ## 7.0.2
270
+
271
+ ### Patch Changes
272
+
273
+ - Updated dependencies [afc0e66]
274
+ - Updated dependencies [2e41ad5]
275
+ - Updated dependencies [9f57124]
276
+ - @zhin.js/core@1.5.2
277
+ - @zhin.js/adapter@1.1.5
278
+ - @zhin.js/im-contract@1.0.1
279
+ - @zhin.js/plugin-runtime@1.1.3
280
+ - @zhin.js/host-http@1.0.6
281
+ - @zhin.js/page@1.0.6
282
+
283
+ ## 7.0.1
284
+
285
+ ### Patch Changes
286
+
287
+ - Updated dependencies [c8f4d45]
288
+ - @zhin.js/plugin-runtime@1.1.2
289
+ - @zhin.js/page@1.0.5
290
+ - @zhin.js/host-http@1.0.5
291
+ - @zhin.js/adapter@1.1.4
292
+ - @zhin.js/core@1.5.1
293
+
294
+ ## 7.0.0
295
+
296
+ ### Patch Changes
297
+
298
+ - 4fbff5d: feat!: 多模态双向 Segment 一贯制(BREAKING,无兼容层)
299
+
300
+ 全框架唯一媒体表达统一为 canonical `Segment` + `MediaRef{kind: url|path|base64|file, value, mime_type?, file_name?, size?}`,新增 audio/video/file 段类型;所有第二形状(legacy `data.url/file/base64` 字段、`mediaRefFromLegacyData`/`mediaRefToLegacyFields` 桥、双写)全部删除。
301
+
302
+ - **core**:`SendContent` 一等支持 `Segment[]`;endpoint 出站载荷只含 canonical 段;`resolveOutboundMediaPolicy` 改为纯声明驱动(adapter definition `segments.outboundMedia`),内置策略表删除,未声明回退 `url-or-text`;`ImageContent` 旧桥删除。
303
+ - **ai**:新增 `MediaContentBlock`/`MediaBlockRef`(Segment 同构)与 `UserMessage.media`(当前 turn 媒体,**不持久化**——存储层自动剥离);`createUserMessage(text, media?)` 签名变更(`ImageContent` 删除);provider 边界序列化器 `filterMediaBlocksForProvider` + 能力表(缺省 image-only,不支持类型降级占位文本);ai-sdk 桥媒体块 → SDK image/file parts。
304
+ - **agent**:入站 turn 注入(`turn/inbound-media.ts`)——commMessage 媒体段 → 当前 turn `UserMessage.media`;图片 path 物化、音频默认 STT(`@zhin.js/speech` 可选,失败降级占位)、视频/文件占位;`publishOutboundElements` 产出 canonical Segment;`transcribeAudioPayload` 导出。
305
+ - **cli**:`bridgeRuntimeMessage` 回复链路媒体段透传,不再压平为文本(`$reply` 直达 normalize → adapter)。
306
+ - **全部 20 个平台适配器**:出站媒体只消费 `data.media`(url 直发 / base64 直发 / 平台上传 / 读盘),入站媒体产出 canonical `data.media`;`segments.outboundMedia` 声明与实际消费逐一核对修正;QQ 入站新增 canonical segments(image/audio/video/file/mention/face/reply),图片/语音/视频不再丢失。
307
+
308
+ 迁移:适配器/插件产媒体一律用 `{ type, data: { media: MediaRef } }`;发送 legacy `data.url/file/base64` 形状的段会被 warn 丢弃。
309
+
310
+ - Updated dependencies [7c1e63a]
311
+ - Updated dependencies [4fbff5d]
312
+ - Updated dependencies [5b94d9c]
313
+ - @zhin.js/adapter@1.1.3
314
+ - @zhin.js/core@1.5.0
315
+ - @zhin.js/client@2.1.4
316
+
317
+ ## 6.0.5
318
+
319
+ ### Patch Changes
320
+
321
+ - Updated dependencies [d8bf702]
322
+ - @zhin.js/host-http@1.0.4
323
+ - @zhin.js/core@1.4.3
324
+ - @zhin.js/client@2.1.3
325
+
326
+ ## 6.0.4
327
+
328
+ ### Patch Changes
329
+
330
+ - Updated dependencies [45b3256]
331
+ - @zhin.js/core@1.4.3
332
+
333
+ ## 6.0.3
334
+
335
+ ### Patch Changes
336
+
337
+ - @zhin.js/core@1.4.2
338
+ - @zhin.js/client@2.1.2
339
+
340
+ ## 6.0.2
341
+
342
+ ### Patch Changes
343
+
344
+ - d5cd4aa: Publish Plugin Runtime entry points and convention modules as JavaScript so
345
+ installed npm plugins load on Node without TypeScript stripping. Workspace
346
+ development continues to prefer TypeScript sources for local HMR.
347
+
348
+ Remove the unconsumed legacy game hub APIs from game-kit; game navigation and
349
+ records now use ordinary convention commands owned by the game hub plugin.
350
+
351
+ - @zhin.js/page@1.0.4
352
+ - @zhin.js/adapter@1.1.2
353
+ - @zhin.js/core@1.4.2
354
+
355
+ ## 6.0.1
356
+
357
+ ### Patch Changes
358
+
359
+ - 5691aba: 第二轮全量审计修复批(8 面 ~60 bug):
360
+
361
+ - **安全**:email 附件路径穿越修复(basename + downloadPath 约束);lark/telegram/satori webhook 鉴权(缺密钥告警、timingSafeEqual、±5min 时效窗、chat_type 修正);onebot wss/webhook 缺 token 告警;qq webhook 改原始字节验签;renderJsx/JSX 转义注入修复;console runtime token 401 死循环。
362
+ - **P0 功能**:sandbox 多 endpoint 解析 + WS 路径隔离;short-url expand(undici opaqueredirect)改 follow;AI 压缩摘要失败不再静默丢历史(熔断恢复生效);console-ui 实时推送事件名归一化 + IndexedDB schema 对齐;process-monitor 热重载不再误判崩溃。
363
+ - **生命周期**:email IMAP 断线重连 + 在飞锁;onebot11/12 start 失败清理;line replyToken TTL + push 兜底;wechat-mp token 过期重试 + MsgId 去重;weixin-ilink buf 推进/防抖写盘/媒体 TTL/QR abort;satori PONG 看门狗;退避自毁修复。
364
+ - **游戏**:text-adventure 终局 restart 复活 + requires 服务端校验;tic-tac-toe PvP 占用/restart/队列清理/TTL;idiom-chain/word-riddle 闲聊不扣失误;别名中间件不劫持普通聊天。
365
+ - **共享库**:schema falsy 默认值/date/tuple/union 修复;database parseCondition Date/未知操作符、sqlite TEXT 往返、query 分派、belongsToMany 方言、migration dry-run;schedule DST 回拨死循环、重复 id 去重、flush 串行化;game-kit fallback 编号/onboarding 提示/尾缀边界/活引用拷贝。
366
+ - **渲染语音**:fetch 全部超时 + 渲染并发闸;sanitizeHtml form 保文本;STT 扩展名映射 + 删临时文件;TTS 未知 provider 报错;emojiCache LRU 负缓存/fontCache style/clearFonts 恢复;register 错误分类收窄。
367
+
368
+ - Updated dependencies [cdf64e7]
369
+ - Updated dependencies [2d0a159]
370
+ - Updated dependencies [5691aba]
371
+ - Updated dependencies [078e3f7]
372
+ - Updated dependencies [9c997b2]
373
+ - Updated dependencies [09d4f25]
374
+ - Updated dependencies [f0ec5ab]
375
+ - Updated dependencies [fa66c4c]
376
+ - Updated dependencies [fa66c4c]
377
+ - Updated dependencies [6cb6152]
378
+ - @zhin.js/plugin-runtime@1.1.1
379
+ - @zhin.js/host-http@1.0.3
380
+ - @zhin.js/client@2.1.1
381
+ - @zhin.js/adapter@1.1.1
382
+ - @zhin.js/core@1.4.1
383
+ - @zhin.js/page@1.0.3
384
+
385
+ ## 6.0.0
386
+
387
+ ### Patch Changes
388
+
389
+ - 7db69c1: 命令前缀改为适配器配置项:`MessageDispatcher` 不再硬编码 `/`,默认按消息所属适配器实例 config 的 `commandPrefix` 解析(默认 `''` 无前缀,任意文本按命令匹配),`endpoints[i].commandPrefix` 逐项覆盖;`ImRuntime({ commandPrefix })` 仍可设全局静态前缀。全部 20 个平台适配器 schema 新增 `commandPrefix` 属性。
390
+
391
+ BREAKING(行为变化):未配置时命令不再需要 `/` 前缀——原 `/zt` 写法不再命中,直接发 `zt` 即可;需要斜杠风格的适配器请在配置里显式设 `commandPrefix: '/'`。
392
+
393
+ - 713445c: 适配器配置格式定稿(不兼容旧格式):`plugins.<adapter>` 顶层仅共享字段 + `commandPrefix`,`endpoints[i]` 携带 endpoint 级字段(`name` + 凭据,各 schema 已类型化),`endpoints` 为必填(icqq 另需顶层 `master`);icqq 新增 `trusted` 列表(顶层/逐项均可)。scaffold-wizard 全部字段式与自定义 configure() 产出改为新格式,examples(full-bot / qq-games-bot)与 20 个适配器 README 同步迁移。
394
+ - Updated dependencies [7db69c1]
395
+ - Updated dependencies [e5c84ed]
396
+ - Updated dependencies [3ea84a0]
397
+ - Updated dependencies [5849336]
398
+ - Updated dependencies [1ddcd70]
399
+ - Updated dependencies [ac9da66]
400
+ - @zhin.js/core@1.4.0
401
+ - @zhin.js/adapter@1.1.0
402
+ - @zhin.js/plugin-runtime@1.1.0
403
+ - @zhin.js/client@2.1.0
404
+ - @zhin.js/host-http@1.0.2
405
+ - @zhin.js/page@1.0.2
406
+
407
+ ## 5.0.6
408
+
409
+ ### Patch Changes
410
+
411
+ - cc5c94d: 约定式插件运行时迁移(breaking):插件与适配器由 `usePlugin()` / `extends Adapter` 迁移为 `definePlugin` / `defineAdapter` + `plugin.ts` + 约定目录(`adapters/`、`commands/`、`components/`、`tools/` 等)。
412
+
413
+ - 新增约定式运行时包:`@zhin.js/plugin-runtime`、`@zhin.js/adapter`、`@zhin.js/runtime`、`@zhin.js/host-http`(首版 1.0.0 走 init-publish,不在本 changeset 内 bump)。
414
+ - 全部 20 个平台适配器改为约定式 `defineAdapter`,旧 `usePlugin` / `extends Adapter` / `segment-mapper` 生产入口已删除;onebot11 反向 WSS、onebot12 webhook/wss、milky sse/webhook/wss、satori webhook、kook webhook、qq webhook/middleware 等 slice 1 推迟的连接模式已补齐。
415
+ - 游戏 / 工具 / 服务插件同步迁移到约定目录结构。
416
+ - CLI 增加 plugin-runtime host installer(http/database/outbound/schedule/console 等)。
417
+
418
+ 后续加固(同批):
419
+
420
+ - CLI:`zhin runtime start --daemon`(pidfile/崩溃拉起/风暴保护),orphan watchdog 防僵尸进程;legacy `zhin dev` / `zhin start` 已移除(含 `zhin restart`),`zhin stop` 兼容新 daemon。
421
+ - 安全:builtin 工具统一走 `security/policy-facade.ts` 的 `runToolPolicies`(声明式策略表,deny 优先);审计日志 close flush + 背压队列;`splitCompoundCommand` 引号感知、`extractCommandName` 去引号堵绕过。
422
+ - 日志:Logger 双堆栈修复、本地时区、`getLogger` 挂树(`setLevel` 递归生效)、第三方库(log4js/discord)桥接、启动人读总结。
423
+ - 结构:`plugins/games/shared` 迁为 `packages/game-kit`(`@zhin.js/game-kit`);死目录 `plugins/adapters/common` 删除。
424
+ - 脚手架:`create-zhin-app` / `zhin new` / scaffold-wizard 生成物改为 Plugin Runtime 形态(minimal-bot 同构,新配置格式)。
425
+ - Console:endpoint.list 真实名称与 phase、schema:get-all 按 instanceKey 映射、db:\* 接 DatabaseHost。
426
+
427
+ 注:按仓库发布惯例(见 1bb345dd2),本次 breaking 迁移统一使用 patch,避免 zhin.js 5.0 级联。
428
+
429
+ - Updated dependencies [16ec4e8]
430
+ - Updated dependencies [cc5c94d]
431
+ - Updated dependencies [447f3e2]
432
+ - @zhin.js/core@1.3.5
433
+ - @zhin.js/host-http@1.0.1
434
+ - @zhin.js/logger@1.0.75
435
+ - @zhin.js/plugin-runtime@1.0.1
436
+ - @zhin.js/adapter@1.0.1
437
+ - @zhin.js/page@1.0.1
438
+
439
+ ## 5.0.5
440
+
441
+ ### Patch Changes
442
+
443
+ - 872c583: fix: 代码格式优化
444
+ - Updated dependencies [872c583]
445
+ - Updated dependencies [872c583]
446
+ - @zhin.js/client@2.0.5
447
+ - @zhin.js/contract@1.0.3
448
+ - @zhin.js/core@1.3.4
449
+ - @zhin.js/host-api@2.0.5
450
+ - @zhin.js/host-router@2.0.3
451
+
452
+ ## 5.0.4
453
+
454
+ ### Patch Changes
455
+
456
+ - 5cc9c03: fix: ai 优化
457
+ - b9b3881: fix: 增加游戏引擎以及部分游戏
458
+ - Updated dependencies [5b08052]
459
+ - Updated dependencies [5cc9c03]
460
+ - Updated dependencies [36d6db2]
461
+ - Updated dependencies [b9b3881]
462
+ - Updated dependencies [7700903]
463
+ - @zhin.js/core@1.3.3
464
+ - @zhin.js/client@2.0.4
465
+ - @zhin.js/contract@1.0.2
466
+ - @zhin.js/host-api@2.0.4
467
+ - @zhin.js/host-router@2.0.2
468
+
469
+ ## 5.0.3
470
+
471
+ ### Patch Changes
472
+
473
+ - c4575c9: fix: 输入输出优化,文档优化
474
+ - Updated dependencies [c4575c9]
475
+ - Updated dependencies [c4575c9]
476
+ - @zhin.js/host-router@2.0.1
477
+ - @zhin.js/host-api@2.0.3
478
+ - @zhin.js/core@1.3.2
479
+
480
+ ## 5.0.2
481
+
482
+ ### Patch Changes
483
+
484
+ - Updated dependencies [384ea11]
485
+ - @zhin.js/host-api@2.0.2
486
+
487
+ ## 5.0.1
488
+
489
+ ### Patch Changes
490
+
491
+ - Updated dependencies [609da24]
492
+ - Updated dependencies [93e58d9]
493
+ - Updated dependencies [ae5239c]
494
+ - @zhin.js/core@1.3.1
495
+ - @zhin.js/host-api@2.0.1
496
+ - @zhin.js/host-router@2.0.0
497
+
498
+ ## 5.0.0
499
+
500
+ ### Patch Changes
501
+
502
+ - Updated dependencies [db38da4]
503
+ - @zhin.js/core@1.3.0
504
+ - @zhin.js/host-api@2.0.0
505
+ - @zhin.js/host-router@2.0.0
506
+
507
+ ## 4.0.1
508
+
509
+ ### Patch Changes
510
+
511
+ - d8def69: fix: 性能优化
512
+ - 2ef4896: fix: 更新概念 Bot=>Endpoint,已适配后续更多的业务场景;统一角色权限
513
+ - Updated dependencies [d8def69]
514
+ - Updated dependencies [2ef4896]
515
+ - @zhin.js/host-router@1.0.1
516
+ - @zhin.js/host-api@1.0.1
517
+ - @zhin.js/core@1.2.1
518
+ - @zhin.js/client@2.0.3
519
+
520
+ ## 4.0.0
521
+
522
+ ### Patch Changes
523
+
524
+ - Updated dependencies [65f4b0a]
525
+ - Updated dependencies [e62c23a]
526
+ - @zhin.js/core@1.2.0
527
+ - @zhin.js/host-api@1.0.0
528
+ - @zhin.js/host-router@1.0.0
529
+
530
+ ## 3.0.10
531
+
532
+ ### Patch Changes
533
+
534
+ - Updated dependencies [d8547d2]
535
+ - @zhin.js/core@1.1.33
536
+ - @zhin.js/host-router@0.0.3
537
+
538
+ ## 3.0.9
539
+
540
+ ### Patch Changes
541
+
542
+ - 3735e96: fix: 智能家居控制
543
+ - Updated dependencies [3735e96]
544
+ - Updated dependencies [238de62]
545
+ - @zhin.js/host-api@0.0.4
546
+ - @zhin.js/core@1.1.32
547
+ - @zhin.js/host-router@0.0.3
548
+
549
+ ## 3.0.8
550
+
551
+ ### Patch Changes
552
+
553
+ - c8f8207: fix: 修复内存泄露问题
554
+ - Updated dependencies [c8f8207]
555
+ - Updated dependencies [a26e496]
556
+ - @zhin.js/client@2.0.2
557
+ - @zhin.js/contract@1.0.1
558
+ - @zhin.js/host-api@0.0.3
559
+ - @zhin.js/host-router@0.0.3
560
+ - @zhin.js/core@1.1.31
561
+
562
+ ## 3.0.7
563
+
564
+ ### Patch Changes
565
+
566
+ - c78d2cd: fix: cli 更新,文档更新
567
+ - Updated dependencies [c78d2cd]
568
+ - @zhin.js/client@2.0.1
569
+ - @zhin.js/host-router@0.0.2
570
+ - @zhin.js/core@1.1.30
571
+ - @zhin.js/host-api@0.0.2
572
+
573
+ ## 3.0.6
574
+
575
+ ### Patch Changes
576
+
577
+ - 90d9efd: fix: 处理包名
578
+ - @zhin.js/core@1.1.29
579
+ - @zhin.js/host-api@0.0.1
580
+ - @zhin.js/host-router@0.0.1
581
+
582
+ ## 3.0.5
583
+
584
+ ### Patch Changes
585
+
586
+ - 7e14f8d: fix: 统一发个版,优化一些列安全问题
587
+ - Updated dependencies [6295cbd]
588
+ - Updated dependencies [7e14f8d]
589
+ - Updated dependencies [996ebb3]
590
+ - @zhin.js/core@1.1.28
591
+ - @zhin.js/client@1.1.4
592
+ - @zhin.js/host-router-host@0.1.4
593
+ - zhin.js@1.0.86
594
+ - @zhin.js/console@3.0.5
595
+ - @zhin.js/host-router@1.0.79
596
+
597
+ ## 3.0.4
598
+
599
+ ### Patch Changes
600
+
601
+ - zhin.js@1.0.85
602
+ - @zhin.js/console@3.0.4
603
+ - @zhin.js/host-router@1.0.78
604
+ - @zhin.js/core@1.1.27
605
+
606
+ ## 3.0.3
607
+
608
+ ### Patch Changes
609
+
610
+ - 0db9fed: fix: deno deploy
611
+ - f19d2e0: fix: remove multiple runtime support
612
+ - Updated dependencies [0db9fed]
613
+ - Updated dependencies [f19d2e0]
614
+ - Updated dependencies [2d24338]
615
+ - @zhin.js/console@3.0.3
616
+ - @zhin.js/host-router-host@0.1.3
617
+ - @zhin.js/core@1.1.26
618
+ - zhin.js@1.0.84
619
+ - @zhin.js/client@1.1.3
620
+ - @zhin.js/host-router@1.0.77
621
+
622
+ ## 3.0.2
623
+
624
+ ### Patch Changes
625
+
626
+ - 775427e: fix: edge 支持
627
+ - Updated dependencies [775427e]
628
+ - @zhin.js/console@3.0.2
629
+ - @zhin.js/host-router@1.0.76
630
+ - @zhin.js/client@1.1.2
631
+ - @zhin.js/core@1.1.25
632
+ - zhin.js@1.0.83
633
+
634
+ ## 3.0.1
635
+
636
+ ### Patch Changes
637
+
638
+ - 32049f5: fix: init publish
639
+ - Updated dependencies [32049f5]
640
+ - @zhin.js/console@3.0.1
641
+ - @zhin.js/host-router@1.0.75
642
+ - @zhin.js/client@1.1.1
643
+ - @zhin.js/core@1.1.24
644
+ - zhin.js@1.0.82
645
+
646
+ ## 3.0.0
647
+
648
+ ### Patch Changes
649
+
650
+ - Updated dependencies
651
+ - @zhin.js/client@1.1.0
652
+ - @zhin.js/console@3.0.0
653
+
654
+ ## 2.0.24
655
+
656
+ ### Patch Changes
657
+
658
+ - Updated dependencies [8086ccb]
659
+ - @zhin.js/core@1.1.23
660
+ - zhin.js@1.0.81
661
+ - @zhin.js/console@2.0.24
662
+ - @zhin.js/host-router@1.0.74
663
+
664
+ ## 2.0.23
665
+
666
+ ### Patch Changes
667
+
668
+ - zhin.js@1.0.80
669
+ - @zhin.js/console@2.0.23
670
+ - @zhin.js/host-router@1.0.73
671
+ - @zhin.js/core@1.1.22
672
+
673
+ ## 2.0.22
674
+
675
+ ### Patch Changes
676
+
677
+ - zhin.js@1.0.79
678
+ - @zhin.js/console@2.0.22
679
+ - @zhin.js/host-router@1.0.72
680
+ - @zhin.js/core@1.1.21
681
+
682
+ ## 2.0.21
683
+
684
+ ### Patch Changes
685
+
686
+ - Updated dependencies [88caeb2]
687
+ - @zhin.js/console@2.0.21
688
+ - @zhin.js/core@1.1.20
689
+ - zhin.js@1.0.78
690
+ - @zhin.js/host-router@1.0.71
691
+
692
+ ## 2.0.20
693
+
694
+ ### Patch Changes
695
+
696
+ - zhin.js@1.0.77
697
+ - @zhin.js/core@1.1.19
698
+ - @zhin.js/console@2.0.20
699
+ - @zhin.js/host-router@1.0.70
700
+
701
+ ## 2.0.19
702
+
703
+ ### Patch Changes
704
+
705
+ - Updated dependencies [cb9fbf1]
706
+ - zhin.js@1.0.76
707
+ - @zhin.js/console@2.0.19
708
+ - @zhin.js/host-router@1.0.69
709
+ - @zhin.js/core@1.1.18
710
+
711
+ ## 2.0.18
712
+
713
+ ### Patch Changes
714
+
715
+ - @zhin.js/core@1.1.17
716
+ - zhin.js@1.0.75
717
+ - @zhin.js/console@2.0.18
718
+ - @zhin.js/host-router@1.0.68
719
+
720
+ ## 2.0.17
721
+
722
+ ### Patch Changes
723
+
724
+ - Updated dependencies [c9dec38]
725
+ - @zhin.js/core@1.1.16
726
+ - zhin.js@1.0.74
727
+ - @zhin.js/console@2.0.17
728
+ - @zhin.js/host-router@1.0.67
729
+
730
+ ## 2.0.16
731
+
732
+ ### Patch Changes
733
+
734
+ - f1e9a76: fix: 提高 skill 质量
735
+ - zhin.js@1.0.73
736
+ - @zhin.js/console@2.0.16
737
+ - @zhin.js/host-router@1.0.66
738
+ - @zhin.js/core@1.1.15
739
+
740
+ ## 2.0.15
741
+
742
+ ### Patch Changes
743
+
744
+ - Updated dependencies [21efca3]
745
+ - @zhin.js/console@2.0.15
746
+
747
+ ## 2.0.14
748
+
749
+ ### Patch Changes
750
+
751
+ - abc75a4: fix: 优化,客户端构建优化
752
+ - Updated dependencies [abc75a4]
753
+ - @zhin.js/console@2.0.14
754
+
755
+ ## 2.0.13
756
+
757
+ ### Patch Changes
758
+
759
+ - e28fd7c: fix: 重新发版
760
+ - Updated dependencies [e28fd7c]
761
+ - @zhin.js/client@1.0.18
762
+ - @zhin.js/core@1.1.14
763
+ - zhin.js@1.0.72
764
+ - @zhin.js/console@2.0.13
765
+ - @zhin.js/host-router@1.0.65
766
+
767
+ ## 2.0.12
768
+
769
+ ### Patch Changes
770
+
771
+ - Updated dependencies [60b1a4d]
772
+ - @zhin.js/console@2.0.12
773
+
774
+ ## 2.0.11
775
+
776
+ ### Patch Changes
777
+
778
+ - 4304825: fix: 重新发版
779
+ - Updated dependencies [4304825]
780
+ - @zhin.js/client@1.0.17
781
+ - @zhin.js/core@1.1.13
782
+ - zhin.js@1.0.71
783
+ - @zhin.js/console@2.0.11
784
+ - @zhin.js/host-router@1.0.64
785
+
786
+ ## 2.0.10
787
+
788
+ ### Patch Changes
789
+
790
+ - Updated dependencies [d0250e8]
791
+ - @zhin.js/core@1.1.10
792
+ - zhin.js@1.0.68
793
+ - @zhin.js/console@2.0.10
794
+ - @zhin.js/host-router@1.0.63
795
+
796
+ ## 2.0.9
797
+
798
+ ### Patch Changes
799
+
800
+ - Updated dependencies [0eba6d6]
801
+ - @zhin.js/host-router@1.0.62
802
+ - @zhin.js/core@1.1.9
803
+ - zhin.js@1.0.67
804
+ - @zhin.js/console@2.0.9
805
+
806
+ ## 2.0.8
807
+
808
+ ### Patch Changes
809
+
810
+ - zhin.js@1.0.66
811
+ - @zhin.js/core@1.1.8
812
+ - @zhin.js/console@2.0.8
813
+ - @zhin.js/host-router@1.0.61
814
+
815
+ ## 2.0.7
816
+
817
+ ### Patch Changes
818
+
819
+ - @zhin.js/core@1.1.7
820
+ - zhin.js@1.0.65
821
+ - @zhin.js/console@2.0.7
822
+ - @zhin.js/host-router@1.0.60
823
+
824
+ ## 2.0.6
825
+
826
+ ### Patch Changes
827
+
828
+ - 9577eba: fix: tool 收集 bug,升级 ts 到 6.0.2
829
+ - Updated dependencies [9577eba]
830
+ - @zhin.js/client@1.0.16
831
+ - @zhin.js/core@1.1.6
832
+ - zhin.js@1.0.64
833
+ - @zhin.js/console@2.0.6
834
+ - @zhin.js/host-router@1.0.59
835
+
836
+ ## 2.0.5
837
+
838
+ ### Patch Changes
839
+
840
+ - ba30934: fix: web 优化
841
+ - Updated dependencies [ba30934]
842
+ - @zhin.js/console@2.0.5
843
+ - @zhin.js/host-router@1.0.58
844
+ - zhin.js@1.0.63
845
+ - @zhin.js/core@1.1.5
846
+
847
+ ## 2.0.4
848
+
849
+ ### Patch Changes
850
+
851
+ - zhin.js@1.0.62
852
+ - @zhin.js/console@2.0.4
853
+ - @zhin.js/host-router@1.0.57
854
+ - @zhin.js/core@1.1.4
855
+
856
+ ## 2.0.3
857
+
858
+ ### Patch Changes
859
+
860
+ - zhin.js@1.0.61
861
+ - @zhin.js/console@2.0.3
862
+ - @zhin.js/host-router@1.0.56
863
+ - @zhin.js/core@1.1.3
864
+
865
+ ## 2.0.2
866
+
867
+ ### Patch Changes
868
+
869
+ - 5073d4c: chore: chore: update TypeScript version to ^5.9.3 across all plugins and packages
870
+ feat: enhance ai-text-as-image output registration with off handler for cleanup
871
+ fix: remove unnecessary logging in ensureBuiltinFontsCached function
872
+ refactor: simplify action handlers in html-renderer tools
873
+ chore: add README files for queue-sandbox-poc and event-delivery packages
874
+ chore: adjust pnpm workspace configuration to exclude games directory
875
+ chore: update tsconfig to include plugins directory for TypeScript compilation
876
+ - Updated dependencies [5073d4c]
877
+ - @zhin.js/console@2.0.2
878
+ - @zhin.js/core@1.1.2
879
+ - zhin.js@1.0.60
880
+ - @zhin.js/host-router@1.0.55
881
+
882
+ ## 2.0.1
883
+
884
+ ### Patch Changes
885
+
886
+ - c212bf7: fix: 适配器优化
887
+ - Updated dependencies [c212bf7]
888
+ - @zhin.js/client@1.0.15
889
+ - @zhin.js/core@1.1.1
890
+ - zhin.js@1.0.59
891
+ - @zhin.js/console@2.0.1
892
+ - @zhin.js/host-router@1.0.54
893
+
894
+ ## 2.0.0
895
+
896
+ ### Patch Changes
897
+
898
+ - Updated dependencies [8280fe7]
899
+ - @zhin.js/core@1.1.0
900
+ - zhin.js@1.0.58
901
+ - @zhin.js/console@2.0.0
902
+ - @zhin.js/host-router@1.0.53
903
+
904
+ ## 1.0.70
905
+
906
+ ### Patch Changes
907
+
908
+ - c606a57: fix: ask_user 优化
909
+ - Updated dependencies [c606a57]
910
+ - @zhin.js/core@1.0.57
911
+ - zhin.js@1.0.57
912
+ - @zhin.js/console@1.0.59
913
+ - @zhin.js/host-router@1.0.52
914
+
3
915
  ## 1.0.69
4
916
 
5
917
  ### Patch Changes
@@ -7,7 +919,7 @@
7
919
  - zhin.js@1.0.56
8
920
  - @zhin.js/core@1.0.56
9
921
  - @zhin.js/console@1.0.58
10
- - @zhin.js/http@1.0.51
922
+ - @zhin.js/host-router@1.0.51
11
923
 
12
924
  ## 1.0.68
13
925
 
@@ -24,7 +936,7 @@
24
936
  - @zhin.js/core@1.0.55
25
937
  - zhin.js@1.0.55
26
938
  - @zhin.js/console@1.0.56
27
- - @zhin.js/http@1.0.50
939
+ - @zhin.js/host-router@1.0.50
28
940
 
29
941
  ## 1.0.66
30
942
 
@@ -36,7 +948,7 @@
36
948
  - @zhin.js/core@1.0.54
37
949
  - zhin.js@1.0.54
38
950
  - @zhin.js/console@1.0.55
39
- - @zhin.js/http@1.0.49
951
+ - @zhin.js/host-router@1.0.49
40
952
 
41
953
  ## 1.0.65
42
954
 
@@ -45,7 +957,7 @@
45
957
  - @zhin.js/core@1.0.53
46
958
  - zhin.js@1.0.53
47
959
  - @zhin.js/console@1.0.54
48
- - @zhin.js/http@1.0.48
960
+ - @zhin.js/host-router@1.0.48
49
961
 
50
962
  ## 1.0.64
51
963
 
@@ -54,7 +966,7 @@
54
966
  - a3511a0: 各包内 Agent 技能说明已固定为随包发布的 `skills/*/SKILL.md`(替代已移除的运行时 `declareSkill`)。本批为 registry / 分发侧对齐的 **patch** 版本递增。
55
967
  - Updated dependencies [a3511a0]
56
968
  - @zhin.js/console@1.0.53
57
- - @zhin.js/http@1.0.47
969
+ - @zhin.js/host-router@1.0.47
58
970
 
59
971
  ## 1.0.63
60
972
 
@@ -67,7 +979,7 @@
67
979
  - zhin.js@1.0.52
68
980
  - @zhin.js/console@1.0.52
69
981
  - @zhin.js/client@1.0.13
70
- - @zhin.js/http@1.0.46
982
+ - @zhin.js/host-router@1.0.46
71
983
 
72
984
  ## 1.0.62
73
985
 
@@ -82,7 +994,7 @@
82
994
 
83
995
  - zhin.js@1.0.51
84
996
  - @zhin.js/console@1.0.50
85
- - @zhin.js/http@1.0.45
997
+ - @zhin.js/host-router@1.0.45
86
998
  - @zhin.js/core@1.0.51
87
999
 
88
1000
  ## 1.0.60
@@ -99,7 +1011,7 @@
99
1011
 
100
1012
  - zhin.js@1.0.50
101
1013
  - @zhin.js/console@1.0.48
102
- - @zhin.js/http@1.0.44
1014
+ - @zhin.js/host-router@1.0.44
103
1015
  - @zhin.js/core@1.0.50
104
1016
 
105
1017
  ## 1.0.58
@@ -110,7 +1022,7 @@
110
1022
  - @zhin.js/core@1.0.49
111
1023
  - zhin.js@1.0.49
112
1024
  - @zhin.js/console@1.0.47
113
- - @zhin.js/http@1.0.43
1025
+ - @zhin.js/host-router@1.0.43
114
1026
 
115
1027
  ## 1.0.57
116
1028
 
@@ -120,7 +1032,7 @@
120
1032
  - @zhin.js/core@1.0.48
121
1033
  - zhin.js@1.0.48
122
1034
  - @zhin.js/console@1.0.46
123
- - @zhin.js/http@1.0.42
1035
+ - @zhin.js/host-router@1.0.42
124
1036
 
125
1037
  ## 1.0.56
126
1038
 
@@ -130,7 +1042,7 @@
130
1042
  - @zhin.js/core@1.0.47
131
1043
  - zhin.js@1.0.47
132
1044
  - @zhin.js/console@1.0.45
133
- - @zhin.js/http@1.0.41
1045
+ - @zhin.js/host-router@1.0.41
134
1046
 
135
1047
  ## 1.0.55
136
1048
 
@@ -140,7 +1052,7 @@
140
1052
  - @zhin.js/core@1.0.46
141
1053
  - zhin.js@1.0.46
142
1054
  - @zhin.js/console@1.0.44
143
- - @zhin.js/http@1.0.40
1055
+ - @zhin.js/host-router@1.0.40
144
1056
 
145
1057
  ## 1.0.54
146
1058
 
@@ -150,7 +1062,7 @@
150
1062
  - @zhin.js/core@1.0.45
151
1063
  - zhin.js@1.0.45
152
1064
  - @zhin.js/console@1.0.43
153
- - @zhin.js/http@1.0.39
1065
+ - @zhin.js/host-router@1.0.39
154
1066
 
155
1067
  ## 1.0.53
156
1068
 
@@ -158,7 +1070,7 @@
158
1070
 
159
1071
  - zhin.js@1.0.44
160
1072
  - @zhin.js/console@1.0.42
161
- - @zhin.js/http@1.0.38
1073
+ - @zhin.js/host-router@1.0.38
162
1074
  - @zhin.js/core@1.0.44
163
1075
 
164
1076
  ## 1.0.52
@@ -167,7 +1079,7 @@
167
1079
 
168
1080
  - Updated dependencies [72ec4ba]
169
1081
  - @zhin.js/console@1.0.41
170
- - @zhin.js/http@1.0.37
1082
+ - @zhin.js/host-router@1.0.37
171
1083
  - @zhin.js/client@1.0.11
172
1084
  - @zhin.js/core@1.0.43
173
1085
  - zhin.js@1.0.43
@@ -186,7 +1098,7 @@
186
1098
  - zhin.js@1.0.42
187
1099
  - @zhin.js/core@1.0.42
188
1100
  - @zhin.js/console@1.0.39
189
- - @zhin.js/http@1.0.36
1101
+ - @zhin.js/host-router@1.0.36
190
1102
 
191
1103
  ## 1.0.49
192
1104
 
@@ -196,7 +1108,7 @@
196
1108
  - @zhin.js/core@1.0.41
197
1109
  - zhin.js@1.0.41
198
1110
  - @zhin.js/console@1.0.38
199
- - @zhin.js/http@1.0.35
1111
+ - @zhin.js/host-router@1.0.35
200
1112
 
201
1113
  ## 1.0.48
202
1114
 
@@ -206,7 +1118,7 @@
206
1118
  - @zhin.js/core@1.0.40
207
1119
  - zhin.js@1.0.40
208
1120
  - @zhin.js/console@1.0.37
209
- - @zhin.js/http@1.0.34
1121
+ - @zhin.js/host-router@1.0.34
210
1122
 
211
1123
  ## 1.0.47
212
1124
 
@@ -216,7 +1128,7 @@
216
1128
  - @zhin.js/core@1.0.39
217
1129
  - zhin.js@1.0.39
218
1130
  - @zhin.js/console@1.0.36
219
- - @zhin.js/http@1.0.33
1131
+ - @zhin.js/host-router@1.0.33
220
1132
 
221
1133
  ## 1.0.46
222
1134
 
@@ -226,7 +1138,7 @@
226
1138
  - @zhin.js/core@1.0.38
227
1139
  - zhin.js@1.0.38
228
1140
  - @zhin.js/console@1.0.35
229
- - @zhin.js/http@1.0.32
1141
+ - @zhin.js/host-router@1.0.32
230
1142
 
231
1143
  ## 1.0.45
232
1144
 
@@ -234,7 +1146,7 @@
234
1146
 
235
1147
  - Updated dependencies [631da6e]
236
1148
  - @zhin.js/console@1.0.34
237
- - @zhin.js/http@1.0.31
1149
+ - @zhin.js/host-router@1.0.31
238
1150
 
239
1151
  ## 1.0.44
240
1152
 
@@ -244,7 +1156,7 @@
244
1156
  - @zhin.js/core@1.0.37
245
1157
  - zhin.js@1.0.37
246
1158
  - @zhin.js/console@1.0.33
247
- - @zhin.js/http@1.0.30
1159
+ - @zhin.js/host-router@1.0.30
248
1160
 
249
1161
  ## 1.0.43
250
1162
 
@@ -253,7 +1165,7 @@
253
1165
  - Updated dependencies [432d0a5]
254
1166
  - Updated dependencies [6d94111]
255
1167
  - @zhin.js/console@1.0.32
256
- - @zhin.js/http@1.0.29
1168
+ - @zhin.js/host-router@1.0.29
257
1169
  - @zhin.js/core@1.0.36
258
1170
  - zhin.js@1.0.36
259
1171
 
@@ -265,7 +1177,7 @@
265
1177
  - @zhin.js/core@1.0.35
266
1178
  - zhin.js@1.0.35
267
1179
  - @zhin.js/console@1.0.31
268
- - @zhin.js/http@1.0.28
1180
+ - @zhin.js/host-router@1.0.28
269
1181
 
270
1182
  ## 1.0.41
271
1183
 
@@ -275,7 +1187,7 @@
275
1187
  - @zhin.js/core@1.0.34
276
1188
  - zhin.js@1.0.34
277
1189
  - @zhin.js/console@1.0.30
278
- - @zhin.js/http@1.0.27
1190
+ - @zhin.js/host-router@1.0.27
279
1191
 
280
1192
  ## 1.0.40
281
1193
 
@@ -285,14 +1197,14 @@
285
1197
  - @zhin.js/core@1.0.33
286
1198
  - zhin.js@1.0.33
287
1199
  - @zhin.js/console@1.0.29
288
- - @zhin.js/http@1.0.26
1200
+ - @zhin.js/host-router@1.0.26
289
1201
 
290
1202
  ## 1.0.39
291
1203
 
292
1204
  ### Patch Changes
293
1205
 
294
1206
  - Updated dependencies [48481a8]
295
- - @zhin.js/http@1.0.25
1207
+ - @zhin.js/host-router@1.0.25
296
1208
 
297
1209
  ## 1.0.38
298
1210
 
@@ -302,7 +1214,7 @@
302
1214
  - @zhin.js/core@1.0.32
303
1215
  - zhin.js@1.0.32
304
1216
  - @zhin.js/console@1.0.28
305
- - @zhin.js/http@1.0.24
1217
+ - @zhin.js/host-router@1.0.24
306
1218
 
307
1219
  ## 1.0.37
308
1220
 
@@ -312,7 +1224,7 @@
312
1224
  - @zhin.js/core@1.0.31
313
1225
  - zhin.js@1.0.31
314
1226
  - @zhin.js/console@1.0.27
315
- - @zhin.js/http@1.0.23
1227
+ - @zhin.js/host-router@1.0.23
316
1228
 
317
1229
  ## 1.0.36
318
1230
 
@@ -321,7 +1233,7 @@
321
1233
  - Updated dependencies [460a6c6]
322
1234
  - zhin.js@1.0.30
323
1235
  - @zhin.js/console@1.0.26
324
- - @zhin.js/http@1.0.22
1236
+ - @zhin.js/host-router@1.0.22
325
1237
  - @zhin.js/core@1.0.30
326
1238
 
327
1239
  ## 1.0.35
@@ -332,7 +1244,7 @@
332
1244
  - @zhin.js/core@1.0.29
333
1245
  - zhin.js@1.0.29
334
1246
  - @zhin.js/console@1.0.25
335
- - @zhin.js/http@1.0.21
1247
+ - @zhin.js/host-router@1.0.21
336
1248
 
337
1249
  ## 1.0.34
338
1250
 
@@ -340,7 +1252,7 @@
340
1252
 
341
1253
  - Updated dependencies [05a514d]
342
1254
  - @zhin.js/console@1.0.24
343
- - @zhin.js/http@1.0.20
1255
+ - @zhin.js/host-router@1.0.20
344
1256
  - @zhin.js/client@1.0.10
345
1257
  - @zhin.js/core@1.0.28
346
1258
  - zhin.js@1.0.28
@@ -350,14 +1262,14 @@
350
1262
  ### Patch Changes
351
1263
 
352
1264
  - Updated dependencies [2b44e18]
353
- - @zhin.js/http@1.0.19
1265
+ - @zhin.js/host-router@1.0.19
354
1266
 
355
1267
  ## 1.0.32
356
1268
 
357
1269
  ### Patch Changes
358
1270
 
359
1271
  - Updated dependencies [b27e633]
360
- - @zhin.js/http@1.0.18
1272
+ - @zhin.js/host-router@1.0.18
361
1273
  - @zhin.js/core@1.0.27
362
1274
  - zhin.js@1.0.27
363
1275
  - @zhin.js/console@1.0.23
@@ -369,7 +1281,7 @@
369
1281
  - 106d357: fix: ai
370
1282
  - Updated dependencies [106d357]
371
1283
  - @zhin.js/console@1.0.22
372
- - @zhin.js/http@1.0.17
1284
+ - @zhin.js/host-router@1.0.17
373
1285
  - @zhin.js/client@1.0.9
374
1286
  - @zhin.js/core@1.0.26
375
1287
  - zhin.js@1.0.26
@@ -386,7 +1298,7 @@
386
1298
  - @zhin.js/core@1.0.25
387
1299
  - zhin.js@1.0.25
388
1300
  - @zhin.js/console@1.0.21
389
- - @zhin.js/http@1.0.16
1301
+ - @zhin.js/host-router@1.0.16
390
1302
 
391
1303
  ## 1.0.29
392
1304
 
@@ -396,7 +1308,7 @@
396
1308
  - @zhin.js/core@1.0.24
397
1309
  - zhin.js@1.0.24
398
1310
  - @zhin.js/console@1.0.20
399
- - @zhin.js/http@1.0.15
1311
+ - @zhin.js/host-router@1.0.15
400
1312
 
401
1313
  ## 1.0.28
402
1314
 
@@ -407,7 +1319,7 @@
407
1319
  - @zhin.js/core@1.0.23
408
1320
  - zhin.js@1.0.23
409
1321
  - @zhin.js/console@1.0.19
410
- - @zhin.js/http@1.0.14
1322
+ - @zhin.js/host-router@1.0.14
411
1323
 
412
1324
  ## 1.0.27
413
1325
 
@@ -416,7 +1328,7 @@
416
1328
  - Updated dependencies [26aba27]
417
1329
  - zhin.js@1.0.22
418
1330
  - @zhin.js/console@1.0.18
419
- - @zhin.js/http@1.0.13
1331
+ - @zhin.js/host-router@1.0.13
420
1332
  - @zhin.js/core@1.0.22
421
1333
 
422
1334
  ## 1.0.26
@@ -427,7 +1339,7 @@
427
1339
  - @zhin.js/core@1.0.21
428
1340
  - zhin.js@1.0.21
429
1341
  - @zhin.js/console@1.0.17
430
- - @zhin.js/http@1.0.12
1342
+ - @zhin.js/host-router@1.0.12
431
1343
 
432
1344
  ## 1.0.25
433
1345
 
@@ -438,7 +1350,7 @@
438
1350
  - Updated dependencies [a3b7673]
439
1351
  - Updated dependencies [5141137]
440
1352
  - @zhin.js/console@1.0.16
441
- - @zhin.js/http@1.0.11
1353
+ - @zhin.js/host-router@1.0.11
442
1354
  - @zhin.js/core@1.0.20
443
1355
  - zhin.js@1.0.20
444
1356
 
@@ -452,7 +1364,7 @@
452
1364
  - @zhin.js/core@1.0.19
453
1365
  - zhin.js@1.0.19
454
1366
  - @zhin.js/console@1.0.15
455
- - @zhin.js/http@1.0.10
1367
+ - @zhin.js/host-router@1.0.10
456
1368
 
457
1369
  ## 1.0.23
458
1370
 
@@ -464,7 +1376,7 @@
464
1376
  - @zhin.js/core@1.0.18
465
1377
  - zhin.js@1.0.18
466
1378
  - @zhin.js/console@1.0.14
467
- - @zhin.js/http@1.0.9
1379
+ - @zhin.js/host-router@1.0.9
468
1380
 
469
1381
  ## 1.0.22
470
1382
 
@@ -516,7 +1428,7 @@
516
1428
  - Updated dependencies [547028f]
517
1429
  - @zhin.js/console@1.0.10
518
1430
  - @zhin.js/types@1.0.5
519
- - @zhin.js/http@1.0.7
1431
+ - @zhin.js/host-router@1.0.7
520
1432
  - zhin.js@1.0.14
521
1433
 
522
1434
  ## 1.0.15
@@ -556,7 +1468,7 @@
556
1468
  - Updated dependencies [c490260]
557
1469
  - @zhin.js/console@1.0.7
558
1470
  - @zhin.js/client@1.0.5
559
- - @zhin.js/http@1.0.6
1471
+ - @zhin.js/host-router@1.0.6
560
1472
  - zhin.js@1.0.9
561
1473
 
562
1474
  ## 1.0.10
@@ -569,7 +1481,7 @@
569
1481
  - @zhin.js/types@1.0.3
570
1482
  - @zhin.js/client@1.0.4
571
1483
  - zhin.js@1.0.8
572
- - @zhin.js/http@1.0.5
1484
+ - @zhin.js/host-router@1.0.5
573
1485
 
574
1486
  ## 1.0.9
575
1487
 
@@ -588,7 +1500,7 @@
588
1500
  - Updated dependencies [b213bbc]
589
1501
  - @zhin.js/console@1.0.4
590
1502
  - @zhin.js/client@1.0.3
591
- - @zhin.js/http@1.0.4
1503
+ - @zhin.js/host-router@1.0.4
592
1504
  - zhin.js@1.0.6
593
1505
 
594
1506
  ## 1.0.7
@@ -604,7 +1516,7 @@
604
1516
 
605
1517
  - f347667: fix: runtime error
606
1518
  - Updated dependencies [f347667]
607
- - @zhin.js/http@1.0.3
1519
+ - @zhin.js/host-router@1.0.3
608
1520
  - zhin.js@1.0.5
609
1521
 
610
1522
  ## 1.0.5
@@ -614,7 +1526,7 @@
614
1526
  - Updated dependencies [d291005]
615
1527
  - @zhin.js/console@1.0.2
616
1528
  - @zhin.js/client@1.0.2
617
- - @zhin.js/http@1.0.2
1529
+ - @zhin.js/host-router@1.0.2
618
1530
 
619
1531
  ## 1.0.4
620
1532