Skip to content

Releases: coder/vscode-coder

v1.11.1

07 Oct 08:57
v1.11.1
a6cefa2
Compare
Choose a tag to compare

Fixed

  • Logging in or out in one VS Code window now properly updates the authentication status in all other open windows.
  • Fix an issue with JSON stringification errors occurring when logging circular objects.
  • Fix resource cleanup issues that could leave lingering components after extension deactivation.

Added

  • Support for CODER_BINARY_DESTINATION environment variable to set CLI download location (overridden by extension setting coder.binaryDestination if configured).
  • Search filter button to Coder Workspaces tree views for easier workspace discovery.

v1.11.0

24 Sep 09:41
v1.11.0
dc4d6d4
Compare
Choose a tag to compare

Changed

  • Always enable verbose (-v) flag when a log directory is configured (coder.proxyLogDir).
  • Automatically start a workspace without prompting if it is explicitly opened but not running.

Added

  • Add support for CLI global flag configurations through the coder.globalFlags setting.
  • Add logging for all REST traffic. Verbosity is configurable via coder.httpClientLogLevel (none, basic, headers, body).
  • Add lifecycle logs for WebSocket creation, errors, and closures.
  • Include UUIDs in REST and WebSocket logs to correlate events and measure duration.

v1.10.1

13 Aug 18:18
v1.10.1
83391f9
Compare
Choose a tag to compare

Fixed

  • The signature download fallback now uses only major.minor.patch without any
    extra labels (like the hash), since the releases server does not include those
    labels with its artifacts.

v1.10.0

05 Aug 16:46
v1.10.0
c26018f
Compare
Choose a tag to compare

Changed

  • Coder output panel enhancements: all log entries now include timestamps, and
    you can filter messages by log level in the panel.

Added

  • Update /openDevContainer to support all dev container features when hostPath
    and configFile are provided.
  • Add coder.disableUpdateNotifications setting to disable workspace template
    update notifications.
  • Consistently use the same session for each agent. Previously, depending on how
    you connected, it could be possible to get two different sessions for an
    agent. Existing connections may still have this problem; only new connections
    are fixed.
  • Add an agent metadata monitor status bar item, so you can view your active
    agent metadata at a glance.
  • Add binary signature verification. This can be disabled with
    coder.disableSignatureVerification if you purposefully run a binary that is
    not signed by Coder (for example a binary you built yourself).

v1.9.2

25 Jun 08:51
0c73c83
Compare
Choose a tag to compare

Fixed

  • Use --header-command properly when starting a workspace.

  • Handle agent parameter when opening workspace to support multi-agent workspaces.

  • Handle windows specific paths in log-path parameter

Changed

  • The Coder logo has been updated.

v1.9.1

27 May 15:40
6cc34ca
Compare
Choose a tag to compare

Fixed

  • Missing or otherwise malformed START CODER VSCODE / END CODER VSCODE blocks in ${HOME}/.ssh/config will now result in an error when attempting to update the file. These will need to be manually fixed before proceeding.
  • Multiple open instances of the extension could potentially clobber writes to ~/.ssh/config. Updates to this file are now atomic.
  • Add support for anysphere.remote-ssh Remote SSH extension.

v1.9.0

15 May 18:41
v1.9.0
37948de
Compare
Choose a tag to compare

Fixed

  • The connection indicator will now show for VS Code on Windows, Windsurf, and
    when using the jeanp413.open-remote-ssh extension.

Changed

  • The connection indicator now shows if connecting through Coder Desktop.

v1.8.0

22 Apr 15:04
Compare
Choose a tag to compare

Added

  • Coder extension sidebar now displays available app statuses, and let's
    the user click them to drop into a session with a running AI Agent.

v1.7.1

14 Apr 18:48
Compare
Choose a tag to compare

Fixed

  • Fix bug where we were leaking SSE connections

v1.7.0

03 Apr 21:28
v1.7.0
1400383
Compare
Choose a tag to compare

Added

  • Add new /openDevContainer path, similar to the /open path, except this
    allows connecting to a dev container inside a workspace. For now, the dev
    container must already be running for this to work.

Fixed

  • When not using token authentication, avoid setting undefined for the token
    header, as Node will throw an error when headers are undefined. Now, we will
    not set any header at all.