opencode-plugin-flow 5.3.2 → 5.3.3
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/CHANGELOG.md +16 -0
- package/README.md +4 -4
- package/dist/cli.js +3 -3
- package/dist/cli.js.map +4 -4
- package/dist/index.js +49 -18
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
One short entry per release, written for users deciding whether to upgrade.
|
|
4
4
|
|
|
5
|
+
## [5.3.3] - 2026-07-20
|
|
6
|
+
|
|
7
|
+
Project-scoped runtime leadership lore restores global Flow activation in the
|
|
8
|
+
OpenCode desktop app without weakening duplicate-version safety:
|
|
9
|
+
|
|
10
|
+
- One exact globally installed Flow version may initialize independently for
|
|
11
|
+
every open project. Those legitimate project instances no longer disable one
|
|
12
|
+
another.
|
|
13
|
+
- Duplicate Flow copies or versions within the same project context still fail
|
|
14
|
+
closed, while unrelated projects remain operational.
|
|
15
|
+
- Scoped registrations retain the existing shared registry envelope so an
|
|
16
|
+
unscoped older runtime remains a conservative conflict during upgrades.
|
|
17
|
+
- Unit and composed-plugin regressions cover eleven simultaneous projects,
|
|
18
|
+
isolated same-project conflicts, cleanup, capacity, and older-runtime
|
|
19
|
+
compatibility; package and pinned OpenCode smoke remain release gates.
|
|
20
|
+
|
|
5
21
|
## [5.3.2] - 2026-07-20
|
|
6
22
|
|
|
7
23
|
Crash-safe single-version installation lore makes upgrading converge on the
|
package/README.md
CHANGED
|
@@ -312,14 +312,14 @@ If an applied multi-source change fails, Flow attempts exact safe rollback and
|
|
|
312
312
|
records either `rolled-back` or `rollback-failed` in the recovery journal;
|
|
313
313
|
concurrent or unsafe state is preserved for manual recovery. Remote and
|
|
314
314
|
managed-preference sources that cannot be decoded offline remain covered by
|
|
315
|
-
fail-closed runtime leadership
|
|
316
|
-
journals before planning: pre-commit work is
|
|
317
|
-
removal work finishes verified deletion.
|
|
315
|
+
fail-closed runtime leadership within each OpenCode project context. A later
|
|
316
|
+
install reconciles interrupted v2 journals before planning: pre-commit work is
|
|
317
|
+
rolled back, while committed removal work finishes verified deletion.
|
|
318
318
|
|
|
319
319
|
To preview recoverable migration of pristine v4 global skill folders:
|
|
320
320
|
|
|
321
321
|
```bash
|
|
322
|
-
npx -y opencode-plugin-flow@5.3.
|
|
322
|
+
npx -y opencode-plugin-flow@5.3.3 legacy-cleanup --dry-run
|
|
323
323
|
```
|
|
324
324
|
|
|
325
325
|
## Development
|
package/dist/cli.js
CHANGED
|
@@ -1022,7 +1022,7 @@ async function activationLimitations(paths) {
|
|
|
1022
1022
|
source: "remote-config",
|
|
1023
1023
|
coverage: "runtime-leadership",
|
|
1024
1024
|
blocking: false,
|
|
1025
|
-
detail: "Authenticated .well-known and organization API configs cannot be inspected offline; Flow runtime leadership detects duplicate loaded versions and fails closed."
|
|
1025
|
+
detail: "Authenticated .well-known and organization API configs cannot be inspected offline; Flow runtime leadership detects duplicate loaded versions within each OpenCode project context and fails closed there."
|
|
1026
1026
|
}
|
|
1027
1027
|
];
|
|
1028
1028
|
if (paths.managedPreferencePaths.length > 0) {
|
|
@@ -1039,7 +1039,7 @@ async function activationLimitations(paths) {
|
|
|
1039
1039
|
source: "managed-preferences",
|
|
1040
1040
|
coverage: "runtime-leadership",
|
|
1041
1041
|
blocking: false,
|
|
1042
|
-
detail: detected.length > 0 ? `Detected managed preference source(s) ${detected.join(", ")}; plist/MDM plugin values are not decoded by this dependency-free preflight, and runtime leadership fails closed on duplicates.` : "macOS MDM preferences may add runtime config outside readable JSON/JSONC files; Flow runtime leadership fails closed on duplicate loaded versions."
|
|
1042
|
+
detail: detected.length > 0 ? `Detected managed preference source(s) ${detected.join(", ")}; plist/MDM plugin values are not decoded by this dependency-free preflight, and runtime leadership fails closed on same-project duplicates.` : "macOS MDM preferences may add runtime config outside readable JSON/JSONC files; Flow runtime leadership fails closed on duplicate loaded versions within each OpenCode project context."
|
|
1043
1043
|
});
|
|
1044
1044
|
}
|
|
1045
1045
|
return limitations;
|
|
@@ -2922,4 +2922,4 @@ main(process.argv).catch((error) => {
|
|
|
2922
2922
|
process.exitCode = 1;
|
|
2923
2923
|
});
|
|
2924
2924
|
|
|
2925
|
-
//# debugId=
|
|
2925
|
+
//# debugId=8E9D5A34AAD016F364756E2164756E21
|