From 18ac739fb7544deffb6c38635e79b0b10685e2a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 18 Jan 2026 10:35:37 +0000 Subject: [PATCH] changeset version bump --- .changeset/cli-continue-reliability.md | 5 ----- .changeset/cli-image-text-paste-loader.md | 10 ---------- cli/CHANGELOG.md | 13 +++++++++++++ cli/package.dist.json | 2 +- cli/package.json | 2 +- 5 files changed, 15 insertions(+), 17 deletions(-) delete mode 100644 .changeset/cli-continue-reliability.md delete mode 100644 .changeset/cli-image-text-paste-loader.md diff --git a/.changeset/cli-continue-reliability.md b/.changeset/cli-continue-reliability.md deleted file mode 100644 index 1c2f4086752..00000000000 --- a/.changeset/cli-continue-reliability.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@kilocode/cli": patch ---- - -Improve --continue flag reliability by replacing fixed 2-second timeout with Promise-based response handling diff --git a/.changeset/cli-image-text-paste-loader.md b/.changeset/cli-image-text-paste-loader.md deleted file mode 100644 index 28beedc1c4e..00000000000 --- a/.changeset/cli-image-text-paste-loader.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@kilocode/cli": patch ---- - -Fix missing visual feedback and input blocking during paste operations - -- Display "Pasting image..." loader when pasting images via Cmd+V/Ctrl+V -- Display "Pasting text..." loader when pasting large text (10+ lines) -- Block keyboard input during paste operations to prevent concurrent writes -- Support multiple concurrent paste operations with counter-based tracking diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 32014a4035d..96257736f58 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -1,5 +1,18 @@ # @kilocode/cli +## 0.23.2 + +### Patch Changes + +- [#5141](https://github.com/Kilo-Org/kilocode/pull/5141) [`37a489c`](https://github.com/Kilo-Org/kilocode/commit/37a489c8640afea57384f030c6fd0be7bd58c130) Thanks [@PeterDaveHello](https://github.com/PeterDaveHello)! - Improve --continue flag reliability by replacing fixed 2-second timeout with Promise-based response handling + +- [#5171](https://github.com/Kilo-Org/kilocode/pull/5171) [`49b82ea`](https://github.com/Kilo-Org/kilocode/commit/49b82ea281bf7166c2d1cc830a1e5df909a5fb76) Thanks [@Drilmo](https://github.com/Drilmo)! - Fix missing visual feedback and input blocking during paste operations + + - Display "Pasting image..." loader when pasting images via Cmd+V/Ctrl+V + - Display "Pasting text..." loader when pasting large text (10+ lines) + - Block keyboard input during paste operations to prevent concurrent writes + - Support multiple concurrent paste operations with counter-based tracking + ## 0.23.1 ### Patch Changes diff --git a/cli/package.dist.json b/cli/package.dist.json index 137fcd3adb2..2ef9f5b8323 100644 --- a/cli/package.dist.json +++ b/cli/package.dist.json @@ -1,6 +1,6 @@ { "name": "@kilocode/cli", - "version": "0.23.1", + "version": "0.23.2", "description": "Terminal User Interface for Kilo Code", "type": "module", "main": "index.js", diff --git a/cli/package.json b/cli/package.json index 6f4618c82a9..07c6349961f 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@kilocode/cli", - "version": "0.23.1", + "version": "0.23.2", "description": "Terminal User Interface for Kilo Code", "type": "module", "main": "dist/index.js",