Skip to content

Commit 9f6cb59

Browse files
committed
Update changelog for v0.1.37
1 parent d7fd4ac commit 9f6cb59

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## Unreleased
44

5+
## [v0.1.37](https://github.com/coder/vscode-coder/releases/tag/v0.1.37) (2024-05-24)
6+
7+
### Added
8+
9+
- openRecent query parameter to open the most recent workspace or directory for
10+
that remote.
11+
- Setting to disable downloading the binary. When disabled, the existing binary
12+
will be used as-is. If the binary is missing, the plugin will error.
13+
14+
### Fixes
15+
16+
- Increased timeout will apply to reconnects as well.
17+
518
### Changes
619

720
- Show certificate errors under the token input.

src/remote.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,7 @@ export class Remote {
313313
// of 15 seconds, which can be too short in the case where we wait for
314314
// startup scripts. For now we hardcode a longer value. Because this is
315315
// potentially overwriting user configuration, it feels a bit sketchy. If
316-
// microsoft/vscode-remote-release#8519 is resolved we can remove this but
317-
// for now to mitigate the sketchiness we will reset it after connecting.
316+
// microsoft/vscode-remote-release#8519 is resolved we can remove this.
318317
const minConnTimeout = 1800
319318
let mungedConnTimeout = false
320319
if (!connTimeout || connTimeout < minConnTimeout) {

0 commit comments

Comments
 (0)