diff --git a/vscode/CHANGELOG.md b/vscode/CHANGELOG.md index 5075d8983e..62bcadbf93 100644 --- a/vscode/CHANGELOG.md +++ b/vscode/CHANGELOG.md @@ -12,14 +12,24 @@ This is a log of all notable changes to Cody for VS Code. [Unreleased] changes a - `New Chat with File Content`: Opens a new chat with the file content when no existing chat panel is open. - Chat: New optimization for prompt quality and token usage, deduplicating context items, and optimizing token allocation. [pull/3929](https://github.com/sourcegraph/cody/pull/3929) - Document Code/Generate Tests: User selections are now matched against known symbol ranges, and adjusted in cases where a user selection in a suitable subset of one of these ranges. [pull/4031](https://github.com/sourcegraph/cody/pull/4031) -- Edit: Added a maximum timeout to the formatting logic, so the Edit does not appear stuck if the users' formatter takes a particularly long amount of tiem. [pull/4113](https://github.com/sourcegraph/cody/pull/4113) - Extension: Added the `vscode.git` extension to the `extensionDependencies` list. [pull/4110](https://github.com/sourcegraph/cody/pull/4110) ### Fixed - Autocomplete: Handle incomplete Ollama response chunks gracefully. [pull/4066](https://github.com/sourcegraph/cody/pull/4066) - Edit: Improved handling of responses that contain HTML entities. [pull/4085](https://github.com/sourcegraph/cody/pull/4085) -- Edit: Fixes cases where the formatting on an Edit would not respect the editor tab size with certain formatters. [pull/4111](https://github.com/sourcegraph/cody/pull/4111) + +### Changed + +## [1.16.6] + +### Added + +- Edit: Added a maximum timeout to the formatting logic, so the Edit does not appear stuck if the users' formatter takes a particularly long amount of tiem. [pull/4113](https://github.com/sourcegraph/cody/pull/4113) + +### Fixed + +- Edit: Fixed cases where the formatting of an Edit would not respect the editor tab size with certain formatters. [pull/4111](https://github.com/sourcegraph/cody/pull/4111) ### Changed diff --git a/vscode/package.json b/vscode/package.json index 4304300342..2628f41fe5 100644 --- a/vscode/package.json +++ b/vscode/package.json @@ -2,7 +2,7 @@ "name": "cody-ai", "private": true, "displayName": "Cody AI", - "version": "1.16.5", + "version": "1.16.6", "publisher": "sourcegraph", "license": "Apache-2.0", "icon": "resources/cody.png",