From 93b05c4faf02922f0966727ef0ec5309591d96c8 Mon Sep 17 00:00:00 2001 From: Ehab Younes Date: Wed, 4 Mar 2026 01:49:18 +0300 Subject: [PATCH] v1.13.0 --- CHANGELOG.md | 17 +++++++++++++++++ package.json | 2 +- vitest.config.ts | 4 ---- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88811e17..cb0539ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index 7b79c972..c7aba0a8 100644 --- a/package.json +++ b/package.json @@ -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" diff --git a/vitest.config.ts b/vitest.config.ts index 28ac1591..1609c2f5 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -17,8 +17,6 @@ export default defineConfig({ exclude: ["**/node_modules/**", "**/out/**", "**/*.d.ts"], environment: "node", globals: true, - pool: "threads", - fileParallelism: true, }, resolve: { alias: { @@ -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: {