Skip to content
This repository was archived by the owner on Aug 1, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.34.0
- Fixes problem when client configuration updates are ignored after we create new chat

## 0.33.0
- A lot of changes since 0.23.1 which haven't been documented well
(please test new versions manually on the instance locally before publishing).
- Adds a possible fix for the "Memory leak" problem (improvements in components memoization).
- Adds a feature flag cody setting `cody.chatCodeSyntaxHighlightingEnabled` to disable code highlighting of chat code snippets.

## 0.23.1
- Support unicode characters in cody prompt templates @ mentions
- Remove cody repository as default @ mention for prompt templates
Expand Down
2 changes: 1 addition & 1 deletion web/lib/components/use-cody-agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { type AgentClient, createAgentClient } from '../agent/agent.client'
* host sends during chat-switching. Some events should always be handled by the client
* regardless of which active panel they came from.
*/
const GLOBAL_MESSAGE_TYPES: Array<ExtensionMessage['type']> = ['rpc/response']
const GLOBAL_MESSAGE_TYPES: Array<ExtensionMessage['type']> = ['rpc/response', 'clientConfig']

const GLOBAL_AGENT_SHUTDOWN_TIMER = 10 * 60 * 1000 // 10 minutes

Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sourcegraph/cody-web",
"version": "0.32.12",
"version": "0.34.0",
"description": "Cody standalone web app",
"license": "Apache-2.0",
"repository": {
Expand Down
Loading