@devrouter/cli 0.0.23 → 0.0.25

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,7 +1,9 @@
1
1
  {
2
2
  "name": "@devrouter/cli",
3
- "version": "0.0.23",
4
- "description": "Local dev routing CLI with shared Traefik on macOS",
3
+ "version": "0.0.25",
4
+ "description": "Local dev routing CLI with shared Traefik reverse proxy",
5
+ "author": "Roland Schlaefli",
6
+ "homepage": "https://github.com/rschlaefli/devrouter#readme",
5
7
  "license": "MIT",
6
8
  "repository": {
7
9
  "type": "git",
@@ -16,7 +18,7 @@
16
18
  "node": ">=24"
17
19
  },
18
20
  "bin": {
19
- "dev": "dist/dev.js"
21
+ "devrouter": "dist/devrouter.js"
20
22
  },
21
23
  "dependencies": {
22
24
  "commander": "^12.1.0",
@@ -43,7 +45,7 @@
43
45
  "test:watch": "vitest",
44
46
  "routing:smoke": "./scripts/smoke-routing.sh",
45
47
  "devcontainer:smoke": "./scripts/smoke-devcontainer.sh",
46
- "bench:startup": "zsh -lc 'set -euo pipefail; echo \"=== dev --help (x5) ===\"; for i in {1..5}; do /usr/bin/time -p node dist/dev.js --help >/dev/null; done; echo \"=== dev app add --help (x5) ===\"; for i in {1..5}; do /usr/bin/time -p node dist/dev.js app add --help >/dev/null; done; echo \"=== dev status --json (x3, best effort) ===\"; for i in {1..3}; do /usr/bin/time -p node dist/dev.js status --json >/dev/null || true; done'",
48
+ "bench:startup": "zsh -lc 'set -euo pipefail; echo \"=== dev --help (x5) ===\"; for i in {1..5}; do /usr/bin/time -p node dist/devrouter.js --help >/dev/null; done; echo \"=== dev app add --help (x5) ===\"; for i in {1..5}; do /usr/bin/time -p node dist/devrouter.js app add --help >/dev/null; done; echo \"=== dev status --json (x3, best effort) ===\"; for i in {1..3}; do /usr/bin/time -p node dist/devrouter.js status --json >/dev/null || true; done'",
47
49
  "typecheck": "tsc --noEmit",
48
50
  "bootstrap": "pnpm install && pnpm install:local",
49
51
  "install:local": "pnpm build && ./scripts/install-local.sh",
@@ -0,0 +1,10 @@
1
+ You are upgrading a repository that uses devrouter to version 0.0.24.
2
+
3
+ Changes in this release:
4
+ - Automatically inject `DEVCONTAINER_COMPOSE_OVERLAY` environment variable to workspace execution contexts when active.
5
+
6
+ Task:
7
+ 1) Bump `.devrouter.yml` `devrouter.version` to `0.0.24`.
8
+
9
+ Validation:
10
+ - `devrouter -V --repo <repo>` shows `0.0.24` as the local repo version.
@@ -0,0 +1,20 @@
1
+ You are upgrading a repository that uses devrouter to version 0.0.25.
2
+
3
+ Changes in this release:
4
+ - Removed all Linear workflow integrations, templates, and flags (`--with-linear`).
5
+ - Added real-time outdated CLI detection. When a repository config `.devrouter.yml` requires a version newer than the installed CLI version, devrouter prints a stderr warning on config load.
6
+ - Added a diagnostic check `repo.cli-outdated` in `devrouter doctor` to flag when the installed CLI is older than the required version.
7
+ - Cleaned up leftover `dev` / `dist/dev.js` CLI commands references in validation scripts and workspace examples.
8
+
9
+ Task:
10
+ 1) Bump `.devrouter.yml` `devrouter.version` to `0.0.25`.
11
+ 2) Refresh discoverability artifacts with `devrouter repo agents --repo <repo>`.
12
+
13
+ Validation:
14
+ - `devrouter -V --repo <repo>` shows `0.0.25` as the local repo version.
15
+ - `devrouter doctor --repo <repo>` runs successfully and reports no `repo.cli-outdated` errors if the installed CLI version is compatible.
16
+
17
+ Report:
18
+ - `.devrouter.yml` `devrouter.version` before and after
19
+ - setup, doctor, and devcontainer verification results
20
+ - unresolved risks or manual follow-ups