Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 2cdaf33

Browse files
committed
v3.7.0
1 parent 8bf1bf2 commit 2cdaf33

File tree

9 files changed

+16
-15
lines changed

9 files changed

+16
-15
lines changed

‎README.md‎

Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 1 addition & 0 deletions
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+
2. 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/helm-chart/Chart.yaml‎

Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 2 additions & 2 deletions
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‎

Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 7 additions & 7 deletions
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‎

Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 1 addition & 1 deletion
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)

AltStyle によって変換されたページ (->オリジナル) /