opencode-plugin-flow 7.0.0 → 7.0.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 +28 -0
- package/README.md +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,34 @@ One short entry per release, written for users deciding whether to upgrade.
|
|
|
6
6
|
|
|
7
7
|
No changes yet.
|
|
8
8
|
|
|
9
|
+
## [7.0.1] - 2026-07-27
|
|
10
|
+
|
|
11
|
+
Dependency currency, with one bump that changes what is actually tested:
|
|
12
|
+
|
|
13
|
+
- The pinned OpenCode host moves from 1.18.3 to 1.18.6. Flow's peer range has
|
|
14
|
+
always admitted it (`>=1.18.3 <2`), so anyone running a 1.18.4-1.18.6 host was
|
|
15
|
+
installing against a version no check here had launched. That pin is also the
|
|
16
|
+
host `bun run smoke:live` starts, so 7.0.1 is the first release whose live
|
|
17
|
+
smoke ran on 1.18.6.
|
|
18
|
+
- Build-time only: `@biomejs/biome` 2.5.5, `@types/node` 26.1.1 (with the
|
|
19
|
+
repo-wide `overrides` entry moved with it), and `actions/checkout` v7.0.1
|
|
20
|
+
across all seven pinned workflow references. None of these reach the published
|
|
21
|
+
package.
|
|
22
|
+
- `.github/dependabot.yml` referred maintainers to compatibility checks
|
|
23
|
+
"described in docs/development.md" that were never written there. They are now,
|
|
24
|
+
including why the peer range must not admit a host no check has launched.
|
|
25
|
+
|
|
26
|
+
No runtime source changed. The Session v5 schema, every durable document, and
|
|
27
|
+
Flow's behaviour are identical to 7.0.0; upgrade only if you run an OpenCode
|
|
28
|
+
host newer than 1.18.3 and would rather it be one Flow has been smoke-tested
|
|
29
|
+
against.
|
|
30
|
+
|
|
31
|
+
Install or update:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
opencode plugin opencode-plugin-flow@7.0.1 --global --force
|
|
35
|
+
```
|
|
36
|
+
|
|
9
37
|
## [7.0.0] - 2026-07-27
|
|
10
38
|
|
|
11
39
|
A `broad` validation claim now has to be one, and the two review-finding fields
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ context change, or a lost transcript.
|
|
|
20
20
|
Install the exact npm release through OpenCode:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
opencode plugin opencode-plugin-flow@7.0.
|
|
23
|
+
opencode plugin opencode-plugin-flow@7.0.1 --global --force
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
Omit `--global` for project scope. Version pins are exact and never update on
|
|
@@ -31,7 +31,7 @@ The equivalent manual project configuration is:
|
|
|
31
31
|
```json
|
|
32
32
|
{
|
|
33
33
|
"$schema": "https://opencode.ai/config.json",
|
|
34
|
-
"plugin": ["opencode-plugin-flow@7.0.
|
|
34
|
+
"plugin": ["opencode-plugin-flow@7.0.1"]
|
|
35
35
|
}
|
|
36
36
|
```
|
|
37
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-plugin-flow",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.1",
|
|
4
4
|
"description": "Small durable planning, validation, and review workflow for OpenCode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
"zod": "4.4.3"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@biomejs/biome": "2.5.
|
|
65
|
-
"@opencode-ai/plugin": "1.18.
|
|
64
|
+
"@biomejs/biome": "2.5.5",
|
|
65
|
+
"@opencode-ai/plugin": "1.18.6",
|
|
66
66
|
"@types/bun": "1.3.14",
|
|
67
|
-
"@types/node": "
|
|
67
|
+
"@types/node": "26.1.1",
|
|
68
68
|
"typescript": "7.0.2"
|
|
69
69
|
},
|
|
70
70
|
"overrides": {
|
|
71
|
-
"@types/node": "
|
|
71
|
+
"@types/node": "26.1.1"
|
|
72
72
|
}
|
|
73
73
|
}
|