opencode-plugin-flow 5.3.0 → 5.3.1
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 +11 -0
- package/README.md +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
One short entry per release, written for users deciding whether to upgrade.
|
|
4
4
|
|
|
5
|
+
## [5.3.1] - 2026-07-20
|
|
6
|
+
|
|
7
|
+
Windows validation lore keeps the single-version harness release portable:
|
|
8
|
+
|
|
9
|
+
- Activation's symbolic-link safety test now unlinks the link itself with the
|
|
10
|
+
cross-platform filesystem primitive instead of asking Bun to recursively
|
|
11
|
+
remove a Windows directory link.
|
|
12
|
+
- The persistence integration test that exercises four pinned-helper closure
|
|
13
|
+
paths now has an explicit 30-second budget, matching the existing
|
|
14
|
+
process-spawning integration gates without weakening production timeouts.
|
|
15
|
+
|
|
5
16
|
## [5.3.0] - 2026-07-20
|
|
6
17
|
|
|
7
18
|
Single-version harness lore makes the installed package, runtime authority,
|
package/README.md
CHANGED
|
@@ -18,22 +18,22 @@ current product or contributor contract.
|
|
|
18
18
|
## Quick start
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
npx -y opencode-plugin-flow@5.3.
|
|
21
|
+
npx -y opencode-plugin-flow@5.3.1 activation-apply \
|
|
22
22
|
--project "$PWD" --scope global
|
|
23
|
-
npx -y opencode-plugin-flow@5.3.
|
|
23
|
+
npx -y opencode-plugin-flow@5.3.1 activation-apply \
|
|
24
24
|
--project "$PWD" --scope global --apply
|
|
25
|
-
npx -y opencode-plugin-flow@5.3.
|
|
25
|
+
npx -y opencode-plugin-flow@5.3.1 activation-check --project "$PWD"
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
The first command is a read-only plan. Review it before running the second;
|
|
29
|
-
the final check must report exactly one active `opencode-plugin-flow@5.3.
|
|
29
|
+
the final check must report exactly one active `opencode-plugin-flow@5.3.1`
|
|
30
30
|
source and no proven inactive Flow cache artifacts. Use `--scope project` when
|
|
31
31
|
the one canonical pin should live with the project instead of in global config.
|
|
32
32
|
Flow refuses ambiguous local wrappers, cache entries, unsafe links, and config
|
|
33
33
|
it cannot change conservatively rather than guessing which copy is authoritative.
|
|
34
34
|
|
|
35
35
|
To select npm's current release instead of this release-pinned example, replace
|
|
36
|
-
`@5.3.
|
|
36
|
+
`@5.3.1` with `@latest` on the `npx` invocations; do not pass
|
|
37
37
|
`--target latest`. The fetched CLI resolves its own embedded exact version and
|
|
38
38
|
converges every mutable Flow activation to that one pin, so latest replaces an
|
|
39
39
|
older active version rather than loading beside it.
|
|
@@ -311,7 +311,7 @@ fail-closed runtime leadership.
|
|
|
311
311
|
To preview recoverable migration of pristine v4 global skill folders:
|
|
312
312
|
|
|
313
313
|
```bash
|
|
314
|
-
npx -y opencode-plugin-flow@5.3.
|
|
314
|
+
npx -y opencode-plugin-flow@5.3.1 legacy-cleanup --dry-run
|
|
315
315
|
```
|
|
316
316
|
|
|
317
317
|
## Development
|