diff --git a/.changeset/fix-cli-context-drop-stale-partial.md b/.changeset/fix-cli-context-drop-stale-partial.md deleted file mode 100644 index ab9f41dd350..00000000000 --- a/.changeset/fix-cli-context-drop-stale-partial.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@kilocode/cli": patch ---- - -Fix CLI context drops caused by stale partial updates overwriting completed messages - -When delayed IPC messages with `partial=true` arrived after a message had already been completed (`partial=false`), the stale update would overwrite the completed message, causing context loss. This fix adds a check to prevent partial updates from reverting completed messages back to partial state. diff --git a/.changeset/fix-terminal-remote-sessions.md b/.changeset/fix-terminal-remote-sessions.md deleted file mode 100644 index 4368f6c5b17..00000000000 --- a/.changeset/fix-terminal-remote-sessions.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"kilo-code": patch ---- - -Fix terminal button showing "Session not found" for remote sessions in Agent Manager diff --git a/.changeset/little-wombats-attack.md b/.changeset/little-wombats-attack.md deleted file mode 100644 index d090be3bf28..00000000000 --- a/.changeset/little-wombats-attack.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"kilo-code": patch ---- - -Add AI Attribution line tracking to the EditFileTool diff --git a/.changeset/task-diff-stats-display.md b/.changeset/task-diff-stats-display.md deleted file mode 100644 index a8f93e2c305..00000000000 --- a/.changeset/task-diff-stats-display.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"kilo-code": patch ---- - -Add GitHub-style diff stats display to task header showing lines added/removed in real-time diff --git a/CHANGELOG.md b/CHANGELOG.md index 988da9e141b..2c2cef7aab6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # kilo-code +## 4.149.1 + +### Patch Changes + +- [#5208](https://github.com/Kilo-Org/kilocode/pull/5208) [`f770cec`](https://github.com/Kilo-Org/kilocode/commit/f770cecf01d037ed9da31114603940f2a66a145a) Thanks [@marius-kilocode](https://github.com/marius-kilocode)! - Fix terminal button showing "Session not found" for remote sessions in Agent Manager + +- [#5213](https://github.com/Kilo-Org/kilocode/pull/5213) [`553fc58`](https://github.com/Kilo-Org/kilocode/commit/553fc58293a73b62793ca9e05921bf6e413e0c85) Thanks [@jrf0110](https://github.com/jrf0110)! - Add AI Attribution line tracking to the EditFileTool + +- [#5044](https://github.com/Kilo-Org/kilocode/pull/5044) [`2ee6e82`](https://github.com/Kilo-Org/kilocode/commit/2ee6e822b6d7fabb2d136dd03117c469b00ee51d) Thanks [@jrf0110](https://github.com/jrf0110)! - Add GitHub-style diff stats display to task header showing lines added/removed in real-time + ## 4.149.0 ### Minor Changes diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index a4d467e31f1..54ee1416c32 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -1,5 +1,13 @@ # @kilocode/cli +## 0.24.1 + +### Patch Changes + +- [#5212](https://github.com/Kilo-Org/kilocode/pull/5212) [`66f2f22`](https://github.com/Kilo-Org/kilocode/commit/66f2f22f1f162d26ccecd31f23124f9dc869cf68) Thanks [@marius-kilocode](https://github.com/marius-kilocode)! - Fix CLI context drops caused by stale partial updates overwriting completed messages + + When delayed IPC messages with `partial=true` arrived after a message had already been completed (`partial=false`), the stale update would overwrite the completed message, causing context loss. This fix adds a check to prevent partial updates from reverting completed messages back to partial state. + ## 0.24.0 ### Minor Changes diff --git a/cli/package.dist.json b/cli/package.dist.json index 0aa8426de0d..3df1450239d 100644 --- a/cli/package.dist.json +++ b/cli/package.dist.json @@ -1,6 +1,6 @@ { "name": "@kilocode/cli", - "version": "0.24.0", + "version": "0.24.1", "description": "Terminal User Interface for Kilo Code", "type": "module", "main": "index.js", diff --git a/cli/package.json b/cli/package.json index 55bbcf60d62..f01eb1b205a 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@kilocode/cli", - "version": "0.24.0", + "version": "0.24.1", "description": "Terminal User Interface for Kilo Code", "type": "module", "main": "dist/index.js", diff --git a/src/package.json b/src/package.json index 74e38f08584..01c725236a8 100644 --- a/src/package.json +++ b/src/package.json @@ -3,7 +3,7 @@ "displayName": "%extension.displayName%", "description": "%extension.description%", "publisher": "kilocode", - "version": "4.149.0", + "version": "4.149.1", "icon": "assets/icons/logo-outline-black.png", "galleryBanner": { "color": "#FFFFFF",