@devrouter/cli 0.0.40 → 0.0.41

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devrouter/cli",
3
- "version": "0.0.40",
3
+ "version": "0.0.41",
4
4
  "description": "Local dev routing CLI with shared Traefik reverse proxy",
5
5
  "author": "Roland Schlaefli",
6
6
  "homepage": "https://github.com/rschlaefli/devrouter#readme",
@@ -0,0 +1,43 @@
1
+ # Upgrade to devrouter 0.0.41
2
+
3
+ Devrouter now supports Devsy as a first-class managed workspace runtime while
4
+ preserving the existing DevPod lifecycle and ownership guarantees.
5
+
6
+ 1. Install `@devrouter/cli@0.0.41` on the host and bump `.devrouter.yml` to
7
+ `devrouter.version: 0.0.41`.
8
+ 2. Run `devrouter setup --yes --workspace-runtime devsy` to make Devsy the
9
+ machine default for checkouts that neither registry owns yet. Existing
10
+ DevPod- and Devsy-owned checkouts continue to resolve by exact source path.
11
+ 3. To enable Devsy inactivity shutdown for newly created workspaces, add
12
+ `--devsy-inactivity-timeout <duration>` to setup, for example
13
+ `devrouter setup --yes --workspace-runtime devsy --devsy-inactivity-timeout 30m`.
14
+ Omitting this option leaves existing per-workspace provider options intact.
15
+ 4. Keep using `devrouter ensure`, `devrouter exec`, and `devrouter stop` for
16
+ managed lifecycle operations. Do not mutate the same workspace directly
17
+ with DevPod or Devsy commands because that bypasses devrouter's ownership
18
+ lock and route reconciliation.
19
+ 5. No repository schema, data, volume, or devcontainer migration is required.
20
+
21
+ Verification:
22
+
23
+ - Run `devrouter -V --repo <checkout>` and confirm both the installed CLI and
24
+ local repository report `0.0.41`.
25
+ - Run `devrouter doctor --repo <checkout> --json` and confirm the effective
26
+ workspace runtime and its selection source are expected.
27
+ - Run `devrouter ensure <checkout> --json`, then
28
+ `devrouter exec <checkout> -- <representative-command>`.
29
+ - Confirm `devrouter workspace ls --json` joins the checkout to its exact
30
+ runtime registry owner (DevPod or Devsy), matching the runtime and source
31
+ reported by doctor, and that routed applications are reachable.
32
+ - Run `devrouter stop <checkout> --json`, then confirm the Devsy workspace is
33
+ stopped and `devrouter ls --json` contains no route for the exact checkout.
34
+
35
+ Report template:
36
+
37
+ - CLI/config version: `0.0.41`
38
+ - Effective runtime and source:
39
+ `<devsy/devpod and override/env/path-owner/machine-config/auto-detect/default>`
40
+ - Inactivity timeout: `<unset or duration>`
41
+ - Ensure/exec/route proof: `<passed or details>`
42
+ - Exact non-destructive stop: `<passed or details>`
43
+ - Remaining blockers: `<none or details>`