Skip to content

Commit c6012ea

Browse files
authored
Merge branch 'main' into jsjoeio/update-deps
2 parents b447da9 + 606811f commit c6012ea

File tree

10 files changed

+36
-11
lines changed

10 files changed

+36
-11
lines changed

.github/workflows/security.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
fetch-depth: 0
6666

6767
- name: Run Trivy vulnerability scanner in repo mode
68-
uses: aquasecurity/trivy-action@d63413b0a4a4482237085319f7f4a1ce99a8f2ac
68+
uses: aquasecurity/trivy-action@e55de85beea5fcec743de6bb6bc56943a0af3c33
6969
with:
7070
scan-type: "fs"
7171
scan-ref: "."

.github/workflows/trivy-docker.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/checkout@v3
5252

5353
- name: Run Trivy vulnerability scanner in image mode
54-
uses: aquasecurity/trivy-action@d63413b0a4a4482237085319f7f4a1ce99a8f2ac
54+
uses: aquasecurity/trivy-action@e55de85beea5fcec743de6bb6bc56943a0af3c33
5555
with:
5656
image-ref: "docker.io/codercom/code-server:latest"
5757
ignore-unfixed: true

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,31 @@ Code v99.99.999
2020
2121
-->
2222

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+
2348
## [4.7.1](https://github.com/coder/code-server/releases/tag/v4.7.1) - 2022-09-30
2449

2550
Code v1.71.2

ci/helm-chart/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 3.2.3
18+
version: 3.3.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: 4.7.1
23+
appVersion: 4.8.0

ci/helm-chart/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replicaCount: 1
66

77
image:
88
repository: codercom/code-server
9-
tag: '4.7.1'
9+
tag: '4.8.0'
1010
pullPolicy: Always
1111

1212
# Specifies one or more secrets to be used when pulling images from a

docs/helm.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# code-server Helm Chart
22

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)
44

55
[code-server](https://github.com/coder/code-server) code-server is VS Code running
66
on a remote server, accessible through the browser.
@@ -73,7 +73,7 @@ and their default values.
7373
| hostnameOverride | string | `""` |
7474
| image.pullPolicy | string | `"Always"` |
7575
| image.repository | string | `"codercom/code-server"` |
76-
| image.tag | string | `"4.7.1"` |
76+
| image.tag | string | `"4.8.0"` |
7777
| imagePullSecrets | list | `[]` |
7878
| ingress.enabled | bool | `false` |
7979
| nameOverride | string | `""` |

docs/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"versions": ["v4.7.1"],
2+
"versions": ["v4.8.0"],
33
"routes": [
44
{
55
"title": "Home",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "code-server",
33
"license": "MIT",
4-
"version": "4.7.1",
4+
"version": "4.8.0",
55
"description": "Run VS Code on a remote server.",
66
"homepage": "https://github.com/coder/code-server",
77
"bugs": {

patches/telemetry.diff

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Add support for telemetry endpoint
33
To test:
44
1. Create a RequestBin - https://requestbin.io/
55
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`
77
3. Load code-server in browser an do things (i.e. open a file)
88
4. Refresh RequestBin and you should see logs
99

test/unit/node/test-plugin/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "test-plugin",
44
"version": "1.0.0",
55
"engines": {
6-
"code-server": "^4.7.1"
6+
"code-server": "^4.8.0"
77
},
88
"main": "out/index.js",
99
"devDependencies": {

0 commit comments

Comments
 (0)