@devrouter/cli 0.0.52 → 0.0.54
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/bin/devrouter-process +87 -0
- package/dist/devrouter.js +1412 -977
- package/package.json +1 -1
- package/upgrade-prompts/0.0.53.md +42 -0
- package/upgrade-prompts/0.0.54.md +26 -0
package/package.json
CHANGED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Upgrade to devrouter 0.0.53
|
|
2
|
+
|
|
3
|
+
Managed process adapters can prepare dependencies synchronously before launching
|
|
4
|
+
the background application. Exact managed Devsy stop can finish retained service
|
|
5
|
+
shutdown after the primary has stopped.
|
|
6
|
+
|
|
7
|
+
## Task
|
|
8
|
+
|
|
9
|
+
1. Install the published CLI with `npm install -g @devrouter/cli@0.0.53` and
|
|
10
|
+
verify `devrouter-process --help` advertises `--prepare-command`.
|
|
11
|
+
2. Bump `devrouter.version` in the consumer `.devrouter.yml` to `0.0.53` when
|
|
12
|
+
updating that repository's release pin. No schema migration is required.
|
|
13
|
+
3. If dependency preparation currently consumes application readiness time,
|
|
14
|
+
adapt the repository-owned managed adapter to call
|
|
15
|
+
`devrouter-process ensure --prepare-command <command>` before its application
|
|
16
|
+
command. Keep preparation in the foreground; do not daemonize or detach.
|
|
17
|
+
Unchanged owned processes skip preparation. Explicit fingerprints remain
|
|
18
|
+
caller-owned and must encode any required preparation identity.
|
|
19
|
+
4. For an approved retained-runtime recovery, preserve required Compose
|
|
20
|
+
interpolation settings and use `devrouter stop <checkout>`. A stopped primary
|
|
21
|
+
is not sufficient shutdown evidence: require every project container stopped
|
|
22
|
+
and zero checkout routes before guarded `ensure --repair`.
|
|
23
|
+
|
|
24
|
+
## Validation
|
|
25
|
+
|
|
26
|
+
Verify installed/configured versions with `devrouter -V --repo <checkout>`.
|
|
27
|
+
Check preparation failure/cancellation, warm reuse, application readiness and
|
|
28
|
+
exact shutdown for the affected consumer. Preparation must finish before its
|
|
29
|
+
readiness deadline begins.
|
|
30
|
+
|
|
31
|
+
Stop validates ownership, configuration and complete container membership on
|
|
32
|
+
every mutation boundary. Changed, missing or unreadable evidence blocks cleanup.
|
|
33
|
+
An original provider failure is still reported after successful residual service
|
|
34
|
+
cleanup; inspect fresh state before choosing another operation. No containers,
|
|
35
|
+
volumes or runtime data are deleted. Repair retains its unchanged-configuration
|
|
36
|
+
guard and never creates missing resources or invokes provider bootstrap.
|
|
37
|
+
|
|
38
|
+
## Report
|
|
39
|
+
|
|
40
|
+
Report installed/configured versions, exact checkout and retained profile,
|
|
41
|
+
preparation and readiness outcomes, all-container shutdown proof, route count,
|
|
42
|
+
and remaining blockers. Installing the package alone is not live recovery proof.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Upgrade to devrouter 0.0.54
|
|
2
|
+
|
|
3
|
+
Retained configuration verification now resolves service `env_file` values before
|
|
4
|
+
computing Compose hashes. This corrects false drift with affected Compose
|
|
5
|
+
versions without relaxing ownership, file membership or container checks.
|
|
6
|
+
|
|
7
|
+
## Task
|
|
8
|
+
|
|
9
|
+
Install the published `@devrouter/cli@0.0.54` package and update the consumer's
|
|
10
|
+
`devrouter.version` pin when adopting this release. No schema migration or
|
|
11
|
+
generated configuration rewrite is required.
|
|
12
|
+
|
|
13
|
+
## Validation
|
|
14
|
+
|
|
15
|
+
For an approved exact runtime recovery, preserve the original Compose
|
|
16
|
+
interpolation settings and use canonical stop and guarded repair. Real
|
|
17
|
+
configuration changes and missing retained resources still block recovery.
|
|
18
|
+
Never persist or print a resolved Compose model: it may contain credentials.
|
|
19
|
+
Require complete retained-container shutdown, zero exact routes and separate
|
|
20
|
+
application readiness proof. Adapter side effects retain their own approval
|
|
21
|
+
boundaries; this release does not authorize cache deletion or data changes.
|
|
22
|
+
|
|
23
|
+
## Report
|
|
24
|
+
|
|
25
|
+
Report installed/configured versions, exact checkout/profile, command outcome,
|
|
26
|
+
container and route state, application proof and remaining blockers.
|