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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from published versions since it shows up in the VS Code extension changelog
tab and is confusing to users. Add it back between releases if needed. -->

## Unreleased
## [v1.16.0](https://github.com/coder/vscode-coder/releases/tag/v1.16.0) 2026-08-06

### Added

Expand All @@ -16,6 +16,9 @@
messages in a markdown preview.
- Ask for confirmation before creating a support bundle, with a summary of the
data it collects.
- Collect the remote editor's server logs from the workspace in support
bundles, alongside the local extension and SSH logs (requires a Coder
2.36.0+ deployment).

### Changed

Expand Down Expand Up @@ -65,6 +68,9 @@
revert to its default in a remote window.
- Delete the legacy file-based credentials after migrating them to secret
storage, instead of leaving plaintext copies behind.
- Stop using saved logins that point at a different deployment than the one
they were saved for, and warn instead of failing the connection when
migrated file-based credentials carry such a mismatch.

## [v1.15.2](https://github.com/coder/vscode-coder/releases/tag/v1.15.2) 2026-06-30

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "coder-remote",
"displayName": "Coder",
"version": "1.15.2",
"version": "1.16.0",
"description": "Open any workspace with a single click.",
"categories": [
"Other"
Expand Down
6 changes: 5 additions & 1 deletion src/login/loginCoordinator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,11 @@ export class LoginCoordinator implements vscode.Disposable {
new Error("The token in the link is invalid or expired."),
isAutoLogin,
);
return { success: false, method: "provided_token", reason: "auth_failed" };
return {
success: false,
method: "provided_token",
reason: "auth_failed",
};
}
if (result.success) {
// Silent when the link repeats the same user on the same origin, or an
Expand Down