Skip to content

Commit c565edb

Browse files
authored
v1.12.0 (#743)
1 parent 8cfb8e0 commit c565edb

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

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

33
## Unreleased
44

5+
## [v1.12.0](https://github.com/coder/vscode-coder/releases/tag/v1.12.0) 2026-01-21
6+
57
### Added
68

79
- Automatic TLS client certificate refresh via new `coder.tlsCertRefreshCommand` setting. Detects
810
certificate errors (expired, revoked, etc.) and automatically refreshes and retries.
11+
- OAuth 2.1 authentication support (experimental): Enable via `coder.experimental.oauth` setting.
12+
When connecting to an OAuth-enabled Coder deployment, you can choose between OAuth (with automatic
13+
token refresh) or legacy session tokens. OAuth tokens refresh automatically in the background,
14+
eliminating manual re-authentication.
15+
- Multi-deployment support: The extension now remembers credentials for multiple Coder deployments.
16+
When you log into a different deployment, existing credentials are preserved and automatically
17+
restored if you log back in. Credentials sync automatically across VS Code windows.
18+
- WebSocket connections now automatically reconnect when proxy, TLS, or header settings change
19+
(`coder.headerCommand`, `coder.insecure`, `coder.tlsCertFile`, `coder.tlsKeyFile`, `coder.tlsCaFile`,
20+
`coder.tlsAltHost`, `http.proxy`, `coder.proxyBypass`).
921

1022
### Fixed
1123

1224
- Fixed `SetEnv` SSH config parsing and accumulation with user-defined values.
1325
- Improved WebSocket error handling for more consistent behavior across connection failures.
26+
- Commands now correctly appear/hide in the command palette based on login state and remote connection.
27+
- Opening a workspace via URI (`vscode://coder.coder-remote/open?...`) now properly prompts for login
28+
when credentials are missing.
29+
- Network info files are now automatically cleaned up, and the SSH process is re-detected after
30+
repeated failures to read network info.
31+
- Proxy log files are now automatically cleaned up when the count exceeds 20 and the oldest files
32+
are more than 7 days old.
33+
34+
### Changed
35+
36+
- **Breaking**: Minimum VS Code version is now 1.95.0.
1437

1538
## [v1.11.6](https://github.com/coder/vscode-coder/releases/tag/v1.11.6) 2025-12-15
1639

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.11.6",
4+
"version": "1.12.0",
55
"description": "Open any workspace with a single click.",
66
"categories": [
77
"Other"

0 commit comments

Comments
 (0)