@priders/cwindsurf 0.3.0 → 0.4.0

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 CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
  本文档记录 Windsurf++ / cwindsurf 各版本面向用户的重要变化。
4
4
 
5
+ ## 0.4.0 - 2026-07-21
6
+
7
+ ### 修复
8
+
9
+ - 修复网络中断、扩展更新或重启后容易掉登录的问题:本地有效租约会优先保留,不再因临时网络失败被清除。
10
+ - 修复多窗口/多宿主并发刷新许可时,token 轮换竞态导致会话被误清除的问题。
11
+ - 修复设备身份仅保存在 SecretStorage 时,短暂丢失会生成新密钥并废掉现有会话的问题;现会同步备份到本机 `~/.cwindsurf/auth/identity.json`。
12
+ - 修复 OpenAI Responses 流在无 HTTP 状态的服务端内部错误、畸形 SSE JSON 等场景下不会自动重连的问题。
13
+ - 修复后台“在线”把浏览官网也算作在线的问题;现在只统计扩展设备心跳。
14
+
15
+ ### 改进
16
+
17
+ - 流式请求默认最多自动重连 5 次,并支持空闲超时恢复、部分输出续写与去重。
18
+ - 后台在线状态文案明确为“最近 5 分钟内有扩展设备心跳”。
19
+ - 增加登录态保持、token 轮换竞态、SSE 恢复与在线状态的回归测试。
20
+
21
+ ### 兼容性
22
+
23
+ - 登录会话、设备授权与 BYOK 协议保持兼容;升级后无需重新配置 Provider。
24
+ - 建议升级后完全退出并重启 Windsurf/Devin,使新扩展与补丁生效。
25
+ - 支持 macOS、Windows 和 Linux,要求 Node.js 18 或更高版本。
26
+
5
27
  ## 0.3.0 - 2026-07-19
6
28
 
7
29
  ### 修复
@@ -1,12 +1,12 @@
1
1
  {
2
- "package": "@priders/cwindsurf@0.3.0",
2
+ "package": "@priders/cwindsurf@0.4.0",
3
3
  "buildFlavor": "public",
4
- "generatedAt": "2026-07-19T12:50:00.910Z",
4
+ "generatedAt": "2026-07-21T03:55:21.029Z",
5
5
  "algorithm": "sha256",
6
6
  "artifacts": {
7
7
  "dist/cli.js": "2a3e7094ad23d9f16b0c90ccb8d577d8c639125a02b54d1a4e9450a98e41cba1",
8
- "vsix/windsurf2plus-0.3.0.vsix": "8f75012d3df7ce22c1f0ff174a793b80437816e869d0c9f8e770fd2528da5d43",
9
- "extension/dist/extension.js": "786b3ba11a3723219bf91e58280138cb7993703c5d68642493ea889304f3aa0a",
10
- "extension/dist/mitm-proxy-standalone.js": "7e1eb9ec69b1ff59b0d6aa714077392b01dd0fa2ad09c625e43ce30b35445178"
8
+ "vsix/windsurf2plus-0.4.0.vsix": "6a73db0490c0a4e31edf6ca79e567dd84b0598aba096e6162444fd694e6f1435",
9
+ "extension/dist/extension.js": "e13a0b9d4f231b50d80bd99c15f6f5c8dc776c0cbf254cb69900a982fbb537fe",
10
+ "extension/dist/mitm-proxy-standalone.js": "49cfcc63657de8c5b90a2db707698aab89506d8cf1d66b94db2fc5a0c08fe23b"
11
11
  }
12
12
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "algorithm": "Ed25519",
3
3
  "keyId": "372f79a5374f158b",
4
- "signature": "GBhT1pLwXjRQU7GPr/Cahri9/Ya0WH05NgUwcMxZhCAkllFl8YHj/7OYtfEHsWMBBDLmhkD87pEwSDVYinz4BA=="
4
+ "signature": "8XlKZuxsjvIm7FocT/Mx6E6cJQCXArVS31buu5RCGyWuNO+x+LP4bWut9jCST1pIfsodDjkMVajQsu+JCM0dDg=="
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@priders/cwindsurf",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Windsurf/Devin BYOK integration with multi-provider routing, native model selection, tools and usage analytics",
5
5
  "keywords": [
6
6
  "windsurf",
@@ -14,7 +14,7 @@
14
14
  ],
15
15
  "type": "module",
16
16
  "bin": {
17
- "cwindsurf": "./dist/cli.js"
17
+ "cwindsurf": "dist/cli.js"
18
18
  },
19
19
  "files": [
20
20
  "dist/",
Binary file
Binary file