opencode-qoder-bridge 0.1.23 → 0.1.26
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 +34 -2
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,36 @@ All notable changes to this project are documented here. The format follows
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and releases use
|
|
5
5
|
[Semantic Versioning](https://semver.org/).
|
|
6
6
|
|
|
7
|
-
## [0.1.
|
|
7
|
+
## [0.1.26] - 2026-09-26
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Updated direct dependencies to latest stable versions: Qoder Agent SDK
|
|
12
|
+
1.0.50, `@opencode-ai/plugin` 1.18.32, `@ai-sdk/provider` 4.0.18,
|
|
13
|
+
`@opentui/solid` 0.5.12, `solid-js` 1.9.12 (latest checked: 1.9.15,
|
|
14
|
+
temporarily held for the exact OpenTUI peer), `@types/node` 26.6.3,
|
|
15
|
+
`zod` 4.6.5, `jsonc-parser` 3.3.1, and TypeScript 7.0.2.
|
|
16
|
+
- Synchronized the Qoder SDK script-approval entry with version 1.0.50.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Refreshed the lockfile and release metadata for the tested dependency set.
|
|
21
|
+
|
|
22
|
+
### Validation
|
|
23
|
+
|
|
24
|
+
- Typecheck, full check, stress tests, audit, package dry-run, and generated
|
|
25
|
+
output checks passed.
|
|
26
|
+
- Full tests: 154 passed, 0 failed, 2 skipped.
|
|
27
|
+
- Stress tests: 13 passed, 0 failed, 1 skipped.
|
|
28
|
+
- Authenticated Qoder E2E was skipped because credentials were unavailable.
|
|
29
|
+
- Latest OpenTUI declares Node `>=26.4.0` and an exact Solid peer; npm needed
|
|
30
|
+
solid-js 1.9.12 is retained temporarily because the latest
|
|
31
|
+
`@opentui/solid@0.5.12` declares an exact `solid-js@1.9.12` peer. The
|
|
32
|
+
attempted `solid-js@1.9.15` upgrade passed local tests only with
|
|
33
|
+
`--legacy-peer-deps` but failed clean `npm ci` in CI with ERESOLVE; it is held
|
|
34
|
+
until OpenTUI widens that peer range.
|
|
35
|
+
|
|
36
|
+
## [0.1.24] - 2026-09-25
|
|
8
37
|
|
|
9
38
|
### Added
|
|
10
39
|
|
|
@@ -18,6 +47,10 @@ All notable changes to this project are documented here. The format follows
|
|
|
18
47
|
the `qoder_usage` report.
|
|
19
48
|
- Added a CN regression suite (`test/auth-cn.test.mjs`).
|
|
20
49
|
|
|
50
|
+
### Changed
|
|
51
|
+
|
|
52
|
+
- Updated the Qoder Agent SDK dependency to `1.0.50`.
|
|
53
|
+
|
|
21
54
|
### Fixed
|
|
22
55
|
|
|
23
56
|
- Isolated model catalog caches by region/CLI so global and CN installs no
|
|
@@ -114,7 +147,6 @@ All notable changes to this project are documented here. The format follows
|
|
|
114
147
|
- Typecheck and build passed.
|
|
115
148
|
- npm audit: 0 vulnerabilities.
|
|
116
149
|
- Authenticated E2E remains dependent on available Qoder credentials.
|
|
117
|
-
|
|
118
150
|
## [0.1.16] - 2026-09-19
|
|
119
151
|
|
|
120
152
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-qoder-bridge",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.26",
|
|
4
4
|
"description": "Qoder provider plugin for OpenCode powered by the official Qoder Agent SDK, with streaming, tools, MCP, sessions, multimodal input, and quota tracking.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"opencode",
|
|
@@ -76,17 +76,17 @@
|
|
|
76
76
|
"prepublishOnly": "npm run check"
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@opencode-ai/plugin": "1.18.
|
|
80
|
-
"@qoder-ai/qoder-agent-sdk": "
|
|
81
|
-
"jsonc-parser": "
|
|
82
|
-
"zod": "
|
|
79
|
+
"@opencode-ai/plugin": "1.18.32",
|
|
80
|
+
"@qoder-ai/qoder-agent-sdk": "1.0.50",
|
|
81
|
+
"jsonc-parser": "3.3.1",
|
|
82
|
+
"zod": "4.6.5"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@ai-sdk/provider": "
|
|
86
|
-
"@opentui/solid": "0.5.
|
|
87
|
-
"@types/node": "
|
|
85
|
+
"@ai-sdk/provider": "4.0.18",
|
|
86
|
+
"@opentui/solid": "0.5.12",
|
|
87
|
+
"@types/node": "26.6.3",
|
|
88
88
|
"solid-js": "1.9.12",
|
|
89
|
-
"typescript": "
|
|
89
|
+
"typescript": "7.0.2"
|
|
90
90
|
},
|
|
91
91
|
"peerDependencies": {
|
|
92
92
|
"@opentui/solid": ">=0.4.5",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"node": "^22.22.2 || ^24.15.0 || >=26.0.0"
|
|
115
115
|
},
|
|
116
116
|
"allowScripts": {
|
|
117
|
-
"@qoder-ai/qoder-agent-sdk@1.0.
|
|
117
|
+
"@qoder-ai/qoder-agent-sdk@1.0.50": true,
|
|
118
118
|
"msgpackr-extract@3.0.4": true
|
|
119
119
|
},
|
|
120
120
|
"directories": {
|