opencode-qoder-bridge 0.1.21 → 0.1.22
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 +2 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,7 @@ 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.22] - 2026-09-20
|
|
8
8
|
|
|
9
9
|
### Added
|
|
10
10
|
|
|
@@ -32,6 +32,7 @@ All notable changes to this project are documented here. The format follows
|
|
|
32
32
|
- Release automation now verifies npm registry visibility after publishing.
|
|
33
33
|
- Added a 100,000-event per-turn SDK stream limit to prevent unbounded memory
|
|
34
34
|
growth from noisy or malformed transports.
|
|
35
|
+
- Added clean-package installation verification to CI and release checks.
|
|
35
36
|
|
|
36
37
|
## [0.1.18] - 2026-09-20
|
|
37
38
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-qoder-bridge",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
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",
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
69
69
|
"test": "npm run build && node --test test/*.test.mjs",
|
|
70
70
|
"test:stress": "npm run build && node --test test/stress.test.mjs",
|
|
71
|
+
"test:package": "npm run build && node --test test/package-install.test.mjs",
|
|
71
72
|
"test:e2e": "npm run build && node --test test/e2e.test.mjs",
|
|
72
73
|
"audit": "npm audit --audit-level=low",
|
|
73
74
|
"check": "npm run typecheck && npm test && npm run audit",
|