diff --git a/.changeset/http-proxy-support.md b/.changeset/http-proxy-support.md deleted file mode 100644 index 698f6a584..000000000 --- a/.changeset/http-proxy-support.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@moonshot-ai/agent-core": minor -"@moonshot-ai/kimi-code-sdk": minor -"@moonshot-ai/kimi-code": minor ---- - -Honor the standard `HTTP_PROXY` / `HTTPS_PROXY` / `ALL_PROXY` / `NO_PROXY` environment variables, including SOCKS proxies, for all outbound traffic. diff --git a/.changeset/remove-compaction-turn-limit.md b/.changeset/remove-compaction-turn-limit.md deleted file mode 100644 index eda427900..000000000 --- a/.changeset/remove-compaction-turn-limit.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@moonshot-ai/agent-core": patch -"@moonshot-ai/kimi-code": patch ---- - -Remove the per-turn auto-compaction limit so long conversations can keep compacting instead of failing early. diff --git a/.changeset/show-migration-failure-reason.md b/.changeset/show-migration-failure-reason.md deleted file mode 100644 index 2a09c1b56..000000000 --- a/.changeset/show-migration-failure-reason.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@moonshot-ai/kimi-code": patch ---- - -Show the underlying error when migration fails. diff --git a/apps/kimi-code/CHANGELOG.md b/apps/kimi-code/CHANGELOG.md index 6d6587b35..68e67dfbd 100644 --- a/apps/kimi-code/CHANGELOG.md +++ b/apps/kimi-code/CHANGELOG.md @@ -1,5 +1,17 @@ # @moonshot-ai/kimi-code +## 0.12.0 + +### Minor Changes + +- [#487](https://github.com/MoonshotAI/kimi-code/pull/487) [`4d11394`](https://github.com/MoonshotAI/kimi-code/commit/4d113949c8e906c20c7188817926f44786653923) - Honor the standard `HTTP_PROXY` / `HTTPS_PROXY` / `ALL_PROXY` / `NO_PROXY` environment variables, including SOCKS proxies, for all outbound traffic. + +### Patch Changes + +- [#506](https://github.com/MoonshotAI/kimi-code/pull/506) [`f09ec7b`](https://github.com/MoonshotAI/kimi-code/commit/f09ec7bbb59af42805a93df2993301dbd317ff2d) - Remove the per-turn auto-compaction limit so long conversations can keep compacting instead of failing early. + +- [#210](https://github.com/MoonshotAI/kimi-code/pull/210) [`d995928`](https://github.com/MoonshotAI/kimi-code/commit/d995928681fa2446902a0164919cf893b81efd75) - Show the underlying error when migration fails. + ## 0.11.0 ### Minor Changes diff --git a/apps/kimi-code/package.json b/apps/kimi-code/package.json index eca7f97eb..261283ed6 100644 --- a/apps/kimi-code/package.json +++ b/apps/kimi-code/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/kimi-code", - "version": "0.11.0", + "version": "0.12.0", "description": "The Starting Point for Next-Gen Agents", "license": "MIT", "author": "Moonshot AI", diff --git a/packages/acp-adapter/CHANGELOG.md b/packages/acp-adapter/CHANGELOG.md index 03028460a..2fb436d14 100644 --- a/packages/acp-adapter/CHANGELOG.md +++ b/packages/acp-adapter/CHANGELOG.md @@ -1,5 +1,13 @@ # @moonshot-ai/acp-adapter +## 0.2.3 + +### Patch Changes + +- Updated dependencies [[`4d11394`](https://github.com/MoonshotAI/kimi-code/commit/4d113949c8e906c20c7188817926f44786653923), [`f09ec7b`](https://github.com/MoonshotAI/kimi-code/commit/f09ec7bbb59af42805a93df2993301dbd317ff2d)]: + - @moonshot-ai/agent-core@0.11.0 + - @moonshot-ai/kimi-code-sdk@0.9.0 + ## 0.2.2 ### Patch Changes diff --git a/packages/acp-adapter/package.json b/packages/acp-adapter/package.json index ef73302b3..8a581e66f 100644 --- a/packages/acp-adapter/package.json +++ b/packages/acp-adapter/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/acp-adapter", - "version": "0.2.2", + "version": "0.2.3", "private": true, "description": "Agent Client Protocol adapter for kimi-code", "license": "MIT", diff --git a/packages/agent-core/CHANGELOG.md b/packages/agent-core/CHANGELOG.md index e44a167f5..e9b2a7fad 100644 --- a/packages/agent-core/CHANGELOG.md +++ b/packages/agent-core/CHANGELOG.md @@ -1,5 +1,15 @@ # @moonshot-ai/agent-core +## 0.11.0 + +### Minor Changes + +- [#487](https://github.com/MoonshotAI/kimi-code/pull/487) [`4d11394`](https://github.com/MoonshotAI/kimi-code/commit/4d113949c8e906c20c7188817926f44786653923) - Honor the standard `HTTP_PROXY` / `HTTPS_PROXY` / `ALL_PROXY` / `NO_PROXY` environment variables, including SOCKS proxies, for all outbound traffic. + +### Patch Changes + +- [#506](https://github.com/MoonshotAI/kimi-code/pull/506) [`f09ec7b`](https://github.com/MoonshotAI/kimi-code/commit/f09ec7bbb59af42805a93df2993301dbd317ff2d) - Remove the per-turn auto-compaction limit so long conversations can keep compacting instead of failing early. + ## 0.10.0 ### Minor Changes diff --git a/packages/agent-core/package.json b/packages/agent-core/package.json index 16eeb44e5..80f96c813 100644 --- a/packages/agent-core/package.json +++ b/packages/agent-core/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/agent-core", - "version": "0.10.0", + "version": "0.11.0", "private": true, "description": "The unified agent engine for Kimi", "license": "MIT", diff --git a/packages/migration-legacy/CHANGELOG.md b/packages/migration-legacy/CHANGELOG.md index 9f2f7cb61..9d0fb2104 100644 --- a/packages/migration-legacy/CHANGELOG.md +++ b/packages/migration-legacy/CHANGELOG.md @@ -1,5 +1,12 @@ # @moonshot-ai/migration-legacy +## 0.1.11 + +### Patch Changes + +- Updated dependencies [[`4d11394`](https://github.com/MoonshotAI/kimi-code/commit/4d113949c8e906c20c7188817926f44786653923), [`f09ec7b`](https://github.com/MoonshotAI/kimi-code/commit/f09ec7bbb59af42805a93df2993301dbd317ff2d)]: + - @moonshot-ai/agent-core@0.11.0 + ## 0.1.10 ### Patch Changes diff --git a/packages/migration-legacy/package.json b/packages/migration-legacy/package.json index fad96b7d5..9321a0ee1 100644 --- a/packages/migration-legacy/package.json +++ b/packages/migration-legacy/package.json @@ -1,6 +1,6 @@ { "name": "@moonshot-ai/migration-legacy", - "version": "0.1.10", + "version": "0.1.11", "description": "Migrate kimi-cli (~/.kimi/) data into kimi-code (~/.kimi-code/).", "license": "MIT", "type": "module", diff --git a/packages/node-sdk/CHANGELOG.md b/packages/node-sdk/CHANGELOG.md index 59d4f655b..6a61a25f8 100644 --- a/packages/node-sdk/CHANGELOG.md +++ b/packages/node-sdk/CHANGELOG.md @@ -1,5 +1,11 @@ # @moonshot-ai/kimi-code-sdk +## 0.9.0 + +### Minor Changes + +- [#487](https://github.com/MoonshotAI/kimi-code/pull/487) [`4d11394`](https://github.com/MoonshotAI/kimi-code/commit/4d113949c8e906c20c7188817926f44786653923) - Honor the standard `HTTP_PROXY` / `HTTPS_PROXY` / `ALL_PROXY` / `NO_PROXY` environment variables, including SOCKS proxies, for all outbound traffic. + ## 0.8.0 ### Minor Changes diff --git a/packages/node-sdk/package.json b/packages/node-sdk/package.json index 02656c016..80ce68f87 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.8.0", + "version": "0.9.0", "private": true, "description": "TypeScript SDK for the Kimi Code Agent", "license": "MIT",