@mcp-b/do-runtime 0.2.2 → 0.3.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.
- package/CHANGELOG.md +12 -0
- package/dist/chunks/io-context-Ci3Rf6U5.js +1459 -0
- package/dist/chunks/io-context-Ci3Rf6U5.js.map +1 -0
- package/dist/gate.js +105 -0
- package/dist/gate.js.map +1 -0
- package/dist/index.js +109 -1442
- package/dist/index.js.map +1 -1
- package/dist/src/api/http.d.ts +1 -0
- package/dist/src/fixtures/await-transform.actor.d.ts +1 -0
- package/dist/src/gate.d.ts +4 -0
- package/dist/src/io/io-context.d.ts +6 -0
- package/dist/src/vite.d.ts +7 -0
- package/dist/vite.js +55 -0
- package/dist/vite.js.map +1 -0
- package/package.json +19 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9170766: Add `/gate` runtime helpers and a `/vite` transform that makes actor continuations re-enter the input gate after every transformed await.
|
|
8
|
+
|
|
9
|
+
## 0.2.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- e4b1be6: Close three input-lock laundering paths in HTTP bodies. `ReadableStream` async iteration, second-order `Blob` reads, and reader or stream lifecycle promises could previously resume outside the actor's input gate and make the next storage call throw "no input lock available in this context". They now route every surfaced continuation through the actor's gated I/O seam while preserving native stream cancellation and lock-release behavior.
|
|
14
|
+
|
|
3
15
|
## 0.2.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|