File tree 8 files changed +34
-9
lines changed
test/unit/node/test-plugin
8 files changed +34
-9
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,31 @@ Code v99.99.999
20
20
21
21
-->
22
22
23
+ ## [ 4.8.0] ( https://github.com/coder/code-server/releases/tag/v4.8.0 ) - 2022-10-24
24
+
25
+ Code v1.72.1
26
+
27
+ ### Added
28
+
29
+ - Support for the Ports panel which leverages code-server's built-in proxy. It
30
+ also uses ` VSCODE_PROXY_URI ` where ` {{port}} ` is replace when forwarding a port.
31
+ Example: ` VSCODE_PROXY_URI=https://{{port}}.kyle.dev ` would forward an
32
+ application running on localhost:3000 to https://3000.kyle.dev
33
+ - Support for ` --disable-workspace-trust ` CLI flag
34
+ - Support for ` --goto ` flag to open file @ line: column
35
+ - Added Ubuntu-based images for Docker releases. If you run into issues with
36
+ ` PATH ` being overwritten in Docker please try the Ubuntu image as this is a
37
+ problem in the Debian base image.
38
+
39
+ ### Changed
40
+
41
+ - Updated Code to 1.72.1
42
+
43
+ ### Fixed
44
+
45
+ - Enabled ` BROWSER ` environment variable
46
+ - Patched ` asExternalUri ` to work so now extensions run inside code-server can use it
47
+
23
48
## [ 4.7.1] ( https://github.com/coder/code-server/releases/tag/v4.7.1 ) - 2022-09-30
24
49
25
50
Code v1.71.2
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 3.2.3
18
+ version : 3.3.0
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
22
22
# follow Semantic Versioning. They should reflect the version the application is using.
23
- appVersion : 4.7.1
23
+ appVersion : 4.8.0
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ replicaCount: 1
6
6
7
7
image :
8
8
repository : codercom/code-server
9
- tag : ' 4.7.1 '
9
+ tag : ' 4.8.0 '
10
10
pullPolicy : Always
11
11
12
12
# Specifies one or more secrets to be used when pulling images from a
Original file line number Diff line number Diff line change 1
1
# code-server Helm Chart
2
2
3
- [ ![ Version: 1.0.0] ( https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square )] ( https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square ) [ ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) [ ![ AppVersion: 4.7.1 ] ( https://img.shields.io/badge/AppVersion-4.7.1 -informational?style=flat-square )] ( https://img.shields.io/badge/AppVersion-4.7.1 -informational?style=flat-square )
3
+ [ ![ Version: 1.0.0] ( https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square )] ( https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square ) [ ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) [ ![ AppVersion: 4.8.0 ] ( https://img.shields.io/badge/AppVersion-4.8.0 -informational?style=flat-square )] ( https://img.shields.io/badge/AppVersion-4.8.0 -informational?style=flat-square )
4
4
5
5
[ code-server] ( https://github.com/coder/code-server ) code-server is VS Code running
6
6
on a remote server, accessible through the browser.
@@ -73,7 +73,7 @@ and their default values.
73
73
| hostnameOverride | string | ` "" ` |
74
74
| image.pullPolicy | string | ` "Always" ` |
75
75
| image.repository | string | ` "codercom/code-server" ` |
76
- | image.tag | string | ` "4.7.1 " ` |
76
+ | image.tag | string | ` "4.8.0 " ` |
77
77
| imagePullSecrets | list | ` [] ` |
78
78
| ingress.enabled | bool | ` false ` |
79
79
| nameOverride | string | ` "" ` |
Original file line number Diff line number Diff line change 1
1
{
2
- "versions" : [" v4.7.1 " ],
2
+ "versions" : [" v4.8.0 " ],
3
3
"routes" : [
4
4
{
5
5
"title" : " Home" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " code-server" ,
3
3
"license" : " MIT" ,
4
- "version" : " 4.7.1 " ,
4
+ "version" : " 4.8.0 " ,
5
5
"description" : " Run VS Code on a remote server." ,
6
6
"homepage" : " https://github.com/coder/code-server" ,
7
7
"bugs" : {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Add support for telemetry endpoint
3
3
To test:
4
4
1. Create a RequestBin - https://requestbin.io/
5
5
2. Run code-server with `CS_TELEMETRY_URL` set:
6
- i.e. `CS_TELEMETRY_URL="https://requestbin.io/1ebub9z1" ./code-server-4.7.1 -macos-amd64/bin/code-server`
6
+ i.e. `CS_TELEMETRY_URL="https://requestbin.io/1ebub9z1" ./code-server-4.8.0 -macos-amd64/bin/code-server`
7
7
3. Load code-server in browser an do things (i.e. open a file)
8
8
4. Refresh RequestBin and you should see logs
9
9
Original file line number Diff line number Diff line change 3
3
"name" : " test-plugin" ,
4
4
"version" : " 1.0.0" ,
5
5
"engines" : {
6
- "code-server" : " ^4.7.1 "
6
+ "code-server" : " ^4.8.0 "
7
7
},
8
8
"main" : " out/index.js" ,
9
9
"devDependencies" : {
You can’t perform that action at this time.
0 commit comments