Releases: coder/code-server
v4.6.0-rc.1
Code v1.70.1
Changed
- Updated Code to 1.70.1.
Added
- Added a heartbeat to sockets. This should prevent them from getting closed by
reverse proxy timeouts when idle like NGINX's default 60-second timeout.
Fixed
- Fixed logout option appearing even when authentication is disabled.
v4.5.2
Code v1.68.1
Security
-
Fixed the proxy route not performing authentication. For example if you were
to run a development HTTP server usingpython -m http.server 8000then it
would be accessible atmy.domain/proxy/8000/without any authentication.If all of the following apply to you please update as soon as possible:
- You run code-server with the built-in password authentication.
- You run unprotected HTTP services on ports accessible by code-server.
Changed
- Invoking
code-serverin the integrated terminal will now use the script that
comes with upstream Code. This means flags like--waitwill be
automatically supported now. However the upstream script only has the ability
to interact with the running code-server and cannot spawn new instances. If
you need to spawn a new code-server from the integrated terminal please
specify the full path to code-server's usual script (for example
/usr/bin/code-server).
Fixed
- Invoking
code-serverin the integrated terminal will now work instead of
erroring about not finding Node.
v4.5.2-rc.1
First release candidate for 4.5.2.
Please skip if you only want stable releases!
v4.5.1
v4.5.1
Code v1.68.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.
Changed
- We now use
release/v<0.0.0>for the release branch name so it doesn't
conflict with the tag name - Added
.prettierignoreto ignore formatting files inlib/vscode
Added
- Allow more comprehensive affinity config in Helm chart
- Added custom message in Homebrew PR to make sure code-server maintainers are
tagged - Allow setting
priorityClassNamevia Helm chart - Added troubleshooting docs to
CONTRIBUTING.md
Fixed
- Removed default memory limit which was set via
NODE_OPTIONS - Changed output in pipe to make it easier to debug code-server when doing live
edits - Fixed display-language patch to use correct path which broke in 4.5.0
- Fixed multiple code-server windows opening when using the code-server CLI in
the Integrated Terminal - Fixed Integrated Terminal not working when web base was not the root path
Security
- Updated
glob-parentversion in dependencies
New Contributors
Full Changelog: v4.5.0...v4.5.1
v4.5.0
v4.5.0
Code v1.68.1
Changed
- Updated codecov to use codecov uploader
- Moved integration tests to Jest
- Fixed docker release to only download .deb
- Upgraded to Code 1.68.1
- Install
nfpmfrom GitHub - Upgraded to TypeScript 4.6
Added
- Added tests for
open,isWsl,handlePasswordValidation - Provided alternate image registry to dockerhub
- Allowed users to have scripts run on container with
ENTRYPOINTDenvironment
variable
Fixed
- Fixed open CLI command to work on macOS
v4.4.0
v4.4.0
VS Code v1.66.2
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.
Changed
- Refactored methods in
Heartclass and madeHeart.beat()async to make
testing easier. - Upgraded to Code 1.66.2.
- code-server now runs on Node v16 due to the requirements changing in Code.
Added
- Added back telemetry patch which was removed in the Code reachitecture.
- Added support to use
trueforCS_DISABLE_FILE_DOWNLOADSenvironment
variable. This means you can disable file downloads by setting
CS_DISABLE_FILE_DOWNLOADStotrueor1. - Added tests for
Heartclass.
Fixed
- Fixed installation issue in AUR after LICENSE rename.
- Fixed issue with listening on IPv6 addresses.
- Fixed issue with Docker publish action not being able to find artifacts. Now
it downloads the release assets from the release.
New Contributors
- @azriel-stephen made their first contribution in #4981
- @cjtim made their first contribution in #5045
- @dwahler made their first contribution in #5068
- @rileycalhoun made their first contribution in #5079
- @neilnaveen made their first contribution in #5090
- @thx2001r made their first contribution in #5078
- @awfulcooking made their first contribution in #5133
Full Changelog: v4.1.0...v4.4.0
v4.3.0
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-downloadswhich allows you to
disable the "Download..." option that shows in the UI when right-clicking on a
file. This can also set by runningCS_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
- @azriel-stephen made their first contribution in #4981
- @cjtim made their first contribution in #5045
- @dwahler made their first contribution in #5068
- @rileycalhoun made their first contribution in #5079
- @neilnaveen made their first contribution in #5090
- @thx2001r made their first contribution in #5078
Full Changelog: v4.1.0...v4.3.0
v4.2.0
v4.2.0
VS Code v1.64.2
Added
- Added tests for
handleArgsSocketCatchError,setDefaultsand
optionDescriptions.
Changed
- We switched from using the fork
coder/vscodeto a submodule of
microsoft/vscode+ patches managed byquiltfor how Code sits inside the
code-server codebase. - Upgraded to Code 1.64.2.
Fixed
- Update popup notification through
--disable-update-checkis now fixed. - Fixed PWA icons not loading on iPad
- Fixed the homebrew release process. Our
cdrcibot 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-agenttov0.2.4which usesnhooyr.io/webscoketv1.8.7.
New Contributors
- @azriel-stephen made their first contribution in #4981
Full Changelog: v4.1.0...v4.2.0
v4.1.0
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 theGITHUB_TOKENenvironment variable orgithub-auth
in the config file. - New flag
--socket-modeallows 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
--versionflag. 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 --jsoninstead 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 likecode-server /path/to/diryou 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
v4.0.2
VS Code v1.63.0
Fixed
- Unset the
BROWSERenvironment variable. This fixes applications that hard
exit when trying to spawn the helper scriptBROWSERpoints 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.