@frockbot/kernel-do 0.3.27 → 0.3.29
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/package.json +3 -3
- package/src/applets.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/kernel-do",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.29",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@frockbot/kernel-composition": "0.3.
|
|
16
|
-
"@frockbot/kernel-contracts": "0.3.
|
|
15
|
+
"@frockbot/kernel-composition": "0.3.29",
|
|
16
|
+
"@frockbot/kernel-contracts": "0.3.29",
|
|
17
17
|
"cordis": "4.0.0-rc.8"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
package/src/applets.ts
CHANGED
|
@@ -69,7 +69,7 @@ export const APPLET_MOUNT_INPUT_KEY = "applet:mount-input";
|
|
|
69
69
|
* Applet Durable Object: the open activation trial, if one is in flight.
|
|
70
70
|
*
|
|
71
71
|
* An activation is a commit boundary the kernel owns, not a mount the candidate
|
|
72
|
-
* is trusted to survive (ADR
|
|
72
|
+
* is trusted to survive (ADR 0041). While this key exists the facet's storage is
|
|
73
73
|
* provisional: a byte copy of it is parked in the rollback facet, and whatever
|
|
74
74
|
* reads the Applet next either finds the trial committed — the key deleted — or
|
|
75
75
|
* rolls it back before answering. That is what makes an interrupted publish
|