-
Notifications
You must be signed in to change notification settings - Fork 6.3k
release: 4.8.0 #5698
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
release: 4.8.0 #5698
Changes from 4 commits
960db54
96d36b5
98e735a
504524c
420ce80
0202f1a
1e50417
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,29 @@ Code v99.99.999 | |
|
||
--> | ||
|
||
## [4.8.0](https://github.com/coder/code-server/releases/tag/v4.8.0) - 2022年10月24日 | ||
|
||
Code v1.72.1 | ||
|
||
### Added | ||
|
||
- Support for the Ports panel which leverages code-server's built-in proxy. It | ||
also uses `VSCODE_PROXY_URI` where `{{port}}` is replace when forwarding a port. | ||
Example: `VSCODE_PROXY_URI=https://{{port}}.kyle.dev` would forward an | ||
application running on localhost:3000 to https://3000.kyle.dev | ||
Comment on lines
+29
to
+32
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Love the example! Wonderful use of the changelog. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "Don’t let your friends dump git logs into changelogs." - applying what I learned from you! |
||
- support for `--disable-workspace-trust` CLI flag | ||
- support for `--goto` flag to open file @ line:column | ||
|
||
### Changed | ||
|
||
- Updated Code to 1.72.1 | ||
|
||
### Fixed | ||
|
||
- Fixed bug in code-server (run with Docker) where PATH was always overwritten | ||
jsjoeio marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
- Enalbed `BROWSER` environment variable | ||
jsjoeio marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
- Patched `asExternalUri` to work so now extensions run inside code-server can use it | ||
jsjoeio marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
## [4.7.1](https://github.com/coder/code-server/releases/tag/v4.7.1) - 2022年09月30日 | ||
|
||
Code v1.71.2 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"versions": ["v4.7.1"], | ||
"versions": ["v4.8.0"], | ||
"routes": [ | ||
{ | ||
"title": "Home", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ Add support for telemetry endpoint | |
To test: | ||
1. Create a RequestBin - https://requestbin.io/ | ||
2. Run code-server with `CS_TELEMETRY_URL` set: | ||
i.e. `CS_TELEMETRY_URL="https://requestbin.io/1ebub9z1" ./code-server-4.7.1-macos-amd64/bin/code-server` | ||
i.e. `CS_TELEMETRY_URL="https://requestbin.io/1ebub9z1" ./code-server-4.8.0-macos-amd64/bin/code-server` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not something we need to do now but maybe we generalize the invocation just to just There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good call! |
||
3. Load code-server in browser an do things (i.e. open a file) | ||
4. Refresh RequestBin and you should see logs | ||
|
||
|