Skip to content

Commit 8ef32d4

Browse files
authored
v1.13.0 (#817)
1 parent faa9542 commit 8ef32d4

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
## Unreleased
44

5+
## [v1.13.0](https://github.com/coder/vscode-coder/releases/tag/v1.13.0) 2026-03-03
6+
7+
### Added
8+
9+
- Tasks panel: a new sidebar panel to create, view, and manage AI tasks directly from VS Code.
10+
Includes a task list with status indicators, a detail view with chat-style log streaming and
11+
real-time workspace build logs, and the ability to send messages or pause the agent without
12+
leaving the editor.
13+
- New "Switch Deployment" command to change deployments without clearing credentials.
14+
- New "Manage Credentials" command to view and remove stored credentials for individual deployments.
15+
16+
### Changed
17+
18+
- Logout now clears stored credentials for the current deployment.
19+
- The workspace update confirmation button now reads "Update and Restart" to clarify that updating
20+
will restart the workspace.
21+
522
## [v1.12.2](https://github.com/coder/vscode-coder/releases/tag/v1.12.2) 2026-01-27
623

724
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "coder-remote",
33
"displayName": "Coder",
4-
"version": "1.12.2",
4+
"version": "1.13.0",
55
"description": "Open any workspace with a single click.",
66
"categories": [
77
"Other"

vitest.config.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ export default defineConfig({
1717
exclude: ["**/node_modules/**", "**/out/**", "**/*.d.ts"],
1818
environment: "node",
1919
globals: true,
20-
pool: "threads",
21-
fileParallelism: true,
2220
},
2321
resolve: {
2422
alias: {
@@ -36,8 +34,6 @@ export default defineConfig({
3634
exclude: ["**/node_modules/**", "**/out/**", "**/*.d.ts"],
3735
environment: "jsdom",
3836
globals: true,
39-
pool: "threads",
40-
fileParallelism: true,
4137
setupFiles: ["test/webview/setup.ts"],
4238
},
4339
resolve: {

0 commit comments

Comments
 (0)