2021-05-10 21:05:55 +02:00
|
|
|
# Changelog
|
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
All notable changes to this project will be documented in this file.
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
<!-- Example:
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
## [9.99.999] - 9090-09-09
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
VS Code v99.99.999
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
### Changed
|
|
|
|
### Added
|
|
|
|
### Deprecated
|
|
|
|
### Removed
|
|
|
|
### Fixed
|
|
|
|
### Security
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
-->
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2022-02-01 17:45:19 +01:00
|
|
|
## [Unreleased](https://github.com/coder/code-server/releases)
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2022-03-03 21:46:17 +01:00
|
|
|
Code v0.00.0
|
2022-01-05 21:06:32 +01:00
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
|
|
|
- Add here
|
|
|
|
|
2022-03-03 21:46:17 +01:00
|
|
|
## [4.1.0](https://github.com/coder/code-server/releases/tag/v4.1.0) - 2022-03-03
|
|
|
|
|
|
|
|
Code v1.63.0
|
|
|
|
|
|
|
|
### 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.
|
|
|
|
|
2022-02-01 17:45:19 +01:00
|
|
|
## [4.0.2](https://github.com/coder/code-server/releases/tag/v4.0.2) - 2022-01-27
|
2022-01-28 02:00:06 +01:00
|
|
|
|
2022-03-03 21:46:17 +01:00
|
|
|
Code v1.63.0
|
2022-01-28 02:00:06 +01:00
|
|
|
|
|
|
|
### 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.
|
|
|
|
|
2022-02-01 17:45:19 +01:00
|
|
|
## [4.0.1](https://github.com/coder/code-server/releases/tag/v4.0.1) - 2022-01-04
|
2022-01-05 21:06:32 +01:00
|
|
|
|
2022-03-03 21:46:17 +01:00
|
|
|
Code v1.63.0
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
code-server has been rebased on upstream's newly open-sourced server
|
|
|
|
implementation (#4414).
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
### Changed
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
- 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.
|
2022-01-04 19:37:11 +01:00
|
|
|
- OpenVSX has been made the default marketplace.
|
2021-12-17 20:06:52 +01:00
|
|
|
- The last opened folder/workspace is no longer stored separately in the
|
|
|
|
settings file (we rely on the already-existing query object instead).
|
2022-01-06 20:20:11 +01:00
|
|
|
- The marketplace override environment variables `SERVICE_URL` and `ITEM_URL`
|
|
|
|
have been replaced with a single `EXTENSIONS_GALLERY` variable that
|
2022-03-03 21:46:17 +01:00
|
|
|
corresponds to `extensionsGallery` in Code's `product.json`.
|
2021-12-09 22:21:02 +01:00
|
|
|
|
2022-01-04 22:02:25 +01:00
|
|
|
### Added
|
|
|
|
|
|
|
|
- `VSCODE_PROXY_URI` env var for use in the terminal and extensions.
|
|
|
|
|
2022-01-05 21:06:32 +01:00
|
|
|
### 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.
|
|
|
|
|
2021-12-09 22:21:02 +01:00
|
|
|
### Deprecated
|
|
|
|
|
|
|
|
- `--link` is now deprecated (#4562).
|
|
|
|
|
|
|
|
### Security
|
|
|
|
|
|
|
|
- We fixed a XSS vulnerability by escaping HTML from messages in the error page (#4430).
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2022-02-01 17:45:19 +01:00
|
|
|
## [3.12.0](https://github.com/coder/code-server/releases/tag/v3.12.0) - 2021-09-15
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2022-03-03 21:46:17 +01:00
|
|
|
Code v1.60.0
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
### Changed
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2022-03-03 21:46:17 +01:00
|
|
|
- Upgrade Code to 1.60.0.
|
2021-05-24 19:48:46 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
### Fixed
|
2021-05-24 19:48:46 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
- Fix logout when using a base path (#3608).
|
2021-05-27 18:32:09 +02:00
|
|
|
|
2022-02-01 17:45:19 +01:00
|
|
|
## [3.11.1](https://github.com/coder/code-server/releases/tag/v3.11.1) - 2021-08-06
|
2021-05-27 18:32:09 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
Undocumented (see releases page).
|
2021-05-27 18:32:09 +02:00
|
|
|
|
2022-02-01 17:45:19 +01:00
|
|
|
## [3.11.0](https://github.com/coder/code-server/releases/tag/v3.11.0) - 2021-06-14
|
2021-05-27 18:32:09 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
Undocumented (see releases page).
|
2021-05-24 19:48:46 +02:00
|
|
|
|
2022-02-01 17:45:19 +01:00
|
|
|
## [3.10.2](https://github.com/coder/code-server/releases/tag/v3.10.2) - 2021-05-21
|
2021-05-27 18:32:09 +02:00
|
|
|
|
2022-03-03 21:46:17 +01:00
|
|
|
Code v1.56.1
|
2021-05-27 18:32:09 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
### Added
|
2021-05-24 19:48:46 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
- Support `extraInitContainers` in helm chart values (#3393).
|
2021-05-25 01:47:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
### Changed
|
2021-05-25 01:47:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
- Change `extraContainers` to support templating in helm chart (#3393).
|
2021-05-14 22:59:01 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
### Fixed
|
2021-05-14 22:59:01 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
- Fix "Open Folder" on welcome page (#3437).
|
2021-05-14 22:59:01 +02:00
|
|
|
|
2022-02-01 17:45:19 +01:00
|
|
|
## [3.10.1](https://github.com/coder/code-server/releases/tag/v3.10.1) - 2021-05-17
|
2021-05-21 23:44:17 +02:00
|
|
|
|
2022-03-03 21:46:17 +01:00
|
|
|
Code v1.56.1
|
2021-05-21 23:44:17 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
### Fixed
|
2021-05-21 23:44:17 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
- Check the logged user instead of $USER (#3330).
|
|
|
|
- Fix broken node_modules.asar symlink in npm package (#3355).
|
|
|
|
- Update cloud agent to fix version issue (#3342).
|
2021-05-21 23:44:17 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
### Changed
|
2021-05-14 22:59:01 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
- Use xdgBasedir.runtime instead of tmp (#3304).
|
2021-05-11 20:31:54 +02:00
|
|
|
|
2022-02-01 17:45:19 +01:00
|
|
|
## [3.10.0](https://github.com/coder/code-server/releases/tag/v3.10.0) - 2021-05-10
|
2021-05-11 20:31:54 +02:00
|
|
|
|
2022-03-03 21:46:17 +01:00
|
|
|
Code v1.56.0
|
2021-05-11 20:31:54 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
### Changed
|
2021-05-11 20:31:54 +02:00
|
|
|
|
2022-03-03 21:46:17 +01:00
|
|
|
- Update to Code 1.56.0 (#3269).
|
2021-11-10 23:45:19 +01:00
|
|
|
- Minor connections refactor (#3178). Improves connection stability.
|
2022-03-03 21:46:17 +01:00
|
|
|
- Use ptyHostService (#3308). This brings us closer to upstream Code.
|
2021-05-11 20:31:54 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
### Added
|
2021-05-11 20:31:54 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
- Add flag for toggling permessage-deflate (#3286). The default is off so
|
|
|
|
compression will no longer be used by default. Use the --enable flag to
|
|
|
|
toggle it back on.
|
2021-05-11 20:31:54 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
### Fixed
|
2021-05-11 20:31:54 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
- Make rate limiter not count against successful logins (#3141).
|
|
|
|
- Refactor logout (#3277). This fixes logging out in some scenarios.
|
|
|
|
- Make sure directories exist (#3309). This fixes some errors on startup.
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
### Security
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
- Update dependencies with CVEs (#3223).
|
2021-05-10 21:05:55 +02:00
|
|
|
|
|
|
|
## Previous versions
|
|
|
|
|
2021-11-10 23:45:19 +01:00
|
|
|
This was added with `3.10.0`, which means any previous versions are not
|
|
|
|
documented in the changelog.
|
2021-05-10 21:05:55 +02:00
|
|
|
|
2022-02-01 17:45:19 +01:00
|
|
|
To see those, please visit the [Releases page](https://github.com/coder/code-server/releases).
|