opencode-qoder-bridge 0.1.24 → 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 +29 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,35 @@ 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.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
|
+
|
|
7
36
|
## [0.1.24] - 2026-09-25
|
|
8
37
|
|
|
9
38
|
### Added
|
|
@@ -118,7 +147,6 @@ All notable changes to this project are documented here. The format follows
|
|
|
118
147
|
- Typecheck and build passed.
|
|
119
148
|
- npm audit: 0 vulnerabilities.
|
|
120
149
|
- Authenticated E2E remains dependent on available Qoder credentials.
|
|
121
|
-
|
|
122
150
|
## [0.1.16] - 2026-09-19
|
|
123
151
|
|
|
124
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,8 +114,8 @@
|
|
|
114
114
|
"node": "^22.22.2 || ^24.15.0 || >=26.0.0"
|
|
115
115
|
},
|
|
116
116
|
"allowScripts": {
|
|
117
|
-
"
|
|
118
|
-
"
|
|
117
|
+
"@qoder-ai/qoder-agent-sdk@1.0.50": true,
|
|
118
|
+
"msgpackr-extract@3.0.4": true
|
|
119
119
|
},
|
|
120
120
|
"directories": {
|
|
121
121
|
"test": "test"
|