@devrouter/cli 0.0.45 → 0.0.46
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/dist/devrouter.js +391 -181
- package/package.json +1 -1
- package/upgrade-prompts/0.0.46.md +41 -0
package/package.json
CHANGED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Upgrade to devrouter 0.0.46
|
|
2
|
+
|
|
3
|
+
Provider mutations under parallel agent load are now observable and drain a
|
|
4
|
+
realistic queue of cold starts instead of failing after a silent minute.
|
|
5
|
+
|
|
6
|
+
1. Install `@devrouter/cli@0.0.46` on the host and bump `.devrouter.yml` to
|
|
7
|
+
`devrouter.version: 0.0.46`.
|
|
8
|
+
2. No schema or command changes. Keep using `devrouter ensure <checkout>` and
|
|
9
|
+
`devrouter workspace up <branch>`.
|
|
10
|
+
3. When several parallel `ensure` runs contend for the machine-global
|
|
11
|
+
Devsy/DevPod mutation lock, contenders now wait up to thirty minutes in
|
|
12
|
+
fair arrival order and print one throttled stderr line every ten seconds.
|
|
13
|
+
Do not treat those lines as failures; a timeout names the queue position or
|
|
14
|
+
holder PID plus true durations and usually means the holder process died
|
|
15
|
+
mid-start or a direct provider command bypassed devrouter.
|
|
16
|
+
4. If a Devsy start fails with the agent-binary acquisition remediation,
|
|
17
|
+
allow Devsy to download its agent binary or export `DEVSY_AGENT_BINARY`
|
|
18
|
+
pointing at a verified official Devsy agent binary matching this platform
|
|
19
|
+
and Devsy version. Do not point it at an arbitrary binary.
|
|
20
|
+
5. A checkout whose persisted managed state names a Compose project that no
|
|
21
|
+
longer has any exact containers can now rebaseline on its currently
|
|
22
|
+
observed exact workspace. If prior-project containers still exist, repair
|
|
23
|
+
that drift explicitly; Devrouter continues to fail closed.
|
|
24
|
+
|
|
25
|
+
Verification:
|
|
26
|
+
|
|
27
|
+
- Run `devrouter -V --repo <checkout>` and confirm the installed CLI and
|
|
28
|
+
local repository report `0.0.46`.
|
|
29
|
+
- Start two linked checkouts concurrently with `devrouter ensure` and require
|
|
30
|
+
both to succeed with visible wait progress on the second, or a timeout
|
|
31
|
+
error that names the holder PID and durations.
|
|
32
|
+
- When changing a checkout's workspace runtime, run one capability-only and
|
|
33
|
+
one routed profile and inspect `managedRuntime.drift`; require an empty list.
|
|
34
|
+
|
|
35
|
+
Report template:
|
|
36
|
+
|
|
37
|
+
- CLI/config version: `0.0.46`
|
|
38
|
+
- Parallel ensure contention: `<passed or details>`
|
|
39
|
+
- Wait progress output: `<observed or details>`
|
|
40
|
+
- Managed-state rebaseline/profile transition: `<passed or details>`
|
|
41
|
+
- Remaining blockers: `<none or details>`
|