@devrouter/cli 0.0.31 → 0.0.32

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.31",
3
+ "version": "0.0.32",
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,26 @@
1
+ # Upgrade to devrouter 0.0.32
2
+
3
+ Devrouter now owns the complete local devcontainer reconciliation path for both primary and linked checkouts. Normal startup is `devrouter ensure <checkout>`; do not branch on checkout kind or script separate router, DevPod, TLS, and live-verify steps.
4
+
5
+ 1. Install `@devrouter/cli@0.0.32` on the host and bump `.devrouter.yml` to `devrouter.version: 0.0.32`.
6
+ 2. Keep `devrouter setup --repo <checkout> --yes` as a one-time machine bootstrap. Replace recurring setup, `devpod up`, and `repo devcontainer verify --live --yes` wrapper steps with `devrouter ensure <checkout>`.
7
+ 3. Use `devrouter stop <checkout>` for a non-destructive pause. It stops only the exact DevPod and removes that checkout's routes.
8
+ 4. Replace manual `devpod ssh ... --command` seed, migration, and fixture invocations with `devrouter exec <checkout> -- <command...>`.
9
+ 5. Keep `workspace up <branch>` for creating linked worktrees. Existing `workspace ensure` remains compatible but should no longer be selected conditionally.
10
+ 6. Run `devrouter repo agents --repo <checkout>` to refresh generated guidance.
11
+
12
+ Verification:
13
+
14
+ - Run `devrouter ensure <checkout> --json` twice and confirm the same exact DevPod is reused and trusted HTTPS routes succeed.
15
+ - Run `devrouter exec <checkout> -- node -e 'console.log(process.cwd())'` and confirm it prints the checkout's container mount.
16
+ - Run the old live-verify command once only as a compatibility check; it should warn and succeed without insecure TLS.
17
+
18
+ Report template:
19
+
20
+ - CLI/config version: `0.0.32`
21
+ - Wrapper migration: `<files changed or not applicable>`
22
+ - Primary ensure: `<cold/warm DevPod id and trusted routes>`
23
+ - Linked ensure: `<cold/warm workspace id and namespaced routes>`
24
+ - Exec proof: `<command and exit status>`
25
+ - Compatibility live verify: `<passed or skipped with reason>`
26
+ - Remaining blockers: `<none or details>`