@@ -32,9 +32,41 @@ Code v0.00.0
3232
3333Code v1.63.0
3434
35+ ### Added
36+
37+ - Support for injecting GitHub token into Code so extensions can make use of it.
38+ This can be done with the ` GITHUB_TOKEN ` environment variable or ` github-auth `
39+ in the config file.
40+ - New flag ` --socket-mode ` allows setting the mode (file permissions) of the
41+ socket created when using ` --socket ` .
42+ - The version of Code bundled with code-server now appears when using the
43+ ` --version ` flag. For example: ` 4.0.3 5cdfe74686aa73e023f8354a9a6014eb30caa7dd with Code 1.63.0 ` .
44+ If you have been parsing this flag for the version you might want to use
45+ ` --version --json ` instead as doing that will be more stable.
46+
3547### Changed
48+
49+ - The workspace or folder passed on the CLI will now use the same redirect
50+ method that the last opened workspace or folder uses. This means if you pass
51+ something like ` code-server /path/to/dir ` you will now get a query parameter
52+ added (like so: ` my-domain.tld?folder=/path/to/dir ` ), making it easier to edit
53+ by hand and making it consistent with the last opened and menu open behaviors.
54+ - The folder/workspace query parameter no longer has encoded slashes, making
55+ them more readable and editable by hand. This was only affecting the last
56+ opened behavior, not opens from the menu.
57+
3658### Fixed
3759
60+ - Fix web sockets not connecting when using ` --cert ` .
61+ - Prevent workspace state collisions when opening a workspace that shares the
62+ same file path with another workspace on a different machine that shares the
63+ same domain. This was causing files opened in one workspace to be "re-"opened
64+ in the other workspace when that workspace was first opened.
65+ - Pin the Express version which should make installing from npm work again.
66+ - Propagate signals to code-server in the Docker image which means it should
67+ stop more quickly and gracefully.
68+ - Fix missing argon binaries in the standalone release on arm machines.
69+
3870## [ 4.0.2] ( https://github.com/coder/code-server/releases/tag/v4.0.2 ) - 2022-01-27
3971
4072Code v1.63.0
0 commit comments