Skip to content

Commit

Permalink
VS Code: Release v1.24.2
Browse files Browse the repository at this point in the history
  • Loading branch information
valerybugakov committed Jul 4, 2024
1 parent 43aa4f8 commit 00bb3e8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
15 changes: 8 additions & 7 deletions vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ This is a log of all notable changes to Cody for VS Code. [Unreleased] changes a

### Added

- Ollama: Added support for running Cody offline with local Ollama models. [pull/4691](https://github.com/sourcegraph/cody/pull/4691)
- Edit: Added support for users' to edit the applied edit before the diff view is removed. [pull/4684](https://github.com/sourcegraph/cody/pull/4684)
- Autocomplete: Added a new experimental throttling mechanism that should decrease latency. [pull/4735](https://github.com/sourcegraph/cody/pull/4735)

### Fixed

### Changed

## 1.24.2

### Added

- Autocomplete: Added a new experimental throttling mechanism that should decrease latency. [pull/4735](https://github.com/sourcegraph/cody/pull/4735)

### Changed

- Autocomplete: When the last completion candidate is not applicable at the current document position, it remains in the cache even after the user backspaces or deletes characters from the current line. [pull/4704](https://github.com/sourcegraph/cody/pull/4704)
- Chat: Added a stop button and cleaned up the vertical space layout of the chat. [pull/4580](https://github.com/sourcegraph/cody/pull/4580)
- Autocomplete: Added a caching layer to Jaccard Similarity to reduce the load of context gathering during autocompletion. [pull/4608](https://github.com/sourcegraph/cody/pull/4608)
- Chat: Simplify the Enterprise docs in the model selector [pull/4745](https://github.com/sourcegraph/cody/pull/4745)
- Autocomplete: Increase request manager cache size. [pull/4778](https://github.com/sourcegraph/cody/pull/4778)

## 1.24.1
Expand Down
2 changes: 1 addition & 1 deletion vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "cody-ai",
"private": true,
"displayName": "Cody: AI Coding Assistant with Autocomplete & Chat",
"version": "1.24.1",
"version": "1.24.2",
"publisher": "sourcegraph",
"license": "Apache-2.0",
"icon": "resources/cody.png",
Expand Down
1 change: 1 addition & 0 deletions vscode/src/completions/inline-completion-item-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ import {
canReuseLastCandidateInDocumentContext,
getRequestParamsFromLastCandidate,
} from './reuse-last-candidate'
import { SmartThrottleService } from './smart-throttle'
import {
type AutocompleteInlineAcceptedCommandArgs,
type AutocompleteItem,
Expand Down
2 changes: 2 additions & 0 deletions vscode/src/services/autocomplete-stage-counter-logger.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ describe('AutocompleteStageCounter', () => {
preDebounce: 0,
preContextRetrieval: 0,
preNetworkRequest: 0,
preSmartThrottle: 0,
preFinalCancellationCheck: 0,
preVisibilityCheck: 0,
},
Expand Down Expand Up @@ -155,6 +156,7 @@ describe('AutocompleteStageCounter', () => {
preCache: 1,
preDebounce: 0,
preContextRetrieval: 0,
preSmartThrottle: 0,
preNetworkRequest: 0,
preFinalCancellationCheck: 0,
preVisibilityCheck: 0,
Expand Down

0 comments on commit 00bb3e8

Please sign in to comment.