@devrouter/cli 0.0.31 → 0.0.33

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.33",
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>`
@@ -0,0 +1,21 @@
1
+ # Upgrade to devrouter 0.0.33
2
+
3
+ Devrouter now hides a known DevPod transport diagnostic emitted after a one-shot command has completed and devrouter has already recovered its real exit status. Real command stderr and exact non-zero statuses remain unchanged.
4
+
5
+ 1. Install `@devrouter/cli@0.0.33` on the host and bump `.devrouter.yml` to `devrouter.version: 0.0.33`.
6
+ 2. Keep the `0.0.32` lifecycle adoption unchanged: use `ensure` for startup, `stop` for a non-destructive pause, and `exec` for one-shot commands.
7
+ 3. Run `devrouter repo agents --repo <checkout>` only if the repository has not already adopted the `0.0.32` lifecycle guidance.
8
+
9
+ Verification:
10
+
11
+ - Run `devrouter exec <checkout> -- true` and confirm it exits `0` without a transport diagnostic.
12
+ - Run a command that exits `7` and confirm devrouter returns `7` without a transport diagnostic.
13
+ - Write a line to command stderr and confirm that line remains visible.
14
+
15
+ Report template:
16
+
17
+ - CLI/config version: `0.0.33`
18
+ - Successful exec: `<exit status and stderr>`
19
+ - Non-zero exec: `<exit status and stderr>`
20
+ - Real command stderr: `<preserved or failure details>`
21
+ - Remaining blockers: `<none or details>`