opencode-plugin-flow 5.3.2 → 5.3.4

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 CHANGED
@@ -2,6 +2,34 @@
2
2
 
3
3
  One short entry per release, written for users deciding whether to upgrade.
4
4
 
5
+ ## [5.3.4] - 2026-07-20
6
+
7
+ Retry-safe release publishing lore makes partial registry or GitHub outages
8
+ recoverable without moving a tag or weakening package integrity:
9
+
10
+ - A rerun skips an existing npm version only when the registry SHA-512 exactly
11
+ matches the freshly packed tarball; conflicting bytes fail closed.
12
+ - GitHub release metadata is created independently from tarball and checksum
13
+ uploads, so one failed asset no longer rolls back the release transaction.
14
+ - Idempotent release edits and asset uploads use bounded retries, while release
15
+ lookup distinguishes a missing release from an unavailable GitHub API.
16
+
17
+ ## [5.3.3] - 2026-07-20
18
+
19
+ Project-scoped runtime leadership lore restores global Flow activation in the
20
+ OpenCode desktop app without weakening duplicate-version safety:
21
+
22
+ - One exact globally installed Flow version may initialize independently for
23
+ every open project. Those legitimate project instances no longer disable one
24
+ another.
25
+ - Duplicate Flow copies or versions within the same project context still fail
26
+ closed, while unrelated projects remain operational.
27
+ - Scoped registrations retain the existing shared registry envelope so an
28
+ unscoped older runtime remains a conservative conflict during upgrades.
29
+ - Unit and composed-plugin regressions cover eleven simultaneous projects,
30
+ isolated same-project conflicts, cleanup, capacity, and older-runtime
31
+ compatibility; package and pinned OpenCode smoke remain release gates.
32
+
5
33
  ## [5.3.2] - 2026-07-20
6
34
 
7
35
  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. A later install reconciles interrupted v2
316
- journals before planning: pre-commit work is rolled back, while committed
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.2 legacy-cleanup --dry-run
322
+ npx -y opencode-plugin-flow@5.3.4 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=C55B4CE51FD9A58B64756E2164756E21
2925
+ //# debugId=8E9D5A34AAD016F364756E2164756E21