Skip to content

Releases: coder/code-server

v4.3.0

14 Apr 22:37
64fa789
Compare
Choose a tag to compare

v4.3.0

Code v1.65.2

Changed

  • Excluded .deb files from release Docker image which drops the compressed and
    uncompressed size by 58% and 34%.
  • Upgraded to Code 1.65.2.

Added

  • Added a new CLI flag called --disable-file-downloads which allows you to
    disable the "Download..." option that shows in the UI when right-clicking on a
    file. This can also set by running CS_DISABLE_FILE_DOWNLOADS=1.
  • Aligned the dependencies for binary and npm release artifacts.

Fixed

  • Fixed the code-server version from not displaying in the Help > About dialog.
  • Fixed issues with the TypeScript and JavaScript Language Features Extension
    failing to activate.
  • Fixed missing files in ipynb extension.
  • Fixed the homebrew release workflow.
  • Fixed the Docker release workflow from not always publishing version tags.

New Contributors

Full Changelog: v4.1.0...v4.3.0

v4.2.0

22 Mar 23:34
7d56da4
Compare
Choose a tag to compare

v4.2.0

VS Code v1.64.2

Added

  • Added tests for handleArgsSocketCatchError, setDefaults and
    optionDescriptions.

Changed

  • We switched from using the fork coder/vscode to a submodule of
    microsoft/vscode + patches managed by quilt for how Code sits inside the
    code-server codebase.
  • Upgraded to Code 1.64.2.

Fixed

  • Update popup notification through --disable-update-check is now fixed.
  • Fixed PWA icons not loading on iPad
  • Fixed the homebrew release process. Our cdrci bot should now automatically
    update the version as part of the release pipeline.
  • Fixed titleBar color setting being ignored in PWA.

Security

  • Updated to minimist-list.
  • Updated cloud-agent to v0.2.4 which uses nhooyr.io/webscoket v1.8.7.

New Contributors

Full Changelog: v4.1.0...v4.2.0

v4.1.0

03 Mar 22:45
7aa087a
Compare
Choose a tag to compare

v4.1.0

Code 1.63.0

Upgrading is as easy as installing the new version over the old one. code-server
maintains all user data in ~/.local/share/code-server so that it is preserved in between
installations.

Added

  • Support for injecting GitHub token into Code so extensions can make use of it.
    This can be done with the GITHUB_TOKEN environment variable or github-auth
    in the config file.
  • New flag --socket-mode allows setting the mode (file permissions) of the
    socket created when using --socket.
  • The version of Code bundled with code-server now appears when using the
    --version flag. For example: 4.0.2 5cdfe74686aa73e023f8354a9a6014eb30caa7dd with Code 1.63.0.
    If you have been parsing this flag for the version you might want to use
    --version --json instead as doing that will be more stable.

Changed

  • The workspace or folder passed on the CLI will now use the same redirect
    method that the last opened workspace or folder uses. This means if you use
    something like code-server /path/to/dir you will now get a query parameter
    added (like so: my-domain.tld?folder=/path/to/dir), making it easier to edit
    by hand and making it consistent with the last opened and menu open behaviors.
  • The folder/workspace query parameter no longer has encoded slashes, making
    them more readable and editable by hand. This was only affecting the last
    opened behavior, not opens from the menu.

Fixed

  • Fix web sockets not connecting when using --cert.
  • Prevent workspace state collisions when opening a workspace that shares the
    same file path with another workspace on a different machine that shares the
    same domain. This was causing files opened in one workspace to be "re-"opened
    in the other workspace when the other workspace is opened.
  • Pin the Express version which should make installing from npm work again.
  • Propagate signals to code-server in the Docker image which means it should
    stop more quickly and gracefully.
  • Fix missing argon binaries in the standalone releases on arm machines.

v4.0.2

28 Jan 01:00
Compare
Choose a tag to compare

v4.0.2

VS Code v1.63.0

Fixed

  • Unset the BROWSER environment variable. This fixes applications that hard
    exit when trying to spawn the helper script BROWSER points to because the
    file is missing. While we do include the script now we are leaving the
    variable omitted because the script does not work yet.

v4.0.1

05 Jan 20:06
7fe23da
Compare
Choose a tag to compare

v4.0.1

VS Code v1.63.0

code-server has been rebased on upstream's newly open-sourced server
implementation (#4414).

Changed

  • Web socket compression has been made the default (when supported). This means
    the --enable flag will no longer take permessage-deflate as an option.
  • The static endpoint can no longer reach outside code-server. However the
    vscode-remote-resource endpoint still can.
  • OpenVSX has been made the default marketplace.
  • The last opened folder/workspace is no longer stored separately in the
    settings file (we rely on the already-existing query object instead).
  • The marketplace override environment variables SERVICE_URL and ITEM_URL
    have been replaced with a single EXTENSIONS_GALLERY variable that
    corresponds to extensionsGallery in VS Code's product.json.

Removed

  • Extra extension directories have been removed. The --extra-extensions-dir
    and --extra-builtin-extensions-dir flags will no longer be accepted.
  • The --install-source flag has been removed.

Deprecated

  • --link is now deprecated (#4562).

Security

  • We fixed a XSS vulnerability by escaping HTML from messages in the error page (#4430).

Cheers 🎉

New Contributors

Full Changelog: v3.12.0...v4.0.1
Milestone: https://github.com/coder/code-server/milestone/34

v4.0.0 - pre-release

10 Dec 20:30
c55f0e8
Compare
Choose a tag to compare
v4.0.0 - pre-release Pre-release
Pre-release

v4.0.0 (pre-release)

VS Code v1.63.0

Upgrading is as easy as installing the new version over the old one. code-server
maintains all user data in ~/.local/share/code-server so that it is preserved in between
installations.

code-server has been rebased on upstream's newly open-sourced server
implementation (#4414).

Changed

  • Web socket compression has been made the default (when supported). This means
    the --enable flag will no longer take permessage-deflate as an option.
  • Extra extension directories have been removed. The --extra-extensions-dir
    and --extra-builtin-extensions-dir will no longer be accepted.
  • The --install-source and --locale flags have been removed.
  • The static endpoint can no longer reach outside code-server. However the
    vscode-remote-resource endpoint still can.
  • OpenVSX has been made the default marketplace. However this means web
    extensions like Vim may be broken.

Deprecated

  • --link is now deprecated (#4562).

Breaking Changes

  • You can no longer change the display language. This has been removed upstream but we hope to see if we can patch it again. Tracking in #4598

Cheers! 🍻

v3.12.0

15 Sep 20:24
Compare
Choose a tag to compare

v3.12.0

VS Code v1.60.0

Upgrading is as easy as installing the new version over the old one. code-server
maintains all user data in ~/.local/share/code-server so that it is preserved in between
installations.

New Features

  • Upgraded VS )code to 1.60.0
  • Migrated to vscode fork
  • Partial support for Coder Link (WIP)

Bug Fixes

  • Updated tests to reflect upstream changes

Documentation

  • Fixed several documentation bugs

v3.11.1

06 Aug 20:50
911af40
Compare
Choose a tag to compare

v3.11.1

VS Code v1.57.1

Upgrading is as easy as installing the new version over the old one. code-server
maintains all user data in ~/.local/share/code-server so that it is preserved in between
installations.

Bug Fixes

⭐ Fix server worker path and fix issue with webviews not loading resources!

Documentation

⭐ Updates and a new section for how to uninstall code-server

  • chore: update guides.md header to Accessing Web Services #3819 @khorne3
  • docs(install): add uninstall instructions #3840 @jsjoeio

Development

⭐ Lots of new tests added and a fix to update dependency requirements

Cheers! 🍻

v3.11.0

14 Jul 21:14
@oxy oxy
Compare
Choose a tag to compare

VS Code v1.57.1

Upgrading is as easy as installing the new version over the old one. code-server
maintains all user data in ~/.local/share/code-server so that it is preserved in between
installations.

New Features

⭐ Upgraded VSCode to v1.57

Bug Fixes

⭐ Fix logout for those behind a reverse proxy

Documentation

⭐ Lots of reorganizing to make them easier to refer, and some new information!

Development

⭐ Move to Node v14, use Argon2 for pw hashing, and CI work 👷

Development

Cheers! 🍻

v3.10.2

21 May 23:43
4fc8d98
Compare
Choose a tag to compare

v3.10.2

VS Code v1.56.1

Upgrading is as easy as installing the new version over the old one. code-server
maintains all user data in ~/.local/share/code-server so that it is preserved in between installations.

New Features

  • feat: support extraInitContainers in helm chart values #3393 @strowk
  • feat: change extraContainers to support templating in helm chart #3393 @strowk

Bug Fixes

  • fix: use correct command to Open Folder on Welcome page #3437 @jsjoeio

Development

  • fix(ci): update brew-bump.sh to update remote first #3438 @jsjoeio

Cheers! 🍻