diff --git a/.changeset/auth-refresh-retry.md b/.changeset/auth-refresh-retry.md deleted file mode 100644 index 8f8e17060..000000000 --- a/.changeset/auth-refresh-retry.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@moonshot-ai/kimi-code-sdk": patch -"@moonshot-ai/kimi-code": patch ---- - -Show the underlying connection error when OAuth token refresh fails after internal retries, instead of prompting for login. Token refresh failures are no longer re-retried at the agent loop level. diff --git a/.changeset/fix-debug-tps-short-streams.md b/.changeset/fix-debug-tps-short-streams.md deleted file mode 100644 index 618a266bb..000000000 --- a/.changeset/fix-debug-tps-short-streams.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": patch ---- - -Skip debug TPS when the output stream is too short to measure reliably. diff --git a/.changeset/resume-turn-id-counter.md b/.changeset/resume-turn-id-counter.md deleted file mode 100644 index bf36cd780..000000000 --- a/.changeset/resume-turn-id-counter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": patch ---- - -Restore the turn counter from persisted loop events on resume so post-resume turns no longer reuse turn ids that already appear in history. diff --git a/.changeset/sdk-api-refactor.md b/.changeset/sdk-api-refactor.md deleted file mode 100644 index dfa78c3d5..000000000 --- a/.changeset/sdk-api-refactor.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code-sdk": patch ---- - -Add host-side config helpers `loadRuntimeConfigSafe` and `resolveConfigPath` for inspecting config without spinning up a full KimiCore. diff --git a/.changeset/server-web-release.md b/.changeset/server-web-release.md deleted file mode 100644 index 540b2e420..000000000 --- a/.changeset/server-web-release.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@moonshot-ai/kimi-code": minor ---- - -Add the server-hosted web UI and the CLI commands that power it: - -- `kimi server` to start, stop, and manage the local server. -- `kimi web` to open the server-hosted web UI in a browser. -- Server REST and WebSocket APIs for the web client. -- Web chat layout, session list, auto-scroll, and related behaviors. diff --git a/.changeset/web-login-workspace-flow.md b/.changeset/web-login-workspace-flow.md deleted file mode 100644 index c22a517c7..000000000 --- a/.changeset/web-login-workspace-flow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": patch ---- - -Fix the web login page and no-workspace conversation startup flow. diff --git a/apps/kimi-code/CHANGELOG.md b/apps/kimi-code/CHANGELOG.md index 1d6fb5fac..f84e51a4d 100644 --- a/apps/kimi-code/CHANGELOG.md +++ b/apps/kimi-code/CHANGELOG.md @@ -1,5 +1,26 @@ # @moonshot-ai/kimi-code +## 0.17.0 + +### Minor Changes + +- [#625](https://github.com/MoonshotAI/kimi-code/pull/625) [`9a8fea5`](https://github.com/MoonshotAI/kimi-code/commit/9a8fea5c85177cd887896108c05ba9e174f28250) - Add the server-hosted web UI and the CLI commands that power it: + + - `kimi server` to start, stop, and manage the local server. + - `kimi web` to open the server-hosted web UI in a browser. + - Server REST and WebSocket APIs for the web client. + - Web chat layout, session list, auto-scroll, and related behaviors. + +### Patch Changes + +- [#838](https://github.com/MoonshotAI/kimi-code/pull/838) [`843a731`](https://github.com/MoonshotAI/kimi-code/commit/843a731097fc18b2e41ab0405b5fbcb6149ba55c) - Show the underlying connection error when OAuth token refresh fails after internal retries, instead of prompting for login. Token refresh failures are no longer re-retried at the agent loop level. + +- [#849](https://github.com/MoonshotAI/kimi-code/pull/849) [`254f946`](https://github.com/MoonshotAI/kimi-code/commit/254f946a506b01df7a559ed63bd8d705e9fa7496) - Skip debug TPS when the output stream is too short to measure reliably. + +- [#833](https://github.com/MoonshotAI/kimi-code/pull/833) [`a71b2e3`](https://github.com/MoonshotAI/kimi-code/commit/a71b2e3123ff8454f725b3d24e8c985608c5c4f9) - Restore the turn counter from persisted loop events on resume so post-resume turns no longer reuse turn ids that already appear in history. + +- [#853](https://github.com/MoonshotAI/kimi-code/pull/853) [`05fe759`](https://github.com/MoonshotAI/kimi-code/commit/05fe7595ab9bac8230fd9f2fe7bdbaaa157ddc9b) - Fix the web login page and no-workspace conversation startup flow. + ## 0.16.0 ### Minor Changes diff --git a/apps/kimi-code/package.json b/apps/kimi-code/package.json index 0305be0e5..8cf1ce64e 100644 --- a/apps/kimi-code/package.json +++ b/apps/kimi-code/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/kimi-code", - "version": "0.16.0", + "version": "0.17.0", "description": "The Starting Point for Next-Gen Agents", "license": "MIT", "author": "Moonshot AI", diff --git a/packages/node-sdk/CHANGELOG.md b/packages/node-sdk/CHANGELOG.md index 32a65d0f3..83835d2f9 100644 --- a/packages/node-sdk/CHANGELOG.md +++ b/packages/node-sdk/CHANGELOG.md @@ -1,5 +1,13 @@ # @moonshot-ai/kimi-code-sdk +## 0.9.4 + +### Patch Changes + +- [#838](https://github.com/MoonshotAI/kimi-code/pull/838) [`843a731`](https://github.com/MoonshotAI/kimi-code/commit/843a731097fc18b2e41ab0405b5fbcb6149ba55c) - Show the underlying connection error when OAuth token refresh fails after internal retries, instead of prompting for login. Token refresh failures are no longer re-retried at the agent loop level. + +- [#625](https://github.com/MoonshotAI/kimi-code/pull/625) [`9a8fea5`](https://github.com/MoonshotAI/kimi-code/commit/9a8fea5c85177cd887896108c05ba9e174f28250) - Add host-side config helpers `loadRuntimeConfigSafe` and `resolveConfigPath` for inspecting config without spinning up a full KimiCore. + ## 0.9.3 ### Patch Changes diff --git a/packages/node-sdk/package.json b/packages/node-sdk/package.json index 1d83cf528..ee96943a5 100644 --- a/packages/node-sdk/package.json +++ b/packages/node-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/kimi-code-sdk", - "version": "0.9.3", + "version": "0.9.4", "private": true, "description": "TypeScript SDK for the Kimi Code Agent", "license": "MIT",