Releases: coder/code-server
v3.3.0
VS Code v1.46.0
New Features
- We now have a config file you can use to set parameters in
~/.config/code-server/config.yaml- See ./doc/FAQ.md
- We now have
.deband.rpmreleases, a homebrew package and an npm package- See docs in README.md for installation
- We now have a setup guide in ./doc/guide.md
- ./doc/FAQ.md has been updated with more questions and a table of contents
Bug Fixes
Breaking Changes
With the revamped releases and documentation, we found a few minor issues we wanted to clean up even though they are breaking changes.
- The
code-serverscript in the self contained releases is now in abindirectory- Now you can add the
bindirectory to your$PATHto easily call it without linking the binary into a directory in$PATH This means there is nocode-serverscript in the root of the release, you'll need to update the path in your own scripts tobin/code-server- There is now a symlink in
code-servertobin/code-serverin v3.3.1 so auto updates and your scripts still work but please usebin/code-serveras this symlink will be removed in the next few weeks
- Now you can add the
- Automatic updates have been removed (#1483, #1513, #1622)
- It's a better idea to use your system package manager to install anyway as we now have
.deband.rpmpackages in this release! - This means you can no longer pass in
--disable-updates
- It's a better idea to use your system package manager to install anyway as we now have
- The naming of the release assets has been changed to use
amd64,arm64andmacos- More clear and easy to follow, especially for new users
- There is precedent for the darwin -> macOS name change in Neovim
- There will be no separate
-arm64docker tag, the same tag will be used for both theamd64andarm64images with docker's multi arch image support - The default host is now always
127.0.0.1as set in the default config file- Previously it would be
0.0.0.0if both a cert and password authentication was enabled
- Previously it would be
- The macOS data directory has been moved from
~/Library/Application Support/code-serverto~/.local/share/code-serverto better match user expectations- When you run
v3.3.0for the first time, it will automatically copy from the old data directory to the new one
- When you run
- The macOS release is now a
.tar.gzinstead of a.zipto match the other releases
3.2.0
- Update node to the latest LTS (12.16.3).
- Update VS Code to 1.44.2.
- Allow extensions of any kind (for example, vscode-icons works again).
- Deprecate
--hostand--portin favor of--bind-addrwhich takes the formhost:port. For example:--bind-addr localhost:8080. #1013 - Add rate limiting to the login endpoint. #1320
- Remove the built-in SSH server. #1502
- You can remove the
--ssh-host-keyand--disable-sshflags from your scripts.
- You can remove the
- Fix extensions running in the browser not getting the correct storage path. #1551
- Allow
data:URIs in the CSP forfont-src. #1530 - Fix code-server script on macOS. #1537
- Fix update errors not being show to the user. #1532
- Allow specifying a workspace on the command line. #1535
3.1.1
3.1.0
3.0.2
3.0.1
3.0.0
We're still working on arm64 builds (Travis appears to swallow the output and then terminates the build because there's no output).
V3 has some significant changes that will need to be accounted for in your
scripts.
-
We use semantic versioning now. The VS Code version will no longer be included
in the tag or the release file name. -
Releases are now loose files and are no longer packed into a single binary so
be sure to move the entire directory. Inside the directory is an entry script
code-serverthat will launch with the bundled Node.If you want to do something like put the entry script in
/usr/binand the
code-server files in/usr/libwe recommend you use a symlink:ln -s /usr/lib/code-server/code-server /usr/bin/code-server.You can also run code-server with your own Node binary instead of the bundled
one:node /path/to/code-server/out/node/entry.js. -
V2 cannot update to V3 automatically due to the structural changes so you’ll
need to manually download and restart code-server in order to update. -
If you want to build or develop please check out
https://github.com/cdr/code-server/blob/3.0.0/doc/CONTRIBUTING.md as the steps
have changed.
2.1698-vsc1.41.1
- VS Code 1.41.1
- Arm64 builds
2.1692-vsc1.39.2
Increase default max memory and allow setting your own limit. Might help with some reports of crashes.
2.1688-vsc1.39.2
- Fix passwords with semicolons (and potentially other characters).
- Fix potential infinite login redirect.
- Add missing telemetry option (to allow disabling extension telemetry).
- Fix inability to activate extensions on an insecure domain on Chrome & Safari.
- Fix automatic updating.
- Add meta tag to allow full screen in iOS.