Skip to content
This repository was archived by the owner on Aug 1, 2025. It is now read-only.

Releases: sourcegraph/cody-public-snapshot

Cody for VS Code 0.6.7

15 Aug 22:59

Choose a tag to compare

What's new

This patch release includes some under-the-hood improvements:

  • Log number of accepted chars per autocomplete suggestion (#674 by @philipp-spiess)
  • Log token counts for generated code and button click events (#675 by @abeatrix)

Full Changelog

For the complete list of changes, see the comparison between v0.6.6 and v0.6.7.

Codyintel (experimental)

14 Aug 21:25

Choose a tag to compare

Pre-release
codyintel6

WIP.

Cody for VS Code 0.6.6

10 Aug 17:35
1ca3139

Choose a tag to compare

What's new

Highlights

Other changes

New contributors

Full changelog: sourcegraph/cody@vscode-v0.6.5...vscode-v0.6.6

Cody for VS Code 0.6.5

07 Aug 18:42
870a306

Choose a tag to compare

What's New

We're excited to share the latest improvements in Cody! This release enhances fixups, autocompletion, refactors to streamline code, dependency updates, and bug fixes.

Recipes are now Commands

What used to be Recipes are now Commands. Instead of accessing them from a tab, you can now find them in the chat message box by typing /:

image

Or use the keyboard shortcut cmd+shift+v (⇧⌘V) to bring up the Command Menu:

image

Cody has also been moved to the correct position in the right-click context menu:

image

Enhanced Autocompletion

  • Upgraded to StarCoder 7b model for higher quality autocomplete suggestions (#560)
  • Added test case and benchmark for new StarCoder model (#540)
  • Improved codebase context inference for autocomplete embeddings (#525)
  • Include current file name in anthropic prompt for more relevant suggestions (#579)

Improvements to Fixups!

  • You can now run parallel fixups
    • No need to wait for an existing one to finish
  • With a single click, you can ask Cody to fix errors and warnings in your editor
    • Or ask Cody to explain, and it will immediately open a new inline chat
  • Lots of response quality improvements. Cody is better at returning actual code that is related to your instructions.
  • You can now create fixes on empty selection ranges, meaning you can generate code like you might do with completions but with additional instructions!

Code Refactors

  • Restructured custom commands configuration for better organization (#561, #571)
  • Consolidated inline and non-stop fixup code paths (#510)

Bug Fixes

  • Fixed file watcher leaks in commands controller (#564)
  • Fixed recipe file watcher exhausting system resources (#565)
  • Handled errors from Git extension APIs (#562)
  • Fixed relative pattern matching in file watchers (#573)
  • Fixed GitHub Copilot suppressing Ctrl+Enter in comment UI (#551)

Dependency Updates

  • Upgraded Node.js to v18 (#519)
  • Updated React and other JavaScript dependencies (#515)

Check out the full changelog for more details. We appreciate all the contributors who helped improve Cody this release! Feel free to let us know if you have any other feedback.

Cody for VS Code 0.6.4

02 Aug 10:37
eba6a09

Choose a tag to compare

What's New

This release includes several improvements and bug fixes:

Performance and Reliability

  • Fixed several crashes and errors like "Cannot read properties of null" (#418)
  • Made completion caching more robust to avoid stale results (#392)

Productivity Boosts

  • Improved autocomplete suggestions by fixing issues with extra { characters (#378) and incorrect code generation (#391)
  • Added support for VS Code as a web extension for increased portability (#424)

Developer Experience

  • Added tracing for completion providers to simplify debugging (#433)
  • Improved test helpers for writing completion tests (#411)

Other Changes

  • Refactored code to narrow types and imports (#425)
  • Made the extension compatible with Node.js and DOM timers (#427)
  • Added docs for getting insider builds (#420)

Thanks to all our contributors for these improvements!

New Contributors

Full Changelog: sourcegraph/cody@vscode-v0.6.3...vscode-v0.6.4

Cody for VS Code 0.6.3

27 Jul 04:30
d8009b5

Choose a tag to compare

What's New

This release focuses on improvements to autocompletion, configuration, and more.

Enhancements

  • Autocompletion is now faster and more reliable thanks to fixes for text document slicing logic and removal of an unnecessary provider (#375, #394).
  • Deprecated configuration fields were removed after a grace period (#387).

Fixes

  • Steps for using Cody as a library were fixed (#398).
  • An experimental file path hallucination detector was removed (#400).
  • The default value for triggerMoreEagerly was fixed in code (#401).

For the full changelog, see here.

cody-shared-test-v1

26 Jul 08:52
8e1aad2

Choose a tag to compare

cody-shared-test-v1 Pre-release
Pre-release

Testing for sg/sg deployment branch

Cody for VS Code 0.6.2

25 Jul 23:09

Choose a tag to compare

vscode-v0.6.2

v0.6.2

Cody for VS Code 0.6.1

21 Jul 22:53
a3042d8

Choose a tag to compare

Release v0.6.1 (#354)

Release v0.6.1

## Test plan

<!--
All pull requests REQUIRE a test plan:
https://docs.sourcegraph.com/dev/background-information/testing_principles

Some examples:

// Just a doc change
none - docs change

// Unit tests got your back?
Unit tests

// Tested it manually and CI will also pitch in?
Manually tested and CI
-->

Version bump

Cody for VS Code 0.6.0

17 Jul 14:44
6a9b5fe

Choose a tag to compare

Cody: Limit completions to 2 lines in single line mode (#276)

This commit limits code completions to 2 lines when in single line mode,
to avoid cluttering the editor with too many lines.

Added unit tests for:

- Completing up to 2 lines
- Completing 1 line if the second line is indented

This fixes a UX issue where inline completions look like a truncated
multi-line completion, e.g.:

<img width="758" alt="Screenshot 2023-07-17 at 14 20 48"
src="https://github.com/sourcegraph/cody/assets/458591/062048fc-c332-4aca-9feb-187eeed35242">


<!-- All pull requests REQUIRE a test plan:

https://docs.sourcegraph.com/dev/background-information/testing_principles
-->