@mcp-b/do-runtime 0.1.1 → 0.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 +6 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/src/server/actor-container.d.ts +15 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5f26eb1: Expose the held input lock on `ActorContainer` as `hasCurrent()` so a host stub can identify the calling actor from a lock-holding continuation and route the call through its `awaitIo`.
|
|
8
|
+
|
|
3
9
|
## 0.1.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -6907,6 +6907,9 @@ var ActorContainerImpl = class {
|
|
|
6907
6907
|
isCurrentSlice() {
|
|
6908
6908
|
return this.#ctx.isCurrentSlice();
|
|
6909
6909
|
}
|
|
6910
|
+
hasCurrent() {
|
|
6911
|
+
return this.#ctx.hasCurrent();
|
|
6912
|
+
}
|
|
6910
6913
|
/**
|
|
6911
6914
|
* ← `ActorContainer::start` (`server.c++:2854-2957`) as far as the class
|
|
6912
6915
|
* instance, plus decision 4's boot semantics.
|