Releases: coder/vscode-coder
Releases · coder/vscode-coder
v1.14.0-pre
Added
- Re-introduced OS keyring support for session tokens (reverted in v1.13.2), now delegating to the Coder CLI instead of native
@napi-rs/keyringbinaries. This keeps the credential format in sync with the CLI automatically.
Note
Sync requires Coder v2.31+ as it depends on the coder login --token command, which is not available in earlier versions.
Fixed
--use-keyringand--global-configare now explicitly filtered from user-configured global CLI flags to prevent conflicts with the extension's auth mode.
v1.13.2
v1.13.1
Added
- Session tokens are now stored in the OS keyring (Keychain on macOS, Credential Manager on Windows) instead of plaintext files, when using CLI >= 2.29.0. Falls back to file storage on Linux, older CLIs, or if the keyring write fails. Controlled via the
coder.useKeyringsetting.
Fixed
- Fixed CLI binary downloads failing when servers or proxies compress responses unexpectedly.
- Clarified CLI download progress notification wording.
v1.13.0
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
Added
- Support for VS Code's built-in proxy settings:
http.noProxy(as fallback whencoder.proxyBypassis not set),http.proxyAuthorization, andhttp.proxyStrictSSL.
Fixed
- Fixed proxy scheme handling where URLs with schemes got duplicated and URLs without schemes were not normalized.
Changed
- WebSocket connections are now more robust and reconnect less frequently, only when truly necessary, reducing unnecessary disconnections and improving stability.
v1.12.1
Fixed
- Fixed GPG signature verification failing when public keys have been reformatted.
- Fixed race conditions when multiple VS Code windows access deployments simultaneously.
Changed
- Refined logging with clearer messages and more accurate severity levels for easier troubleshooting.
v1.12.0
Added
- Automatic TLS client certificate refresh via new
coder.tlsCertRefreshCommandsetting. Detects certificate errors (expired, revoked, etc.) and automatically refreshes and retries. - OAuth 2.1 authentication support (experimental): Enable via
coder.experimental.oauthsetting. When connecting to an OAuth enabled Coder deployment, you can choose between OAuth (with automatic token refresh) or legacy session tokens. OAuth tokens refresh automatically in the background, eliminating manual re-authentication. - Multi-deployment support: The extension now remembers credentials for multiple Coder deployments. When you log into a different deployment, existing credentials are preserved and automatically restored if you log back in. Credentials sync automatically across VS Code windows.
- WebSocket connections now automatically reconnect when proxy, TLS, or header settings change (
coder.headerCommand,coder.insecure,coder.tlsCertFile,coder.tlsKeyFile,coder.tlsCaFile,coder.tlsAltHost,http.proxy,coder.proxyBypass).
Fixed
- Fixed
SetEnvSSH config parsing and accumulation with user-defined values. - Improved WebSocket error handling for more consistent behavior across connection failures.
- Commands now correctly appear/hide in the command palette based on login state and remote connection.
- Opening a workspace via URI (
vscode://coder.coder-remote/open?...) now properly prompts for login when credentials are missing. - Network info files are now automatically cleaned up, and the SSH process is re-detected after repeated failures to read network info.
- Proxy log files are now automatically cleaned up when the count exceeds 20 and the oldest files are more than 7 days old.
Changed
- Breaking: Minimum VS Code version is now 1.95.0.
v1.11.6
Added
- Log file picker when viewing logs without an active workspace connection.
Fixed
- Fixed false "setting changed" notifications appearing when connecting to a remote workspace.
v1.11.5
Added
- Support for paths that begin with a tilde (
~). - Support for
coder sshflag configurations through thecoder.sshFlagssetting.
Fixed
- Fixed race condition when multiple VS Code windows download the Coder CLI binary simultaneously. Other windows now wait and display real-time progress instead of attempting concurrent downloads, preventing corruption and failures.
- Remove duplicate "Cancel" buttons on the workspace update dialog.
Changed
- WebSocket connections now automatically reconnect on network failures, improving reliability when communicating with Coder deployments.
- Improved SSH process and log file discovery with better reconnect handling and support for VS Code forks (Cursor, Windsurf, Antigravity).
v1.11.4
Fixed
- Add support for
google.antigravity-remote-opensshRemote SSH extension.
Changed
- Improved workspace connection progress messages and enhanced the workspace build terminal with better log streaming. The extension now also waits for blocking startup scripts to complete before connecting, providing clear progress indicators during the wait.