Skip to content
Merged
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

## Unreleased

## [v1.13.0](https://github.com/coder/vscode-coder/releases/tag/v1.13.0) 2026-03-03

### Added

- Tasks panel: a new sidebar panel to create, view, and manage AI tasks directly from VS Code.
Includes a task list with status indicators, a detail view with chat-style log streaming and
real-time workspace build logs, and the ability to send messages or pause the agent without
leaving the editor.
- New "Switch Deployment" command to change deployments without clearing credentials.
- New "Manage Credentials" command to view and remove stored credentials for individual deployments.

### Changed

- Logout now clears stored credentials for the current deployment.
- The workspace update confirmation button now reads "Update and Restart" to clarify that updating
will restart the workspace.

## [v1.12.2](https://github.com/coder/vscode-coder/releases/tag/v1.12.2) 2026-01-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "coder-remote",
"displayName": "Coder",
"version": "1.12.2",
"version": "1.13.0",
"description": "Open any workspace with a single click.",
"categories": [
"Other"
Expand Down
4 changes: 0 additions & 4 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ export default defineConfig({
exclude: ["**/node_modules/**", "**/out/**", "**/*.d.ts"],
environment: "node",
globals: true,
pool: "threads",
fileParallelism: true,
},
resolve: {
alias: {
Expand All @@ -36,8 +34,6 @@ export default defineConfig({
exclude: ["**/node_modules/**", "**/out/**", "**/*.d.ts"],
environment: "jsdom",
globals: true,
pool: "threads",
fileParallelism: true,
setupFiles: ["test/webview/setup.ts"],
},
resolve: {
Expand Down