@zhin.js/adapter-sandbox 1.0.70 → 1.1.2
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 +1037 -50
- package/README.md +59 -36
- package/adapters/sandbox/index.js +25 -0
- package/adapters/sandbox/index.ts +30 -0
- package/lib/client.d.ts +27 -0
- package/lib/client.js +27 -0
- package/lib/endpoint.d.ts +42 -0
- package/lib/endpoint.js +357 -0
- package/lib/index.d.ts +3 -55
- package/lib/index.js +3 -176
- package/lib/protocol.d.ts +71 -0
- package/lib/protocol.js +295 -0
- package/lib/run-config.d.ts +10 -0
- package/lib/run-config.js +30 -0
- package/package.json +64 -23
- package/pages/index/RichTextEditor.js +366 -0
- package/{client → pages/index}/RichTextEditor.tsx +59 -13
- package/pages/index/SandboxChat.js +615 -0
- package/pages/index/SandboxChat.tsx +1186 -0
- package/pages/index/agentTrace.js +559 -0
- package/pages/index/agentTrace.ts +646 -0
- package/pages/index/index.js +18 -0
- package/pages/index/index.tsx +18 -0
- package/pages/index/playgroundState.js +126 -0
- package/pages/index/playgroundState.ts +172 -0
- package/pages/index/sandboxTransport.js +45 -0
- package/pages/index/sandboxTransport.ts +45 -0
- package/plugin.js +8 -0
- package/schema.json +75 -0
- package/src/client.ts +47 -0
- package/src/endpoint.ts +420 -0
- package/src/index.ts +26 -238
- package/src/protocol.ts +385 -0
- package/src/run-config.ts +41 -0
- package/LICENSE +0 -21
- package/client/Sandbox.tsx +0 -493
- package/client/index.tsx +0 -11
- package/client/tsconfig.json +0 -7
- package/dist/index.js +0 -1
- package/lib/index.d.ts.map +0 -1
- package/lib/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,992 @@
|
|
|
1
1
|
# @zhin.js/adapter-process
|
|
2
2
|
|
|
3
|
+
## 1.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8740059: Standardize TypeScript capabilities on named module directories such as `commands/foo/index.ts`, `middlewares/audit/index.ts`, `handlers/message-receive/index.ts`, `pages/workroom/index.tsx`, and `mcps/filesystem/index.ts`. Only the fixed `index` entry is discovered; sibling files remain private helpers.
|
|
8
|
+
|
|
9
|
+
Command route segments come from directories, while `[name]`, `[[name]]`, `[...name]`, and `[[...name]]` directories declare dynamic parameters. Plugin owners do not enter the route unless their config explicitly sets `commandNamespace`; Endpoint `commandPrefix` remains platform-owned and defaults to an empty string.
|
|
10
|
+
|
|
11
|
+
Migrate the built-in adapters, plugins, examples, generators, migration tooling, hot reload classification, Agent authoring surfaces, documentation, and release artifacts to the explicit entry convention.
|
|
12
|
+
|
|
13
|
+
Make Tool ownership and progressive disclosure explicit across all four supported locations: plugin-public `tools/`, Agent-private `agents/<name>/tools/`, Skill-private `skills/<name>/tools/`, and Agent-Skill-private `agents/<name>/skills/<name>/tools/`. Move adapter and group-suite operations that require domain instructions into their owning Skills so `load_skill` is the only path that unlocks their schemas.
|
|
14
|
+
|
|
15
|
+
Remove the package-root `agent/` convention. Public capabilities now use named package-root directories, schedules use `schedules/<name>/index.ts` or `plugin.ts` injection, MCP connections use `mcps/<name>/index.ts`, Prompt Sections use `prompt-sections/<name>/index.ts`, Agent definitions use `agents/<name>/`, and permission vocabulary is published as `PERMITS.md`.
|
|
16
|
+
|
|
17
|
+
- 25a845a: Unify Skills on `skills/<name>/SKILL.md`, support Agent-private Skills and nested Skill-private Tools, publish and mount existing plugin Skills, add governed Skill metadata and Turn access filtering, unlock only already-admitted same-owner Tools, and make `on-risk` and `once` approval behavior precise.
|
|
18
|
+
- c6be75f: Require the canonical expanded Sandbox endpoint configuration. The protocol no longer reinterprets nested `endpoints` or reads endpoint identity and owner from `process.env`; the empty-endpoint local development path keeps explicit stable defaults.
|
|
19
|
+
- 698f16f: Replace ambiguous command approval modes with `ask`, `auto`, and `bypass`, add a fail-closed review Agent, and scope remembered human decisions to the current invocation, sender, or conversation.
|
|
20
|
+
- 5c3858e: Make `@zhin.js/im-contract` the explicit zero-dependency owner of transport identities, canonical segments, media guards, conversation facts, stores, and delivery contracts. Platform adapters now read media contracts from that foundation instead of reaching through Core.
|
|
21
|
+
- Updated dependencies [c861789]
|
|
22
|
+
- Updated dependencies [1414ccb]
|
|
23
|
+
- Updated dependencies [743d470]
|
|
24
|
+
- Updated dependencies [62dee52]
|
|
25
|
+
- Updated dependencies [cd54131]
|
|
26
|
+
- Updated dependencies [244e475]
|
|
27
|
+
- Updated dependencies [a9e4a40]
|
|
28
|
+
- Updated dependencies [5855db7]
|
|
29
|
+
- Updated dependencies [ec921d2]
|
|
30
|
+
- Updated dependencies [8740059]
|
|
31
|
+
- Updated dependencies [25a845a]
|
|
32
|
+
- Updated dependencies [103f2c3]
|
|
33
|
+
- Updated dependencies [9110ab8]
|
|
34
|
+
- Updated dependencies [cd2a888]
|
|
35
|
+
- Updated dependencies [eb3227a]
|
|
36
|
+
- Updated dependencies [b853dba]
|
|
37
|
+
- Updated dependencies [f474b1d]
|
|
38
|
+
- Updated dependencies [e561309]
|
|
39
|
+
- Updated dependencies [d4c6175]
|
|
40
|
+
- Updated dependencies [7a0e1ca]
|
|
41
|
+
- Updated dependencies [103b5d3]
|
|
42
|
+
- Updated dependencies [5a7a7f7]
|
|
43
|
+
- Updated dependencies [b076eae]
|
|
44
|
+
- Updated dependencies [73a24b7]
|
|
45
|
+
- Updated dependencies [2dbbc15]
|
|
46
|
+
- Updated dependencies [1cb1163]
|
|
47
|
+
- Updated dependencies [be3061e]
|
|
48
|
+
- Updated dependencies [75f8332]
|
|
49
|
+
- Updated dependencies [81935e2]
|
|
50
|
+
- Updated dependencies [f9ed01b]
|
|
51
|
+
- Updated dependencies [ac0ab50]
|
|
52
|
+
- Updated dependencies [5140ce1]
|
|
53
|
+
- Updated dependencies [522d75f]
|
|
54
|
+
- Updated dependencies [a7611b3]
|
|
55
|
+
- Updated dependencies [8823044]
|
|
56
|
+
- Updated dependencies [379439b]
|
|
57
|
+
- Updated dependencies [11c9352]
|
|
58
|
+
- Updated dependencies [6b70e46]
|
|
59
|
+
- Updated dependencies [135ac91]
|
|
60
|
+
- Updated dependencies [140cf0f]
|
|
61
|
+
- Updated dependencies [251e4d2]
|
|
62
|
+
- Updated dependencies [203ad34]
|
|
63
|
+
- Updated dependencies [e6c5113]
|
|
64
|
+
- Updated dependencies [e0f6478]
|
|
65
|
+
- Updated dependencies [baef56b]
|
|
66
|
+
- Updated dependencies [da0a8e3]
|
|
67
|
+
- Updated dependencies [2fd8017]
|
|
68
|
+
- Updated dependencies [5c3858e]
|
|
69
|
+
- Updated dependencies [507d602]
|
|
70
|
+
- Updated dependencies [df9f76b]
|
|
71
|
+
- @zhin.js/core@1.1.37
|
|
72
|
+
- @zhin.js/client@1.1.6
|
|
73
|
+
- @zhin.js/host-http@1.1.1
|
|
74
|
+
- @zhin.js/adapter@1.1.14
|
|
75
|
+
- @zhin.js/feature-kit@1.1.1
|
|
76
|
+
- @zhin.js/page@1.1.1
|
|
77
|
+
- @zhin.js/skill@1.1.1
|
|
78
|
+
- @zhin.js/logger@1.1.1
|
|
79
|
+
- @zhin.js/im-contract@1.1.1
|
|
80
|
+
|
|
81
|
+
## 1.1.1
|
|
82
|
+
|
|
83
|
+
### Patch Changes
|
|
84
|
+
|
|
85
|
+
- Updated dependencies [769e67f]
|
|
86
|
+
- @zhin.js/adapter@1.1.13
|
|
87
|
+
- @zhin.js/core@1.1.36
|
|
88
|
+
|
|
89
|
+
## 1.1.0
|
|
90
|
+
|
|
91
|
+
### Minor Changes
|
|
92
|
+
|
|
93
|
+
- 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.
|
|
94
|
+
|
|
95
|
+
### Patch Changes
|
|
96
|
+
|
|
97
|
+
- a34bf91: Publish internal peer dependencies as compatible caret ranges instead of exact versions, preventing compatible internal minor releases from forcing unrelated major bumps.
|
|
98
|
+
- Updated dependencies [1fc6270]
|
|
99
|
+
- @zhin.js/adapter@1.1.12
|
|
100
|
+
- @zhin.js/client@1.1.5
|
|
101
|
+
- @zhin.js/console-contract@1.1.0
|
|
102
|
+
- @zhin.js/core@1.1.35
|
|
103
|
+
- @zhin.js/feature-kit@1.1.0
|
|
104
|
+
- @zhin.js/host-http@1.1.0
|
|
105
|
+
- @zhin.js/im-contract@1.1.0
|
|
106
|
+
- @zhin.js/logger@1.1.0
|
|
107
|
+
- @zhin.js/page@1.1.0
|
|
108
|
+
|
|
109
|
+
## 9.0.1
|
|
110
|
+
|
|
111
|
+
### Patch Changes
|
|
112
|
+
|
|
113
|
+
- 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.
|
|
114
|
+
- Updated dependencies [f7ee28d]
|
|
115
|
+
- @zhin.js/adapter@1.2.2
|
|
116
|
+
- @zhin.js/core@1.5.16
|
|
117
|
+
- zhin.js@7.0.1
|
|
118
|
+
|
|
119
|
+
## 9.0.0
|
|
120
|
+
|
|
121
|
+
### Patch Changes
|
|
122
|
+
|
|
123
|
+
- zhin.js@7.0.0
|
|
124
|
+
|
|
125
|
+
## 8.0.6
|
|
126
|
+
|
|
127
|
+
### Patch Changes
|
|
128
|
+
|
|
129
|
+
- Updated dependencies [a728a20]
|
|
130
|
+
- @zhin.js/host-http@1.0.17
|
|
131
|
+
- zhin.js@6.0.15
|
|
132
|
+
|
|
133
|
+
## 8.0.5
|
|
134
|
+
|
|
135
|
+
### Patch Changes
|
|
136
|
+
|
|
137
|
+
- Updated dependencies [fcbff21]
|
|
138
|
+
- @zhin.js/host-http@1.0.16
|
|
139
|
+
- zhin.js@6.0.15
|
|
140
|
+
|
|
141
|
+
## 8.0.4
|
|
142
|
+
|
|
143
|
+
### Patch Changes
|
|
144
|
+
|
|
145
|
+
- Updated dependencies [882a08a]
|
|
146
|
+
- @zhin.js/client@2.1.14
|
|
147
|
+
- zhin.js@6.0.15
|
|
148
|
+
- @zhin.js/core@1.5.15
|
|
149
|
+
|
|
150
|
+
## 8.0.3
|
|
151
|
+
|
|
152
|
+
### Patch Changes
|
|
153
|
+
|
|
154
|
+
- Updated dependencies [d85eddd]
|
|
155
|
+
- @zhin.js/host-http@1.0.15
|
|
156
|
+
- @zhin.js/client@2.1.13
|
|
157
|
+
- @zhin.js/core@1.5.15
|
|
158
|
+
- zhin.js@6.0.15
|
|
159
|
+
|
|
160
|
+
## 8.0.2
|
|
161
|
+
|
|
162
|
+
### Patch Changes
|
|
163
|
+
|
|
164
|
+
- Updated dependencies [a5ee497]
|
|
165
|
+
- Updated dependencies [ba7e17a]
|
|
166
|
+
- Updated dependencies [7108d0b]
|
|
167
|
+
- @zhin.js/host-http@1.0.14
|
|
168
|
+
- @zhin.js/core@1.5.15
|
|
169
|
+
- zhin.js@6.0.15
|
|
170
|
+
|
|
171
|
+
## 8.0.1
|
|
172
|
+
|
|
173
|
+
### Patch Changes
|
|
174
|
+
|
|
175
|
+
- e9c6a73: Preserve WebSocket path ownership when a previous hot-reload generation stops after its replacement starts.
|
|
176
|
+
- 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.
|
|
177
|
+
- Updated dependencies [4e8117c]
|
|
178
|
+
- Updated dependencies [54bfd6b]
|
|
179
|
+
- Updated dependencies [12025ee]
|
|
180
|
+
- Updated dependencies [09b14d6]
|
|
181
|
+
- Updated dependencies [1fc78bc]
|
|
182
|
+
- @zhin.js/adapter@1.2.1
|
|
183
|
+
- @zhin.js/core@1.5.14
|
|
184
|
+
- @zhin.js/host-http@1.0.13
|
|
185
|
+
- @zhin.js/logger@1.0.77
|
|
186
|
+
- zhin.js@6.0.14
|
|
187
|
+
- @zhin.js/feature-kit@1.0.13
|
|
188
|
+
- @zhin.js/page@1.0.13
|
|
189
|
+
- @zhin.js/client@2.1.12
|
|
190
|
+
|
|
191
|
+
## 8.0.0
|
|
192
|
+
|
|
193
|
+
### Patch Changes
|
|
194
|
+
|
|
195
|
+
- Updated dependencies [b10d058]
|
|
196
|
+
- Updated dependencies [f2c532f]
|
|
197
|
+
- @zhin.js/client@2.1.11
|
|
198
|
+
- @zhin.js/host-http@1.0.12
|
|
199
|
+
- @zhin.js/adapter@1.2.0
|
|
200
|
+
- @zhin.js/core@1.5.13
|
|
201
|
+
- zhin.js@6.0.13
|
|
202
|
+
|
|
203
|
+
## 7.0.15
|
|
204
|
+
|
|
205
|
+
### Patch Changes
|
|
206
|
+
|
|
207
|
+
- bcc4c87: Probe Docker readiness asynchronously so Sandbox WebSocket permissions and messages are never blocked by the informational ready frame.
|
|
208
|
+
|
|
209
|
+
## 7.0.14
|
|
210
|
+
|
|
211
|
+
### Patch Changes
|
|
212
|
+
|
|
213
|
+
- 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.
|
|
214
|
+
|
|
215
|
+
## 7.0.13
|
|
216
|
+
|
|
217
|
+
### Patch Changes
|
|
218
|
+
|
|
219
|
+
- 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.
|
|
220
|
+
|
|
221
|
+
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.
|
|
222
|
+
|
|
223
|
+
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.
|
|
224
|
+
|
|
225
|
+
- 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.
|
|
226
|
+
- Updated dependencies [5969c5b]
|
|
227
|
+
- Updated dependencies [d336a3f]
|
|
228
|
+
- Updated dependencies [5969c5b]
|
|
229
|
+
- Updated dependencies [5969c5b]
|
|
230
|
+
- Updated dependencies [974772e]
|
|
231
|
+
- Updated dependencies [5969c5b]
|
|
232
|
+
- Updated dependencies [2f786bd]
|
|
233
|
+
- Updated dependencies [1312ca0]
|
|
234
|
+
- Updated dependencies [985fa22]
|
|
235
|
+
- @zhin.js/im-contract@1.0.4
|
|
236
|
+
- @zhin.js/core@1.5.12
|
|
237
|
+
- @zhin.js/adapter@1.1.11
|
|
238
|
+
- @zhin.js/host-http@1.0.11
|
|
239
|
+
- @zhin.js/client@2.1.10
|
|
240
|
+
- zhin.js@6.0.12
|
|
241
|
+
- @zhin.js/page@1.0.12
|
|
242
|
+
|
|
243
|
+
## 7.0.12
|
|
244
|
+
|
|
245
|
+
### Patch Changes
|
|
246
|
+
|
|
247
|
+
- @zhin.js/core@1.5.11
|
|
248
|
+
- zhin.js@6.0.11
|
|
249
|
+
|
|
250
|
+
## 7.0.11
|
|
251
|
+
|
|
252
|
+
### Patch Changes
|
|
253
|
+
|
|
254
|
+
- @zhin.js/core@1.5.10
|
|
255
|
+
- zhin.js@6.0.10
|
|
256
|
+
- @zhin.js/client@2.1.9
|
|
257
|
+
|
|
258
|
+
## 7.0.10
|
|
259
|
+
|
|
260
|
+
### Patch Changes
|
|
261
|
+
|
|
262
|
+
- eb84b77: fix: 更新文档,建立正确的依赖关系
|
|
263
|
+
- Updated dependencies [d3920e9]
|
|
264
|
+
- @zhin.js/core@1.5.10
|
|
265
|
+
- zhin.js@6.0.10
|
|
266
|
+
- @zhin.js/page@1.0.11
|
|
267
|
+
- @zhin.js/adapter@1.1.10
|
|
268
|
+
|
|
269
|
+
## 7.0.9
|
|
270
|
+
|
|
271
|
+
### Patch Changes
|
|
272
|
+
|
|
273
|
+
- Updated dependencies [e4757a8]
|
|
274
|
+
- Updated dependencies [c3c0ebf]
|
|
275
|
+
- @zhin.js/host-http@1.0.10
|
|
276
|
+
- @zhin.js/core@1.5.9
|
|
277
|
+
- @zhin.js/client@2.1.8
|
|
278
|
+
- @zhin.js/page@1.0.10
|
|
279
|
+
- @zhin.js/adapter@1.1.9
|
|
280
|
+
|
|
281
|
+
## 7.0.8
|
|
282
|
+
|
|
283
|
+
### Patch Changes
|
|
284
|
+
|
|
285
|
+
- Updated dependencies [63253bb]
|
|
286
|
+
- Updated dependencies [953cfe1]
|
|
287
|
+
- Updated dependencies [0e73866]
|
|
288
|
+
- @zhin.js/plugin-runtime@1.1.6
|
|
289
|
+
- @zhin.js/core@1.5.8
|
|
290
|
+
- @zhin.js/adapter@1.1.8
|
|
291
|
+
- @zhin.js/host-http@1.0.9
|
|
292
|
+
- @zhin.js/page@1.0.9
|
|
293
|
+
- @zhin.js/client@2.1.7
|
|
294
|
+
|
|
295
|
+
## 7.0.7
|
|
296
|
+
|
|
297
|
+
### Patch Changes
|
|
298
|
+
|
|
299
|
+
- Updated dependencies [36cb1ca]
|
|
300
|
+
- @zhin.js/core@1.5.7
|
|
301
|
+
|
|
302
|
+
## 7.0.6
|
|
303
|
+
|
|
304
|
+
### Patch Changes
|
|
305
|
+
|
|
306
|
+
- @zhin.js/adapter@1.1.7
|
|
307
|
+
- @zhin.js/core@1.5.6
|
|
308
|
+
|
|
309
|
+
## 7.0.5
|
|
310
|
+
|
|
311
|
+
### Patch Changes
|
|
312
|
+
|
|
313
|
+
- @zhin.js/adapter@1.1.7
|
|
314
|
+
- @zhin.js/core@1.5.5
|
|
315
|
+
|
|
316
|
+
## 7.0.4
|
|
317
|
+
|
|
318
|
+
### Patch Changes
|
|
319
|
+
|
|
320
|
+
- Updated dependencies [0de46a8]
|
|
321
|
+
- Updated dependencies [c106ecc]
|
|
322
|
+
- Updated dependencies [b0f37ae]
|
|
323
|
+
- Updated dependencies [daffd4c]
|
|
324
|
+
- Updated dependencies [36c7400]
|
|
325
|
+
- Updated dependencies [162fa34]
|
|
326
|
+
- Updated dependencies [e40b048]
|
|
327
|
+
- Updated dependencies [f1708c3]
|
|
328
|
+
- Updated dependencies [e53444f]
|
|
329
|
+
- Updated dependencies [92b0dd7]
|
|
330
|
+
- Updated dependencies [a7df753]
|
|
331
|
+
- @zhin.js/host-http@1.0.8
|
|
332
|
+
- @zhin.js/im-contract@1.0.3
|
|
333
|
+
- @zhin.js/adapter@1.1.7
|
|
334
|
+
- @zhin.js/plugin-runtime@1.1.5
|
|
335
|
+
- @zhin.js/core@1.5.4
|
|
336
|
+
- @zhin.js/page@1.0.8
|
|
337
|
+
- @zhin.js/client@2.1.6
|
|
338
|
+
|
|
339
|
+
## 7.0.3
|
|
340
|
+
|
|
341
|
+
### Patch Changes
|
|
342
|
+
|
|
343
|
+
- f8c7a54: fix: im
|
|
344
|
+
- Updated dependencies [f8c7a54]
|
|
345
|
+
- @zhin.js/logger@1.0.76
|
|
346
|
+
- @zhin.js/client@2.1.5
|
|
347
|
+
- @zhin.js/page@1.0.7
|
|
348
|
+
- @zhin.js/console-contract@1.0.1
|
|
349
|
+
- @zhin.js/host-http@1.0.7
|
|
350
|
+
- @zhin.js/adapter@1.1.6
|
|
351
|
+
- @zhin.js/core@1.5.3
|
|
352
|
+
- @zhin.js/im-contract@1.0.2
|
|
353
|
+
- @zhin.js/plugin-runtime@1.1.4
|
|
354
|
+
|
|
355
|
+
## 7.0.2
|
|
356
|
+
|
|
357
|
+
### Patch Changes
|
|
358
|
+
|
|
359
|
+
- Updated dependencies [afc0e66]
|
|
360
|
+
- Updated dependencies [2e41ad5]
|
|
361
|
+
- Updated dependencies [9f57124]
|
|
362
|
+
- @zhin.js/core@1.5.2
|
|
363
|
+
- @zhin.js/adapter@1.1.5
|
|
364
|
+
- @zhin.js/im-contract@1.0.1
|
|
365
|
+
- @zhin.js/plugin-runtime@1.1.3
|
|
366
|
+
- @zhin.js/host-http@1.0.6
|
|
367
|
+
- @zhin.js/page@1.0.6
|
|
368
|
+
|
|
369
|
+
## 7.0.1
|
|
370
|
+
|
|
371
|
+
### Patch Changes
|
|
372
|
+
|
|
373
|
+
- Updated dependencies [c8f4d45]
|
|
374
|
+
- @zhin.js/plugin-runtime@1.1.2
|
|
375
|
+
- @zhin.js/page@1.0.5
|
|
376
|
+
- @zhin.js/host-http@1.0.5
|
|
377
|
+
- @zhin.js/adapter@1.1.4
|
|
378
|
+
- @zhin.js/core@1.5.1
|
|
379
|
+
|
|
380
|
+
## 7.0.0
|
|
381
|
+
|
|
382
|
+
### Patch Changes
|
|
383
|
+
|
|
384
|
+
- 4fbff5d: feat!: 多模态双向 Segment 一贯制(BREAKING,无兼容层)
|
|
385
|
+
|
|
386
|
+
全框架唯一媒体表达统一为 canonical `Segment` + `MediaRef{kind: url|path|base64|file, value, mime_type?, file_name?, size?}`,新增 audio/video/file 段类型;所有第二形状(legacy `data.url/file/base64` 字段、`mediaRefFromLegacyData`/`mediaRefToLegacyFields` 桥、双写)全部删除。
|
|
387
|
+
|
|
388
|
+
- **core**:`SendContent` 一等支持 `Segment[]`;endpoint 出站载荷只含 canonical 段;`resolveOutboundMediaPolicy` 改为纯声明驱动(adapter definition `segments.outboundMedia`),内置策略表删除,未声明回退 `url-or-text`;`ImageContent` 旧桥删除。
|
|
389
|
+
- **ai**:新增 `MediaContentBlock`/`MediaBlockRef`(Segment 同构)与 `UserMessage.media`(当前 turn 媒体,**不持久化**——存储层自动剥离);`createUserMessage(text, media?)` 签名变更(`ImageContent` 删除);provider 边界序列化器 `filterMediaBlocksForProvider` + 能力表(缺省 image-only,不支持类型降级占位文本);ai-sdk 桥媒体块 → SDK image/file parts。
|
|
390
|
+
- **agent**:入站 turn 注入(`turn/inbound-media.ts`)——commMessage 媒体段 → 当前 turn `UserMessage.media`;图片 path 物化、音频默认 STT(`@zhin.js/speech` 可选,失败降级占位)、视频/文件占位;`publishOutboundElements` 产出 canonical Segment;`transcribeAudioPayload` 导出。
|
|
391
|
+
- **cli**:`bridgeRuntimeMessage` 回复链路媒体段透传,不再压平为文本(`$reply` 直达 normalize → adapter)。
|
|
392
|
+
- **全部 20 个平台适配器**:出站媒体只消费 `data.media`(url 直发 / base64 直发 / 平台上传 / 读盘),入站媒体产出 canonical `data.media`;`segments.outboundMedia` 声明与实际消费逐一核对修正;QQ 入站新增 canonical segments(image/audio/video/file/mention/face/reply),图片/语音/视频不再丢失。
|
|
393
|
+
|
|
394
|
+
迁移:适配器/插件产媒体一律用 `{ type, data: { media: MediaRef } }`;发送 legacy `data.url/file/base64` 形状的段会被 warn 丢弃。
|
|
395
|
+
|
|
396
|
+
- Updated dependencies [7c1e63a]
|
|
397
|
+
- Updated dependencies [4fbff5d]
|
|
398
|
+
- Updated dependencies [5b94d9c]
|
|
399
|
+
- @zhin.js/adapter@1.1.3
|
|
400
|
+
- @zhin.js/core@1.5.0
|
|
401
|
+
- @zhin.js/client@2.1.4
|
|
402
|
+
|
|
403
|
+
## 6.0.5
|
|
404
|
+
|
|
405
|
+
### Patch Changes
|
|
406
|
+
|
|
407
|
+
- Updated dependencies [d8bf702]
|
|
408
|
+
- @zhin.js/host-http@1.0.4
|
|
409
|
+
- @zhin.js/core@1.4.3
|
|
410
|
+
- @zhin.js/client@2.1.3
|
|
411
|
+
|
|
412
|
+
## 6.0.4
|
|
413
|
+
|
|
414
|
+
### Patch Changes
|
|
415
|
+
|
|
416
|
+
- Updated dependencies [45b3256]
|
|
417
|
+
- @zhin.js/core@1.4.3
|
|
418
|
+
|
|
419
|
+
## 6.0.3
|
|
420
|
+
|
|
421
|
+
### Patch Changes
|
|
422
|
+
|
|
423
|
+
- @zhin.js/core@1.4.2
|
|
424
|
+
- @zhin.js/client@2.1.2
|
|
425
|
+
|
|
426
|
+
## 6.0.2
|
|
427
|
+
|
|
428
|
+
### Patch Changes
|
|
429
|
+
|
|
430
|
+
- d5cd4aa: Publish Plugin Runtime entry points and convention modules as JavaScript so
|
|
431
|
+
installed npm plugins load on Node without TypeScript stripping. Workspace
|
|
432
|
+
development continues to prefer TypeScript sources for local HMR.
|
|
433
|
+
|
|
434
|
+
Remove the unconsumed legacy game hub APIs from game-kit; game navigation and
|
|
435
|
+
records now use ordinary convention commands owned by the game hub plugin.
|
|
436
|
+
|
|
437
|
+
- @zhin.js/page@1.0.4
|
|
438
|
+
- @zhin.js/adapter@1.1.2
|
|
439
|
+
- @zhin.js/core@1.4.2
|
|
440
|
+
|
|
441
|
+
## 6.0.1
|
|
442
|
+
|
|
443
|
+
### Patch Changes
|
|
444
|
+
|
|
445
|
+
- 5691aba: 第二轮全量审计修复批(8 面 ~60 bug):
|
|
446
|
+
|
|
447
|
+
- **安全**:email 附件路径穿越修复(basename + downloadPath 约束);lark/telegram/satori webhook 鉴权(缺密钥告警、timingSafeEqual、±5min 时效窗、chat_type 修正);onebot wss/webhook 缺 token 告警;qq webhook 改原始字节验签;renderJsx/JSX 转义注入修复;console runtime token 401 死循环。
|
|
448
|
+
- **P0 功能**:sandbox 多 endpoint 解析 + WS 路径隔离;short-url expand(undici opaqueredirect)改 follow;AI 压缩摘要失败不再静默丢历史(熔断恢复生效);console-ui 实时推送事件名归一化 + IndexedDB schema 对齐;process-monitor 热重载不再误判崩溃。
|
|
449
|
+
- **生命周期**:email IMAP 断线重连 + 在飞锁;onebot11/12 start 失败清理;line replyToken TTL + push 兜底;wechat-mp token 过期重试 + MsgId 去重;weixin-ilink buf 推进/防抖写盘/媒体 TTL/QR abort;satori PONG 看门狗;退避自毁修复。
|
|
450
|
+
- **游戏**:text-adventure 终局 restart 复活 + requires 服务端校验;tic-tac-toe PvP 占用/restart/队列清理/TTL;idiom-chain/word-riddle 闲聊不扣失误;别名中间件不劫持普通聊天。
|
|
451
|
+
- **共享库**:schema falsy 默认值/date/tuple/union 修复;database parseCondition Date/未知操作符、sqlite TEXT 往返、query 分派、belongsToMany 方言、migration dry-run;schedule DST 回拨死循环、重复 id 去重、flush 串行化;game-kit fallback 编号/onboarding 提示/尾缀边界/活引用拷贝。
|
|
452
|
+
- **渲染语音**:fetch 全部超时 + 渲染并发闸;sanitizeHtml form 保文本;STT 扩展名映射 + 删临时文件;TTS 未知 provider 报错;emojiCache LRU 负缓存/fontCache style/clearFonts 恢复;register 错误分类收窄。
|
|
453
|
+
|
|
454
|
+
- Updated dependencies [cdf64e7]
|
|
455
|
+
- Updated dependencies [2d0a159]
|
|
456
|
+
- Updated dependencies [5691aba]
|
|
457
|
+
- Updated dependencies [078e3f7]
|
|
458
|
+
- Updated dependencies [9c997b2]
|
|
459
|
+
- Updated dependencies [09d4f25]
|
|
460
|
+
- Updated dependencies [f0ec5ab]
|
|
461
|
+
- Updated dependencies [fa66c4c]
|
|
462
|
+
- Updated dependencies [fa66c4c]
|
|
463
|
+
- Updated dependencies [6cb6152]
|
|
464
|
+
- @zhin.js/plugin-runtime@1.1.1
|
|
465
|
+
- @zhin.js/host-http@1.0.3
|
|
466
|
+
- @zhin.js/client@2.1.1
|
|
467
|
+
- @zhin.js/adapter@1.1.1
|
|
468
|
+
- @zhin.js/core@1.4.1
|
|
469
|
+
- @zhin.js/page@1.0.3
|
|
470
|
+
|
|
471
|
+
## 6.0.0
|
|
472
|
+
|
|
473
|
+
### Patch Changes
|
|
474
|
+
|
|
475
|
+
- 7db69c1: 命令前缀改为适配器配置项:`MessageDispatcher` 不再硬编码 `/`,默认按消息所属适配器实例 config 的 `commandPrefix` 解析(默认 `''` 无前缀,任意文本按命令匹配),`endpoints[i].commandPrefix` 逐项覆盖;`ImRuntime({ commandPrefix })` 仍可设全局静态前缀。全部 20 个平台适配器 schema 新增 `commandPrefix` 属性。
|
|
476
|
+
|
|
477
|
+
BREAKING(行为变化):未配置时命令不再需要 `/` 前缀——原 `/zt` 写法不再命中,直接发 `zt` 即可;需要斜杠风格的适配器请在配置里显式设 `commandPrefix: '/'`。
|
|
478
|
+
|
|
479
|
+
- 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 同步迁移。
|
|
480
|
+
- Updated dependencies [7db69c1]
|
|
481
|
+
- Updated dependencies [e5c84ed]
|
|
482
|
+
- Updated dependencies [3ea84a0]
|
|
483
|
+
- Updated dependencies [5849336]
|
|
484
|
+
- Updated dependencies [1ddcd70]
|
|
485
|
+
- Updated dependencies [ac9da66]
|
|
486
|
+
- @zhin.js/core@1.4.0
|
|
487
|
+
- @zhin.js/adapter@1.1.0
|
|
488
|
+
- @zhin.js/plugin-runtime@1.1.0
|
|
489
|
+
- @zhin.js/client@2.1.0
|
|
490
|
+
- @zhin.js/host-http@1.0.2
|
|
491
|
+
- @zhin.js/page@1.0.2
|
|
492
|
+
|
|
493
|
+
## 5.0.6
|
|
494
|
+
|
|
495
|
+
### Patch Changes
|
|
496
|
+
|
|
497
|
+
- cc5c94d: 约定式插件运行时迁移(breaking):插件与适配器由 `usePlugin()` / `extends Adapter` 迁移为 `definePlugin` / `defineAdapter` + `plugin.ts` + 约定目录(`adapters/`、`commands/`、`components/`、`tools/` 等)。
|
|
498
|
+
|
|
499
|
+
- 新增约定式运行时包:`@zhin.js/plugin-runtime`、`@zhin.js/adapter`、`@zhin.js/runtime`、`@zhin.js/host-http`(首版 1.0.0 走 init-publish,不在本 changeset 内 bump)。
|
|
500
|
+
- 全部 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 推迟的连接模式已补齐。
|
|
501
|
+
- 游戏 / 工具 / 服务插件同步迁移到约定目录结构。
|
|
502
|
+
- CLI 增加 plugin-runtime host installer(http/database/outbound/schedule/console 等)。
|
|
503
|
+
|
|
504
|
+
后续加固(同批):
|
|
505
|
+
|
|
506
|
+
- CLI:`zhin runtime start --daemon`(pidfile/崩溃拉起/风暴保护),orphan watchdog 防僵尸进程;legacy `zhin dev` / `zhin start` 已移除(含 `zhin restart`),`zhin stop` 兼容新 daemon。
|
|
507
|
+
- 安全:builtin 工具统一走 `security/policy-facade.ts` 的 `runToolPolicies`(声明式策略表,deny 优先);审计日志 close flush + 背压队列;`splitCompoundCommand` 引号感知、`extractCommandName` 去引号堵绕过。
|
|
508
|
+
- 日志:Logger 双堆栈修复、本地时区、`getLogger` 挂树(`setLevel` 递归生效)、第三方库(log4js/discord)桥接、启动人读总结。
|
|
509
|
+
- 结构:`plugins/games/shared` 迁为 `packages/game-kit`(`@zhin.js/game-kit`);死目录 `plugins/adapters/common` 删除。
|
|
510
|
+
- 脚手架:`create-zhin-app` / `zhin new` / scaffold-wizard 生成物改为 Plugin Runtime 形态(minimal-bot 同构,新配置格式)。
|
|
511
|
+
- Console:endpoint.list 真实名称与 phase、schema:get-all 按 instanceKey 映射、db:\* 接 DatabaseHost。
|
|
512
|
+
|
|
513
|
+
注:按仓库发布惯例(见 1bb345dd2),本次 breaking 迁移统一使用 patch,避免 zhin.js 5.0 级联。
|
|
514
|
+
|
|
515
|
+
- Updated dependencies [16ec4e8]
|
|
516
|
+
- Updated dependencies [cc5c94d]
|
|
517
|
+
- Updated dependencies [447f3e2]
|
|
518
|
+
- @zhin.js/core@1.3.5
|
|
519
|
+
- @zhin.js/host-http@1.0.1
|
|
520
|
+
- @zhin.js/logger@1.0.75
|
|
521
|
+
- @zhin.js/plugin-runtime@1.0.1
|
|
522
|
+
- @zhin.js/adapter@1.0.1
|
|
523
|
+
- @zhin.js/page@1.0.1
|
|
524
|
+
|
|
525
|
+
## 5.0.5
|
|
526
|
+
|
|
527
|
+
### Patch Changes
|
|
528
|
+
|
|
529
|
+
- 872c583: fix: 代码格式优化
|
|
530
|
+
- Updated dependencies [872c583]
|
|
531
|
+
- Updated dependencies [872c583]
|
|
532
|
+
- @zhin.js/client@2.0.5
|
|
533
|
+
- @zhin.js/contract@1.0.3
|
|
534
|
+
- @zhin.js/core@1.3.4
|
|
535
|
+
- @zhin.js/host-api@2.0.5
|
|
536
|
+
- @zhin.js/host-router@2.0.3
|
|
537
|
+
|
|
538
|
+
## 5.0.4
|
|
539
|
+
|
|
540
|
+
### Patch Changes
|
|
541
|
+
|
|
542
|
+
- 5cc9c03: fix: ai 优化
|
|
543
|
+
- b9b3881: fix: 增加游戏引擎以及部分游戏
|
|
544
|
+
- Updated dependencies [5b08052]
|
|
545
|
+
- Updated dependencies [5cc9c03]
|
|
546
|
+
- Updated dependencies [36d6db2]
|
|
547
|
+
- Updated dependencies [b9b3881]
|
|
548
|
+
- Updated dependencies [7700903]
|
|
549
|
+
- @zhin.js/core@1.3.3
|
|
550
|
+
- @zhin.js/client@2.0.4
|
|
551
|
+
- @zhin.js/contract@1.0.2
|
|
552
|
+
- @zhin.js/host-api@2.0.4
|
|
553
|
+
- @zhin.js/host-router@2.0.2
|
|
554
|
+
|
|
555
|
+
## 5.0.3
|
|
556
|
+
|
|
557
|
+
### Patch Changes
|
|
558
|
+
|
|
559
|
+
- c4575c9: fix: 输入输出优化,文档优化
|
|
560
|
+
- Updated dependencies [c4575c9]
|
|
561
|
+
- Updated dependencies [c4575c9]
|
|
562
|
+
- @zhin.js/host-router@2.0.1
|
|
563
|
+
- @zhin.js/host-api@2.0.3
|
|
564
|
+
- @zhin.js/core@1.3.2
|
|
565
|
+
|
|
566
|
+
## 5.0.2
|
|
567
|
+
|
|
568
|
+
### Patch Changes
|
|
569
|
+
|
|
570
|
+
- Updated dependencies [384ea11]
|
|
571
|
+
- @zhin.js/host-api@2.0.2
|
|
572
|
+
|
|
573
|
+
## 5.0.1
|
|
574
|
+
|
|
575
|
+
### Patch Changes
|
|
576
|
+
|
|
577
|
+
- Updated dependencies [609da24]
|
|
578
|
+
- Updated dependencies [93e58d9]
|
|
579
|
+
- Updated dependencies [ae5239c]
|
|
580
|
+
- @zhin.js/core@1.3.1
|
|
581
|
+
- @zhin.js/host-api@2.0.1
|
|
582
|
+
- @zhin.js/host-router@2.0.0
|
|
583
|
+
|
|
584
|
+
## 5.0.0
|
|
585
|
+
|
|
586
|
+
### Patch Changes
|
|
587
|
+
|
|
588
|
+
- Updated dependencies [db38da4]
|
|
589
|
+
- @zhin.js/core@1.3.0
|
|
590
|
+
- @zhin.js/host-api@2.0.0
|
|
591
|
+
- @zhin.js/host-router@2.0.0
|
|
592
|
+
|
|
593
|
+
## 4.0.1
|
|
594
|
+
|
|
595
|
+
### Patch Changes
|
|
596
|
+
|
|
597
|
+
- d8def69: fix: 性能优化
|
|
598
|
+
- 2ef4896: fix: 更新概念 Bot=>Endpoint,已适配后续更多的业务场景;统一角色权限
|
|
599
|
+
- Updated dependencies [d8def69]
|
|
600
|
+
- Updated dependencies [2ef4896]
|
|
601
|
+
- @zhin.js/host-router@1.0.1
|
|
602
|
+
- @zhin.js/host-api@1.0.1
|
|
603
|
+
- @zhin.js/core@1.2.1
|
|
604
|
+
- @zhin.js/client@2.0.3
|
|
605
|
+
|
|
606
|
+
## 4.0.0
|
|
607
|
+
|
|
608
|
+
### Patch Changes
|
|
609
|
+
|
|
610
|
+
- Updated dependencies [65f4b0a]
|
|
611
|
+
- Updated dependencies [e62c23a]
|
|
612
|
+
- @zhin.js/core@1.2.0
|
|
613
|
+
- @zhin.js/host-api@1.0.0
|
|
614
|
+
- @zhin.js/host-router@1.0.0
|
|
615
|
+
|
|
616
|
+
## 3.0.10
|
|
617
|
+
|
|
618
|
+
### Patch Changes
|
|
619
|
+
|
|
620
|
+
- Updated dependencies [d8547d2]
|
|
621
|
+
- @zhin.js/core@1.1.33
|
|
622
|
+
- @zhin.js/host-router@0.0.3
|
|
623
|
+
|
|
624
|
+
## 3.0.9
|
|
625
|
+
|
|
626
|
+
### Patch Changes
|
|
627
|
+
|
|
628
|
+
- 3735e96: fix: 智能家居控制
|
|
629
|
+
- Updated dependencies [3735e96]
|
|
630
|
+
- Updated dependencies [238de62]
|
|
631
|
+
- @zhin.js/host-api@0.0.4
|
|
632
|
+
- @zhin.js/core@1.1.32
|
|
633
|
+
- @zhin.js/host-router@0.0.3
|
|
634
|
+
|
|
635
|
+
## 3.0.8
|
|
636
|
+
|
|
637
|
+
### Patch Changes
|
|
638
|
+
|
|
639
|
+
- c8f8207: fix: 修复内存泄露问题
|
|
640
|
+
- Updated dependencies [c8f8207]
|
|
641
|
+
- Updated dependencies [a26e496]
|
|
642
|
+
- @zhin.js/client@2.0.2
|
|
643
|
+
- @zhin.js/contract@1.0.1
|
|
644
|
+
- @zhin.js/host-api@0.0.3
|
|
645
|
+
- @zhin.js/host-router@0.0.3
|
|
646
|
+
- @zhin.js/core@1.1.31
|
|
647
|
+
|
|
648
|
+
## 3.0.7
|
|
649
|
+
|
|
650
|
+
### Patch Changes
|
|
651
|
+
|
|
652
|
+
- c78d2cd: fix: cli 更新,文档更新
|
|
653
|
+
- Updated dependencies [c78d2cd]
|
|
654
|
+
- @zhin.js/client@2.0.1
|
|
655
|
+
- @zhin.js/host-router@0.0.2
|
|
656
|
+
- @zhin.js/core@1.1.30
|
|
657
|
+
- @zhin.js/host-api@0.0.2
|
|
658
|
+
|
|
659
|
+
## 3.0.6
|
|
660
|
+
|
|
661
|
+
### Patch Changes
|
|
662
|
+
|
|
663
|
+
- 90d9efd: fix: 处理包名
|
|
664
|
+
- @zhin.js/core@1.1.29
|
|
665
|
+
- @zhin.js/host-api@0.0.1
|
|
666
|
+
- @zhin.js/host-router@0.0.1
|
|
667
|
+
|
|
668
|
+
## 3.0.5
|
|
669
|
+
|
|
670
|
+
### Patch Changes
|
|
671
|
+
|
|
672
|
+
- 7e14f8d: fix: 统一发个版,优化一些列安全问题
|
|
673
|
+
- Updated dependencies [6295cbd]
|
|
674
|
+
- Updated dependencies [7e14f8d]
|
|
675
|
+
- Updated dependencies [996ebb3]
|
|
676
|
+
- @zhin.js/core@1.1.28
|
|
677
|
+
- @zhin.js/client@1.1.4
|
|
678
|
+
- @zhin.js/host-router-host@0.1.4
|
|
679
|
+
- zhin.js@1.0.86
|
|
680
|
+
- @zhin.js/console@3.0.5
|
|
681
|
+
- @zhin.js/host-router@1.0.79
|
|
682
|
+
|
|
683
|
+
## 3.0.4
|
|
684
|
+
|
|
685
|
+
### Patch Changes
|
|
686
|
+
|
|
687
|
+
- zhin.js@1.0.85
|
|
688
|
+
- @zhin.js/console@3.0.4
|
|
689
|
+
- @zhin.js/host-router@1.0.78
|
|
690
|
+
- @zhin.js/core@1.1.27
|
|
691
|
+
|
|
692
|
+
## 3.0.3
|
|
693
|
+
|
|
694
|
+
### Patch Changes
|
|
695
|
+
|
|
696
|
+
- 0db9fed: fix: deno deploy
|
|
697
|
+
- f19d2e0: fix: remove multiple runtime support
|
|
698
|
+
- Updated dependencies [0db9fed]
|
|
699
|
+
- Updated dependencies [f19d2e0]
|
|
700
|
+
- Updated dependencies [2d24338]
|
|
701
|
+
- @zhin.js/console@3.0.3
|
|
702
|
+
- @zhin.js/host-router-host@0.1.3
|
|
703
|
+
- @zhin.js/core@1.1.26
|
|
704
|
+
- zhin.js@1.0.84
|
|
705
|
+
- @zhin.js/client@1.1.3
|
|
706
|
+
- @zhin.js/host-router@1.0.77
|
|
707
|
+
|
|
708
|
+
## 3.0.2
|
|
709
|
+
|
|
710
|
+
### Patch Changes
|
|
711
|
+
|
|
712
|
+
- 775427e: fix: edge 支持
|
|
713
|
+
- Updated dependencies [775427e]
|
|
714
|
+
- @zhin.js/console@3.0.2
|
|
715
|
+
- @zhin.js/host-router@1.0.76
|
|
716
|
+
- @zhin.js/client@1.1.2
|
|
717
|
+
- @zhin.js/core@1.1.25
|
|
718
|
+
- zhin.js@1.0.83
|
|
719
|
+
|
|
720
|
+
## 3.0.1
|
|
721
|
+
|
|
722
|
+
### Patch Changes
|
|
723
|
+
|
|
724
|
+
- 32049f5: fix: init publish
|
|
725
|
+
- Updated dependencies [32049f5]
|
|
726
|
+
- @zhin.js/console@3.0.1
|
|
727
|
+
- @zhin.js/host-router@1.0.75
|
|
728
|
+
- @zhin.js/client@1.1.1
|
|
729
|
+
- @zhin.js/core@1.1.24
|
|
730
|
+
- zhin.js@1.0.82
|
|
731
|
+
|
|
732
|
+
## 3.0.0
|
|
733
|
+
|
|
734
|
+
### Patch Changes
|
|
735
|
+
|
|
736
|
+
- Updated dependencies
|
|
737
|
+
- @zhin.js/client@1.1.0
|
|
738
|
+
- @zhin.js/console@3.0.0
|
|
739
|
+
|
|
740
|
+
## 2.0.24
|
|
741
|
+
|
|
742
|
+
### Patch Changes
|
|
743
|
+
|
|
744
|
+
- Updated dependencies [8086ccb]
|
|
745
|
+
- @zhin.js/core@1.1.23
|
|
746
|
+
- zhin.js@1.0.81
|
|
747
|
+
- @zhin.js/console@2.0.24
|
|
748
|
+
- @zhin.js/host-router@1.0.74
|
|
749
|
+
|
|
750
|
+
## 2.0.23
|
|
751
|
+
|
|
752
|
+
### Patch Changes
|
|
753
|
+
|
|
754
|
+
- zhin.js@1.0.80
|
|
755
|
+
- @zhin.js/console@2.0.23
|
|
756
|
+
- @zhin.js/host-router@1.0.73
|
|
757
|
+
- @zhin.js/core@1.1.22
|
|
758
|
+
|
|
759
|
+
## 2.0.22
|
|
760
|
+
|
|
761
|
+
### Patch Changes
|
|
762
|
+
|
|
763
|
+
- zhin.js@1.0.79
|
|
764
|
+
- @zhin.js/console@2.0.22
|
|
765
|
+
- @zhin.js/host-router@1.0.72
|
|
766
|
+
- @zhin.js/core@1.1.21
|
|
767
|
+
|
|
768
|
+
## 2.0.21
|
|
769
|
+
|
|
770
|
+
### Patch Changes
|
|
771
|
+
|
|
772
|
+
- Updated dependencies [88caeb2]
|
|
773
|
+
- @zhin.js/console@2.0.21
|
|
774
|
+
- @zhin.js/core@1.1.20
|
|
775
|
+
- zhin.js@1.0.78
|
|
776
|
+
- @zhin.js/host-router@1.0.71
|
|
777
|
+
|
|
778
|
+
## 2.0.20
|
|
779
|
+
|
|
780
|
+
### Patch Changes
|
|
781
|
+
|
|
782
|
+
- zhin.js@1.0.77
|
|
783
|
+
- @zhin.js/core@1.1.19
|
|
784
|
+
- @zhin.js/console@2.0.20
|
|
785
|
+
- @zhin.js/host-router@1.0.70
|
|
786
|
+
|
|
787
|
+
## 2.0.19
|
|
788
|
+
|
|
789
|
+
### Patch Changes
|
|
790
|
+
|
|
791
|
+
- Updated dependencies [cb9fbf1]
|
|
792
|
+
- zhin.js@1.0.76
|
|
793
|
+
- @zhin.js/console@2.0.19
|
|
794
|
+
- @zhin.js/host-router@1.0.69
|
|
795
|
+
- @zhin.js/core@1.1.18
|
|
796
|
+
|
|
797
|
+
## 2.0.18
|
|
798
|
+
|
|
799
|
+
### Patch Changes
|
|
800
|
+
|
|
801
|
+
- @zhin.js/core@1.1.17
|
|
802
|
+
- zhin.js@1.0.75
|
|
803
|
+
- @zhin.js/console@2.0.18
|
|
804
|
+
- @zhin.js/host-router@1.0.68
|
|
805
|
+
|
|
806
|
+
## 2.0.17
|
|
807
|
+
|
|
808
|
+
### Patch Changes
|
|
809
|
+
|
|
810
|
+
- Updated dependencies [c9dec38]
|
|
811
|
+
- @zhin.js/core@1.1.16
|
|
812
|
+
- zhin.js@1.0.74
|
|
813
|
+
- @zhin.js/console@2.0.17
|
|
814
|
+
- @zhin.js/host-router@1.0.67
|
|
815
|
+
|
|
816
|
+
## 2.0.16
|
|
817
|
+
|
|
818
|
+
### Patch Changes
|
|
819
|
+
|
|
820
|
+
- f1e9a76: fix: 提高 skill 质量
|
|
821
|
+
- zhin.js@1.0.73
|
|
822
|
+
- @zhin.js/console@2.0.16
|
|
823
|
+
- @zhin.js/host-router@1.0.66
|
|
824
|
+
- @zhin.js/core@1.1.15
|
|
825
|
+
|
|
826
|
+
## 2.0.15
|
|
827
|
+
|
|
828
|
+
### Patch Changes
|
|
829
|
+
|
|
830
|
+
- Updated dependencies [21efca3]
|
|
831
|
+
- @zhin.js/console@2.0.15
|
|
832
|
+
|
|
833
|
+
## 2.0.14
|
|
834
|
+
|
|
835
|
+
### Patch Changes
|
|
836
|
+
|
|
837
|
+
- abc75a4: fix: 优化,客户端构建优化
|
|
838
|
+
- Updated dependencies [abc75a4]
|
|
839
|
+
- @zhin.js/console@2.0.14
|
|
840
|
+
|
|
841
|
+
## 2.0.13
|
|
842
|
+
|
|
843
|
+
### Patch Changes
|
|
844
|
+
|
|
845
|
+
- e28fd7c: fix: 重新发版
|
|
846
|
+
- Updated dependencies [e28fd7c]
|
|
847
|
+
- @zhin.js/client@1.0.18
|
|
848
|
+
- @zhin.js/core@1.1.14
|
|
849
|
+
- zhin.js@1.0.72
|
|
850
|
+
- @zhin.js/console@2.0.13
|
|
851
|
+
- @zhin.js/host-router@1.0.65
|
|
852
|
+
|
|
853
|
+
## 2.0.12
|
|
854
|
+
|
|
855
|
+
### Patch Changes
|
|
856
|
+
|
|
857
|
+
- Updated dependencies [60b1a4d]
|
|
858
|
+
- @zhin.js/console@2.0.12
|
|
859
|
+
|
|
860
|
+
## 2.0.11
|
|
861
|
+
|
|
862
|
+
### Patch Changes
|
|
863
|
+
|
|
864
|
+
- 4304825: fix: 重新发版
|
|
865
|
+
- Updated dependencies [4304825]
|
|
866
|
+
- @zhin.js/client@1.0.17
|
|
867
|
+
- @zhin.js/core@1.1.13
|
|
868
|
+
- zhin.js@1.0.71
|
|
869
|
+
- @zhin.js/console@2.0.11
|
|
870
|
+
- @zhin.js/host-router@1.0.64
|
|
871
|
+
|
|
872
|
+
## 2.0.10
|
|
873
|
+
|
|
874
|
+
### Patch Changes
|
|
875
|
+
|
|
876
|
+
- Updated dependencies [d0250e8]
|
|
877
|
+
- @zhin.js/core@1.1.10
|
|
878
|
+
- zhin.js@1.0.68
|
|
879
|
+
- @zhin.js/console@2.0.10
|
|
880
|
+
- @zhin.js/host-router@1.0.63
|
|
881
|
+
|
|
882
|
+
## 2.0.9
|
|
883
|
+
|
|
884
|
+
### Patch Changes
|
|
885
|
+
|
|
886
|
+
- Updated dependencies [0eba6d6]
|
|
887
|
+
- @zhin.js/host-router@1.0.62
|
|
888
|
+
- @zhin.js/core@1.1.9
|
|
889
|
+
- zhin.js@1.0.67
|
|
890
|
+
- @zhin.js/console@2.0.9
|
|
891
|
+
|
|
892
|
+
## 2.0.8
|
|
893
|
+
|
|
894
|
+
### Patch Changes
|
|
895
|
+
|
|
896
|
+
- zhin.js@1.0.66
|
|
897
|
+
- @zhin.js/core@1.1.8
|
|
898
|
+
- @zhin.js/console@2.0.8
|
|
899
|
+
- @zhin.js/host-router@1.0.61
|
|
900
|
+
|
|
901
|
+
## 2.0.7
|
|
902
|
+
|
|
903
|
+
### Patch Changes
|
|
904
|
+
|
|
905
|
+
- @zhin.js/core@1.1.7
|
|
906
|
+
- zhin.js@1.0.65
|
|
907
|
+
- @zhin.js/console@2.0.7
|
|
908
|
+
- @zhin.js/host-router@1.0.60
|
|
909
|
+
|
|
910
|
+
## 2.0.6
|
|
911
|
+
|
|
912
|
+
### Patch Changes
|
|
913
|
+
|
|
914
|
+
- 9577eba: fix: tool 收集 bug,升级 ts 到 6.0.2
|
|
915
|
+
- Updated dependencies [9577eba]
|
|
916
|
+
- @zhin.js/client@1.0.16
|
|
917
|
+
- @zhin.js/core@1.1.6
|
|
918
|
+
- zhin.js@1.0.64
|
|
919
|
+
- @zhin.js/console@2.0.6
|
|
920
|
+
- @zhin.js/host-router@1.0.59
|
|
921
|
+
|
|
922
|
+
## 2.0.5
|
|
923
|
+
|
|
924
|
+
### Patch Changes
|
|
925
|
+
|
|
926
|
+
- ba30934: fix: web 优化
|
|
927
|
+
- Updated dependencies [ba30934]
|
|
928
|
+
- @zhin.js/console@2.0.5
|
|
929
|
+
- @zhin.js/host-router@1.0.58
|
|
930
|
+
- zhin.js@1.0.63
|
|
931
|
+
- @zhin.js/core@1.1.5
|
|
932
|
+
|
|
933
|
+
## 2.0.4
|
|
934
|
+
|
|
935
|
+
### Patch Changes
|
|
936
|
+
|
|
937
|
+
- zhin.js@1.0.62
|
|
938
|
+
- @zhin.js/console@2.0.4
|
|
939
|
+
- @zhin.js/host-router@1.0.57
|
|
940
|
+
- @zhin.js/core@1.1.4
|
|
941
|
+
|
|
942
|
+
## 2.0.3
|
|
943
|
+
|
|
944
|
+
### Patch Changes
|
|
945
|
+
|
|
946
|
+
- zhin.js@1.0.61
|
|
947
|
+
- @zhin.js/console@2.0.3
|
|
948
|
+
- @zhin.js/host-router@1.0.56
|
|
949
|
+
- @zhin.js/core@1.1.3
|
|
950
|
+
|
|
951
|
+
## 2.0.2
|
|
952
|
+
|
|
953
|
+
### Patch Changes
|
|
954
|
+
|
|
955
|
+
- 5073d4c: chore: chore: update TypeScript version to ^5.9.3 across all plugins and packages
|
|
956
|
+
feat: enhance ai-text-as-image output registration with off handler for cleanup
|
|
957
|
+
fix: remove unnecessary logging in ensureBuiltinFontsCached function
|
|
958
|
+
refactor: simplify action handlers in html-renderer tools
|
|
959
|
+
chore: add README files for queue-sandbox-poc and event-delivery packages
|
|
960
|
+
chore: adjust pnpm workspace configuration to exclude games directory
|
|
961
|
+
chore: update tsconfig to include plugins directory for TypeScript compilation
|
|
962
|
+
- Updated dependencies [5073d4c]
|
|
963
|
+
- @zhin.js/console@2.0.2
|
|
964
|
+
- @zhin.js/core@1.1.2
|
|
965
|
+
- zhin.js@1.0.60
|
|
966
|
+
- @zhin.js/host-router@1.0.55
|
|
967
|
+
|
|
968
|
+
## 2.0.1
|
|
969
|
+
|
|
970
|
+
### Patch Changes
|
|
971
|
+
|
|
972
|
+
- c212bf7: fix: 适配器优化
|
|
973
|
+
- Updated dependencies [c212bf7]
|
|
974
|
+
- @zhin.js/client@1.0.15
|
|
975
|
+
- @zhin.js/core@1.1.1
|
|
976
|
+
- zhin.js@1.0.59
|
|
977
|
+
- @zhin.js/console@2.0.1
|
|
978
|
+
- @zhin.js/host-router@1.0.54
|
|
979
|
+
|
|
980
|
+
## 2.0.0
|
|
981
|
+
|
|
982
|
+
### Patch Changes
|
|
983
|
+
|
|
984
|
+
- Updated dependencies [8280fe7]
|
|
985
|
+
- @zhin.js/core@1.1.0
|
|
986
|
+
- zhin.js@1.0.58
|
|
987
|
+
- @zhin.js/console@2.0.0
|
|
988
|
+
- @zhin.js/host-router@1.0.53
|
|
989
|
+
|
|
3
990
|
## 1.0.70
|
|
4
991
|
|
|
5
992
|
### Patch Changes
|
|
@@ -9,7 +996,7 @@
|
|
|
9
996
|
- @zhin.js/core@1.0.57
|
|
10
997
|
- zhin.js@1.0.57
|
|
11
998
|
- @zhin.js/console@1.0.59
|
|
12
|
-
- @zhin.js/
|
|
999
|
+
- @zhin.js/host-router@1.0.52
|
|
13
1000
|
|
|
14
1001
|
## 1.0.69
|
|
15
1002
|
|
|
@@ -18,7 +1005,7 @@
|
|
|
18
1005
|
- zhin.js@1.0.56
|
|
19
1006
|
- @zhin.js/core@1.0.56
|
|
20
1007
|
- @zhin.js/console@1.0.58
|
|
21
|
-
- @zhin.js/
|
|
1008
|
+
- @zhin.js/host-router@1.0.51
|
|
22
1009
|
|
|
23
1010
|
## 1.0.68
|
|
24
1011
|
|
|
@@ -35,7 +1022,7 @@
|
|
|
35
1022
|
- @zhin.js/core@1.0.55
|
|
36
1023
|
- zhin.js@1.0.55
|
|
37
1024
|
- @zhin.js/console@1.0.56
|
|
38
|
-
- @zhin.js/
|
|
1025
|
+
- @zhin.js/host-router@1.0.50
|
|
39
1026
|
|
|
40
1027
|
## 1.0.66
|
|
41
1028
|
|
|
@@ -47,7 +1034,7 @@
|
|
|
47
1034
|
- @zhin.js/core@1.0.54
|
|
48
1035
|
- zhin.js@1.0.54
|
|
49
1036
|
- @zhin.js/console@1.0.55
|
|
50
|
-
- @zhin.js/
|
|
1037
|
+
- @zhin.js/host-router@1.0.49
|
|
51
1038
|
|
|
52
1039
|
## 1.0.65
|
|
53
1040
|
|
|
@@ -56,7 +1043,7 @@
|
|
|
56
1043
|
- @zhin.js/core@1.0.53
|
|
57
1044
|
- zhin.js@1.0.53
|
|
58
1045
|
- @zhin.js/console@1.0.54
|
|
59
|
-
- @zhin.js/
|
|
1046
|
+
- @zhin.js/host-router@1.0.48
|
|
60
1047
|
|
|
61
1048
|
## 1.0.64
|
|
62
1049
|
|
|
@@ -65,7 +1052,7 @@
|
|
|
65
1052
|
- a3511a0: 各包内 Agent 技能说明已固定为随包发布的 `skills/*/SKILL.md`(替代已移除的运行时 `declareSkill`)。本批为 registry / 分发侧对齐的 **patch** 版本递增。
|
|
66
1053
|
- Updated dependencies [a3511a0]
|
|
67
1054
|
- @zhin.js/console@1.0.53
|
|
68
|
-
- @zhin.js/
|
|
1055
|
+
- @zhin.js/host-router@1.0.47
|
|
69
1056
|
|
|
70
1057
|
## 1.0.63
|
|
71
1058
|
|
|
@@ -78,7 +1065,7 @@
|
|
|
78
1065
|
- zhin.js@1.0.52
|
|
79
1066
|
- @zhin.js/console@1.0.52
|
|
80
1067
|
- @zhin.js/client@1.0.13
|
|
81
|
-
- @zhin.js/
|
|
1068
|
+
- @zhin.js/host-router@1.0.46
|
|
82
1069
|
|
|
83
1070
|
## 1.0.62
|
|
84
1071
|
|
|
@@ -93,7 +1080,7 @@
|
|
|
93
1080
|
|
|
94
1081
|
- zhin.js@1.0.51
|
|
95
1082
|
- @zhin.js/console@1.0.50
|
|
96
|
-
- @zhin.js/
|
|
1083
|
+
- @zhin.js/host-router@1.0.45
|
|
97
1084
|
- @zhin.js/core@1.0.51
|
|
98
1085
|
|
|
99
1086
|
## 1.0.60
|
|
@@ -110,7 +1097,7 @@
|
|
|
110
1097
|
|
|
111
1098
|
- zhin.js@1.0.50
|
|
112
1099
|
- @zhin.js/console@1.0.48
|
|
113
|
-
- @zhin.js/
|
|
1100
|
+
- @zhin.js/host-router@1.0.44
|
|
114
1101
|
- @zhin.js/core@1.0.50
|
|
115
1102
|
|
|
116
1103
|
## 1.0.58
|
|
@@ -121,7 +1108,7 @@
|
|
|
121
1108
|
- @zhin.js/core@1.0.49
|
|
122
1109
|
- zhin.js@1.0.49
|
|
123
1110
|
- @zhin.js/console@1.0.47
|
|
124
|
-
- @zhin.js/
|
|
1111
|
+
- @zhin.js/host-router@1.0.43
|
|
125
1112
|
|
|
126
1113
|
## 1.0.57
|
|
127
1114
|
|
|
@@ -131,7 +1118,7 @@
|
|
|
131
1118
|
- @zhin.js/core@1.0.48
|
|
132
1119
|
- zhin.js@1.0.48
|
|
133
1120
|
- @zhin.js/console@1.0.46
|
|
134
|
-
- @zhin.js/
|
|
1121
|
+
- @zhin.js/host-router@1.0.42
|
|
135
1122
|
|
|
136
1123
|
## 1.0.56
|
|
137
1124
|
|
|
@@ -141,7 +1128,7 @@
|
|
|
141
1128
|
- @zhin.js/core@1.0.47
|
|
142
1129
|
- zhin.js@1.0.47
|
|
143
1130
|
- @zhin.js/console@1.0.45
|
|
144
|
-
- @zhin.js/
|
|
1131
|
+
- @zhin.js/host-router@1.0.41
|
|
145
1132
|
|
|
146
1133
|
## 1.0.55
|
|
147
1134
|
|
|
@@ -151,7 +1138,7 @@
|
|
|
151
1138
|
- @zhin.js/core@1.0.46
|
|
152
1139
|
- zhin.js@1.0.46
|
|
153
1140
|
- @zhin.js/console@1.0.44
|
|
154
|
-
- @zhin.js/
|
|
1141
|
+
- @zhin.js/host-router@1.0.40
|
|
155
1142
|
|
|
156
1143
|
## 1.0.54
|
|
157
1144
|
|
|
@@ -161,7 +1148,7 @@
|
|
|
161
1148
|
- @zhin.js/core@1.0.45
|
|
162
1149
|
- zhin.js@1.0.45
|
|
163
1150
|
- @zhin.js/console@1.0.43
|
|
164
|
-
- @zhin.js/
|
|
1151
|
+
- @zhin.js/host-router@1.0.39
|
|
165
1152
|
|
|
166
1153
|
## 1.0.53
|
|
167
1154
|
|
|
@@ -169,7 +1156,7 @@
|
|
|
169
1156
|
|
|
170
1157
|
- zhin.js@1.0.44
|
|
171
1158
|
- @zhin.js/console@1.0.42
|
|
172
|
-
- @zhin.js/
|
|
1159
|
+
- @zhin.js/host-router@1.0.38
|
|
173
1160
|
- @zhin.js/core@1.0.44
|
|
174
1161
|
|
|
175
1162
|
## 1.0.52
|
|
@@ -178,7 +1165,7 @@
|
|
|
178
1165
|
|
|
179
1166
|
- Updated dependencies [72ec4ba]
|
|
180
1167
|
- @zhin.js/console@1.0.41
|
|
181
|
-
- @zhin.js/
|
|
1168
|
+
- @zhin.js/host-router@1.0.37
|
|
182
1169
|
- @zhin.js/client@1.0.11
|
|
183
1170
|
- @zhin.js/core@1.0.43
|
|
184
1171
|
- zhin.js@1.0.43
|
|
@@ -197,7 +1184,7 @@
|
|
|
197
1184
|
- zhin.js@1.0.42
|
|
198
1185
|
- @zhin.js/core@1.0.42
|
|
199
1186
|
- @zhin.js/console@1.0.39
|
|
200
|
-
- @zhin.js/
|
|
1187
|
+
- @zhin.js/host-router@1.0.36
|
|
201
1188
|
|
|
202
1189
|
## 1.0.49
|
|
203
1190
|
|
|
@@ -207,7 +1194,7 @@
|
|
|
207
1194
|
- @zhin.js/core@1.0.41
|
|
208
1195
|
- zhin.js@1.0.41
|
|
209
1196
|
- @zhin.js/console@1.0.38
|
|
210
|
-
- @zhin.js/
|
|
1197
|
+
- @zhin.js/host-router@1.0.35
|
|
211
1198
|
|
|
212
1199
|
## 1.0.48
|
|
213
1200
|
|
|
@@ -217,7 +1204,7 @@
|
|
|
217
1204
|
- @zhin.js/core@1.0.40
|
|
218
1205
|
- zhin.js@1.0.40
|
|
219
1206
|
- @zhin.js/console@1.0.37
|
|
220
|
-
- @zhin.js/
|
|
1207
|
+
- @zhin.js/host-router@1.0.34
|
|
221
1208
|
|
|
222
1209
|
## 1.0.47
|
|
223
1210
|
|
|
@@ -227,7 +1214,7 @@
|
|
|
227
1214
|
- @zhin.js/core@1.0.39
|
|
228
1215
|
- zhin.js@1.0.39
|
|
229
1216
|
- @zhin.js/console@1.0.36
|
|
230
|
-
- @zhin.js/
|
|
1217
|
+
- @zhin.js/host-router@1.0.33
|
|
231
1218
|
|
|
232
1219
|
## 1.0.46
|
|
233
1220
|
|
|
@@ -237,7 +1224,7 @@
|
|
|
237
1224
|
- @zhin.js/core@1.0.38
|
|
238
1225
|
- zhin.js@1.0.38
|
|
239
1226
|
- @zhin.js/console@1.0.35
|
|
240
|
-
- @zhin.js/
|
|
1227
|
+
- @zhin.js/host-router@1.0.32
|
|
241
1228
|
|
|
242
1229
|
## 1.0.45
|
|
243
1230
|
|
|
@@ -245,7 +1232,7 @@
|
|
|
245
1232
|
|
|
246
1233
|
- Updated dependencies [631da6e]
|
|
247
1234
|
- @zhin.js/console@1.0.34
|
|
248
|
-
- @zhin.js/
|
|
1235
|
+
- @zhin.js/host-router@1.0.31
|
|
249
1236
|
|
|
250
1237
|
## 1.0.44
|
|
251
1238
|
|
|
@@ -255,7 +1242,7 @@
|
|
|
255
1242
|
- @zhin.js/core@1.0.37
|
|
256
1243
|
- zhin.js@1.0.37
|
|
257
1244
|
- @zhin.js/console@1.0.33
|
|
258
|
-
- @zhin.js/
|
|
1245
|
+
- @zhin.js/host-router@1.0.30
|
|
259
1246
|
|
|
260
1247
|
## 1.0.43
|
|
261
1248
|
|
|
@@ -264,7 +1251,7 @@
|
|
|
264
1251
|
- Updated dependencies [432d0a5]
|
|
265
1252
|
- Updated dependencies [6d94111]
|
|
266
1253
|
- @zhin.js/console@1.0.32
|
|
267
|
-
- @zhin.js/
|
|
1254
|
+
- @zhin.js/host-router@1.0.29
|
|
268
1255
|
- @zhin.js/core@1.0.36
|
|
269
1256
|
- zhin.js@1.0.36
|
|
270
1257
|
|
|
@@ -276,7 +1263,7 @@
|
|
|
276
1263
|
- @zhin.js/core@1.0.35
|
|
277
1264
|
- zhin.js@1.0.35
|
|
278
1265
|
- @zhin.js/console@1.0.31
|
|
279
|
-
- @zhin.js/
|
|
1266
|
+
- @zhin.js/host-router@1.0.28
|
|
280
1267
|
|
|
281
1268
|
## 1.0.41
|
|
282
1269
|
|
|
@@ -286,7 +1273,7 @@
|
|
|
286
1273
|
- @zhin.js/core@1.0.34
|
|
287
1274
|
- zhin.js@1.0.34
|
|
288
1275
|
- @zhin.js/console@1.0.30
|
|
289
|
-
- @zhin.js/
|
|
1276
|
+
- @zhin.js/host-router@1.0.27
|
|
290
1277
|
|
|
291
1278
|
## 1.0.40
|
|
292
1279
|
|
|
@@ -296,14 +1283,14 @@
|
|
|
296
1283
|
- @zhin.js/core@1.0.33
|
|
297
1284
|
- zhin.js@1.0.33
|
|
298
1285
|
- @zhin.js/console@1.0.29
|
|
299
|
-
- @zhin.js/
|
|
1286
|
+
- @zhin.js/host-router@1.0.26
|
|
300
1287
|
|
|
301
1288
|
## 1.0.39
|
|
302
1289
|
|
|
303
1290
|
### Patch Changes
|
|
304
1291
|
|
|
305
1292
|
- Updated dependencies [48481a8]
|
|
306
|
-
- @zhin.js/
|
|
1293
|
+
- @zhin.js/host-router@1.0.25
|
|
307
1294
|
|
|
308
1295
|
## 1.0.38
|
|
309
1296
|
|
|
@@ -313,7 +1300,7 @@
|
|
|
313
1300
|
- @zhin.js/core@1.0.32
|
|
314
1301
|
- zhin.js@1.0.32
|
|
315
1302
|
- @zhin.js/console@1.0.28
|
|
316
|
-
- @zhin.js/
|
|
1303
|
+
- @zhin.js/host-router@1.0.24
|
|
317
1304
|
|
|
318
1305
|
## 1.0.37
|
|
319
1306
|
|
|
@@ -323,7 +1310,7 @@
|
|
|
323
1310
|
- @zhin.js/core@1.0.31
|
|
324
1311
|
- zhin.js@1.0.31
|
|
325
1312
|
- @zhin.js/console@1.0.27
|
|
326
|
-
- @zhin.js/
|
|
1313
|
+
- @zhin.js/host-router@1.0.23
|
|
327
1314
|
|
|
328
1315
|
## 1.0.36
|
|
329
1316
|
|
|
@@ -332,7 +1319,7 @@
|
|
|
332
1319
|
- Updated dependencies [460a6c6]
|
|
333
1320
|
- zhin.js@1.0.30
|
|
334
1321
|
- @zhin.js/console@1.0.26
|
|
335
|
-
- @zhin.js/
|
|
1322
|
+
- @zhin.js/host-router@1.0.22
|
|
336
1323
|
- @zhin.js/core@1.0.30
|
|
337
1324
|
|
|
338
1325
|
## 1.0.35
|
|
@@ -343,7 +1330,7 @@
|
|
|
343
1330
|
- @zhin.js/core@1.0.29
|
|
344
1331
|
- zhin.js@1.0.29
|
|
345
1332
|
- @zhin.js/console@1.0.25
|
|
346
|
-
- @zhin.js/
|
|
1333
|
+
- @zhin.js/host-router@1.0.21
|
|
347
1334
|
|
|
348
1335
|
## 1.0.34
|
|
349
1336
|
|
|
@@ -351,7 +1338,7 @@
|
|
|
351
1338
|
|
|
352
1339
|
- Updated dependencies [05a514d]
|
|
353
1340
|
- @zhin.js/console@1.0.24
|
|
354
|
-
- @zhin.js/
|
|
1341
|
+
- @zhin.js/host-router@1.0.20
|
|
355
1342
|
- @zhin.js/client@1.0.10
|
|
356
1343
|
- @zhin.js/core@1.0.28
|
|
357
1344
|
- zhin.js@1.0.28
|
|
@@ -361,14 +1348,14 @@
|
|
|
361
1348
|
### Patch Changes
|
|
362
1349
|
|
|
363
1350
|
- Updated dependencies [2b44e18]
|
|
364
|
-
- @zhin.js/
|
|
1351
|
+
- @zhin.js/host-router@1.0.19
|
|
365
1352
|
|
|
366
1353
|
## 1.0.32
|
|
367
1354
|
|
|
368
1355
|
### Patch Changes
|
|
369
1356
|
|
|
370
1357
|
- Updated dependencies [b27e633]
|
|
371
|
-
- @zhin.js/
|
|
1358
|
+
- @zhin.js/host-router@1.0.18
|
|
372
1359
|
- @zhin.js/core@1.0.27
|
|
373
1360
|
- zhin.js@1.0.27
|
|
374
1361
|
- @zhin.js/console@1.0.23
|
|
@@ -380,7 +1367,7 @@
|
|
|
380
1367
|
- 106d357: fix: ai
|
|
381
1368
|
- Updated dependencies [106d357]
|
|
382
1369
|
- @zhin.js/console@1.0.22
|
|
383
|
-
- @zhin.js/
|
|
1370
|
+
- @zhin.js/host-router@1.0.17
|
|
384
1371
|
- @zhin.js/client@1.0.9
|
|
385
1372
|
- @zhin.js/core@1.0.26
|
|
386
1373
|
- zhin.js@1.0.26
|
|
@@ -397,7 +1384,7 @@
|
|
|
397
1384
|
- @zhin.js/core@1.0.25
|
|
398
1385
|
- zhin.js@1.0.25
|
|
399
1386
|
- @zhin.js/console@1.0.21
|
|
400
|
-
- @zhin.js/
|
|
1387
|
+
- @zhin.js/host-router@1.0.16
|
|
401
1388
|
|
|
402
1389
|
## 1.0.29
|
|
403
1390
|
|
|
@@ -407,7 +1394,7 @@
|
|
|
407
1394
|
- @zhin.js/core@1.0.24
|
|
408
1395
|
- zhin.js@1.0.24
|
|
409
1396
|
- @zhin.js/console@1.0.20
|
|
410
|
-
- @zhin.js/
|
|
1397
|
+
- @zhin.js/host-router@1.0.15
|
|
411
1398
|
|
|
412
1399
|
## 1.0.28
|
|
413
1400
|
|
|
@@ -418,7 +1405,7 @@
|
|
|
418
1405
|
- @zhin.js/core@1.0.23
|
|
419
1406
|
- zhin.js@1.0.23
|
|
420
1407
|
- @zhin.js/console@1.0.19
|
|
421
|
-
- @zhin.js/
|
|
1408
|
+
- @zhin.js/host-router@1.0.14
|
|
422
1409
|
|
|
423
1410
|
## 1.0.27
|
|
424
1411
|
|
|
@@ -427,7 +1414,7 @@
|
|
|
427
1414
|
- Updated dependencies [26aba27]
|
|
428
1415
|
- zhin.js@1.0.22
|
|
429
1416
|
- @zhin.js/console@1.0.18
|
|
430
|
-
- @zhin.js/
|
|
1417
|
+
- @zhin.js/host-router@1.0.13
|
|
431
1418
|
- @zhin.js/core@1.0.22
|
|
432
1419
|
|
|
433
1420
|
## 1.0.26
|
|
@@ -438,7 +1425,7 @@
|
|
|
438
1425
|
- @zhin.js/core@1.0.21
|
|
439
1426
|
- zhin.js@1.0.21
|
|
440
1427
|
- @zhin.js/console@1.0.17
|
|
441
|
-
- @zhin.js/
|
|
1428
|
+
- @zhin.js/host-router@1.0.12
|
|
442
1429
|
|
|
443
1430
|
## 1.0.25
|
|
444
1431
|
|
|
@@ -449,7 +1436,7 @@
|
|
|
449
1436
|
- Updated dependencies [a3b7673]
|
|
450
1437
|
- Updated dependencies [5141137]
|
|
451
1438
|
- @zhin.js/console@1.0.16
|
|
452
|
-
- @zhin.js/
|
|
1439
|
+
- @zhin.js/host-router@1.0.11
|
|
453
1440
|
- @zhin.js/core@1.0.20
|
|
454
1441
|
- zhin.js@1.0.20
|
|
455
1442
|
|
|
@@ -463,7 +1450,7 @@
|
|
|
463
1450
|
- @zhin.js/core@1.0.19
|
|
464
1451
|
- zhin.js@1.0.19
|
|
465
1452
|
- @zhin.js/console@1.0.15
|
|
466
|
-
- @zhin.js/
|
|
1453
|
+
- @zhin.js/host-router@1.0.10
|
|
467
1454
|
|
|
468
1455
|
## 1.0.23
|
|
469
1456
|
|
|
@@ -475,7 +1462,7 @@
|
|
|
475
1462
|
- @zhin.js/core@1.0.18
|
|
476
1463
|
- zhin.js@1.0.18
|
|
477
1464
|
- @zhin.js/console@1.0.14
|
|
478
|
-
- @zhin.js/
|
|
1465
|
+
- @zhin.js/host-router@1.0.9
|
|
479
1466
|
|
|
480
1467
|
## 1.0.22
|
|
481
1468
|
|
|
@@ -527,7 +1514,7 @@
|
|
|
527
1514
|
- Updated dependencies [547028f]
|
|
528
1515
|
- @zhin.js/console@1.0.10
|
|
529
1516
|
- @zhin.js/types@1.0.5
|
|
530
|
-
- @zhin.js/
|
|
1517
|
+
- @zhin.js/host-router@1.0.7
|
|
531
1518
|
- zhin.js@1.0.14
|
|
532
1519
|
|
|
533
1520
|
## 1.0.15
|
|
@@ -567,7 +1554,7 @@
|
|
|
567
1554
|
- Updated dependencies [c490260]
|
|
568
1555
|
- @zhin.js/console@1.0.7
|
|
569
1556
|
- @zhin.js/client@1.0.5
|
|
570
|
-
- @zhin.js/
|
|
1557
|
+
- @zhin.js/host-router@1.0.6
|
|
571
1558
|
- zhin.js@1.0.9
|
|
572
1559
|
|
|
573
1560
|
## 1.0.10
|
|
@@ -580,7 +1567,7 @@
|
|
|
580
1567
|
- @zhin.js/types@1.0.3
|
|
581
1568
|
- @zhin.js/client@1.0.4
|
|
582
1569
|
- zhin.js@1.0.8
|
|
583
|
-
- @zhin.js/
|
|
1570
|
+
- @zhin.js/host-router@1.0.5
|
|
584
1571
|
|
|
585
1572
|
## 1.0.9
|
|
586
1573
|
|
|
@@ -599,7 +1586,7 @@
|
|
|
599
1586
|
- Updated dependencies [b213bbc]
|
|
600
1587
|
- @zhin.js/console@1.0.4
|
|
601
1588
|
- @zhin.js/client@1.0.3
|
|
602
|
-
- @zhin.js/
|
|
1589
|
+
- @zhin.js/host-router@1.0.4
|
|
603
1590
|
- zhin.js@1.0.6
|
|
604
1591
|
|
|
605
1592
|
## 1.0.7
|
|
@@ -615,7 +1602,7 @@
|
|
|
615
1602
|
|
|
616
1603
|
- f347667: fix: runtime error
|
|
617
1604
|
- Updated dependencies [f347667]
|
|
618
|
-
- @zhin.js/
|
|
1605
|
+
- @zhin.js/host-router@1.0.3
|
|
619
1606
|
- zhin.js@1.0.5
|
|
620
1607
|
|
|
621
1608
|
## 1.0.5
|
|
@@ -625,7 +1612,7 @@
|
|
|
625
1612
|
- Updated dependencies [d291005]
|
|
626
1613
|
- @zhin.js/console@1.0.2
|
|
627
1614
|
- @zhin.js/client@1.0.2
|
|
628
|
-
- @zhin.js/
|
|
1615
|
+
- @zhin.js/host-router@1.0.2
|
|
629
1616
|
|
|
630
1617
|
## 1.0.4
|
|
631
1618
|
|