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
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@
startup.
- The **Coder: Workspace Build** output channel is no longer created when reconnecting to an
already-running workspace, so the Output panel doesn't pop open empty.
- CLI subprocesses spawned by **Speed Test**, **Ping**, **Create Support Bundle**, and the app
status terminal now inherit `CODER_URL` and `CODER_SESSION_TOKEN`, so authentication works for
any nested CLI invocations (including mTLS deployments).
- **Speed Test**, **Ping**, **Create Support Bundle**, and the app status terminal now refresh
the stored credential file (or keyring on supported systems) before each invocation, so they
no longer fail with a stale token after the session has been refreshed since the workspace was
first opened. mTLS deployments continue to work with an empty token.
- Cancelling a long-running CLI command no longer surfaces as a misleading CLI failure.

## [v1.14.3](https://github.com/coder/vscode-coder/releases/tag/v1.14.3) 2026-03-30
Expand Down
4 changes: 4 additions & 0 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ const webviewSharedAlias = path.resolve(
"packages/webview-shared/src",
);

// NTFS is slow with many small-file writes; double the default on Windows CI.
const testTimeout = process.platform === "win32" ? 10_000 : 5_000;

export default defineConfig({
test: {
testTimeout,
projects: [
{
extends: true,
Expand Down