Skip to content

Commit fad6a40

Browse files
authored
chore: v1.14.5 changelog fix and Windows test timeout (#928)
- Correct v1.14.5 changelog: the CLI auth fix refreshes the credential file/keyring per call, not env vars. - Bump testTimeout to 10s on Windows to absorb NTFS small-file write latency (fixes the 'merges a large number of files' flake).
1 parent 1b83a54 commit fad6a40

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

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

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

vitest.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ const webviewSharedAlias = path.resolve(
66
"packages/webview-shared/src",
77
);
88

9+
// NTFS is slow with many small-file writes; double the default on Windows CI.
10+
const testTimeout = process.platform === "win32" ? 10_000 : 5_000;
11+
912
export default defineConfig({
1013
test: {
14+
testTimeout,
1115
projects: [
1216
{
1317
extends: true,

0 commit comments

Comments
 (0)