Skip to content

Commit f5e3dca

Browse files
authored
Merge pull request #2309 from cdr/v3.7.0
v3.7.0
2 parents 8bf1bf2 + f64599b commit f5e3dca

File tree

10 files changed

+18
-16
lines changed

10 files changed

+18
-16
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ We also have an in-depth [setup and configuration](./doc/guide.md) guide.
3535

3636
### Alpha Program 🐣
3737

38-
We're working on a cloud platform that makes deploying and managing code-server easier. Consider [updating to 3.6.2](https://github.com/cdr/code-server/releases/tag/v3.6.2) and running code-server with our experimental flag `--link` if you don't want to worry about
38+
We're working on a cloud platform that makes deploying and managing code-server easier. Consider [updating to 3.7.0](https://github.com/cdr/code-server/releases/tag/v3.7.0) and running code-server with our experimental flag `--link` if you don't want to worry about
3939

4040
- TLS
4141
- Authentication

ci/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub)
1717
1. Update the version of code-server and make a PR.
1818
1. Update in `package.json`
1919
2. Update in [./doc/install.md](../doc/install.md)
20+
3. Update in [./ci/helm-chart/README.md](../ci/helm-chart/README.md)
2021
2. GitHub actions will generate the `npm-package`, `release-packages` and `release-images` artifacts.
2122
1. You do not have to wait for these.
2223
3. Run `yarn release:github-draft` to create a GitHub draft release from the template with

ci/build/test-standalone-release.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ main() {
1515
./release-standalone/bin/code-server --extensions-dir "$EXTENSIONS_DIR" --install-extension ms-python.python
1616
local installed_extensions
1717
installed_extensions="$(./release-standalone/bin/code-server --extensions-dir "$EXTENSIONS_DIR" --list-extensions 2>&1)"
18-
if [[ $installed_extensions != "ms-python.python" ]]; then
18+
# We use grep as ms-python.python may have dependency extensions that change.
19+
if ! echo "$installed_extensions" | grep -q "ms-python.python"; then
1920
echo "Unexpected output from listing extensions:"
2021
echo "$installed_extensions"
2122
exit 1

ci/helm-chart/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ version: 1.0.0
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: 3.6.2
23+
appVersion: 3.7.0

ci/helm-chart/README.md

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

3-
![Version: 1.0.0](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) ![AppVersion: 3.6.2](https://img.shields.io/badge/AppVersion-3.6.2-informational?style=flat-square)
3+
![Version: 1.0.0](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) ![AppVersion: 3.7.0](https://img.shields.io/badge/AppVersion-3.7.0-informational?style=flat-square)
44

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

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: '3.6.2'
9+
tag: '3.7.0'
1010
pullPolicy: Always
1111

1212
imagePullSecrets: []

doc/install.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -80,17 +80,17 @@ commands presented in the rest of this document.
8080
## Debian, Ubuntu
8181

8282
```bash
83-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.6.1/code-server_3.6.1_amd64.deb
84-
sudo dpkg -i code-server_3.6.1_amd64.deb
83+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.0/code-server_3.7.0_amd64.deb
84+
sudo dpkg -i code-server_3.7.0_amd64.deb
8585
sudo systemctl enable --now code-server@$USER
8686
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
8787
```
8888

8989
## Fedora, CentOS, RHEL, SUSE
9090

9191
```bash
92-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.6.1/code-server-3.6.1-amd64.rpm
93-
sudo rpm -i code-server-3.6.1-amd64.rpm
92+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.0/code-server-3.7.0-amd64.rpm
93+
sudo rpm -i code-server-3.7.0-amd64.rpm
9494
sudo systemctl enable --now code-server@$USER
9595
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
9696
```
@@ -159,10 +159,10 @@ Here is an example script for installing and using a standalone `code-server` re
159159

160160
```bash
161161
mkdir -p ~/.local/lib ~/.local/bin
162-
curl -fL https://github.com/cdr/code-server/releases/download/v3.6.1/code-server-3.6.1-linux-amd64.tar.gz \
162+
curl -fL https://github.com/cdr/code-server/releases/download/v3.7.0/code-server-3.7.0-linux-amd64.tar.gz \
163163
| tar -C ~/.local/lib -xz
164-
mv ~/.local/lib/code-server-3.6.1-linux-amd64 ~/.local/lib/code-server-3.6.1
165-
ln -s ~/.local/lib/code-server-3.6.1/bin/code-server ~/.local/bin/code-server
164+
mv ~/.local/lib/code-server-3.7.0-linux-amd64 ~/.local/lib/code-server-3.7.0
165+
ln -s ~/.local/lib/code-server-3.7.0/bin/code-server ~/.local/bin/code-server
166166
PATH="~/.local/bin:$PATH"
167167
code-server
168168
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml

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": "3.6.2",
4+
"version": "3.7.0",
55
"description": "Run VS Code on a remote server.",
66
"homepage": "https://github.com/cdr/code-server",
77
"bugs": {

src/node/plugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export class PluginAPI {
185185
if (!packageJSON.engines || !packageJSON.engines["code-server"]) {
186186
throw new Error(`plugin package.json missing code-server range like:
187187
"engines": {
188-
"code-server": "^3.6.0"
188+
"code-server": "^3.7.0"
189189
}
190190
`)
191191
}

test/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": "^3.6.0"
6+
"code-server": "^3.7.0"
77
},
88
"main": "out/index.js",
99
"devDependencies": {

0 commit comments

Comments
 (0)