Skip to content

Commit b1567be

Browse files
committed
Merge remote-tracking branch 'origin/master' into reconnect-6fa3
2 parents 70133f6 + ae65c83 commit b1567be

File tree

18 files changed

+1167
-375
lines changed

18 files changed

+1167
-375
lines changed

ci/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub)
1818
1. Update in `package.json`
1919
2. Update in [./doc/install.md](../doc/install.md)
2020
3. Update in [./ci/helm-chart/README.md](../ci/helm-chart/README.md)
21+
- Remember to update the chart version as well on top of appVersion in `Chart.yaml`.
2122
2. GitHub actions will generate the `npm-package`, `release-packages` and `release-images` artifacts.
2223
1. You do not have to wait for these.
2324
3. Run `yarn release:github-draft` to create a GitHub draft release from the template with

ci/build/release-github-draft.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ v$VERSION
1515
1616
VS Code v$(vscode_version)
1717
18-
# New Features
18+
Upgrading is as easy as installing the new version over the old one. code-server
19+
maintains all user data in \`~/.local/share/code-server\` so that it is preserved in between
20+
installations.
21+
22+
## New Features
1923
- ⭐ Summarize new features here with references to issues
2024
2125
## Bug Fixes

ci/dev/vscode.patch

Lines changed: 870 additions & 144 deletions
Large diffs are not rendered by default.

ci/helm-chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
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: 1.0.0
18+
version: 1.0.2
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: 3.7.1
23+
appVersion: 3.7.3

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.7.1](https://img.shields.io/badge/AppVersion-3.7.1-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.3](https://img.shields.io/badge/AppVersion-3.7.3-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.7.1"` | |
75+
| image.tag | string | `"3.7.3"` | |
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.7.1'
9+
tag: '3.7.3'
1010
pullPolicy: Always
1111

1212
imagePullSecrets: []

doc/install.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
33
# Install
44

5+
- [Upgrading](#upgrading)
56
- [install.sh](#installsh)
67
- [Flags](#flags)
78
- [Detection Reference](#detection-reference)
@@ -19,6 +20,12 @@
1920
This document demonstrates how to install `code-server` on
2021
various distros and operating systems.
2122

23+
## Upgrading
24+
25+
When upgrading you can just install the new version over the old one. code-server
26+
maintains all user data in `~/.local/share/code-server` so that it is preserved in between
27+
installations.
28+
2229
## install.sh
2330

2431
We have a [script](../install.sh) to install code-server for Linux, macOS and FreeBSD.
@@ -80,17 +87,17 @@ commands presented in the rest of this document.
8087
## Debian, Ubuntu
8188

8289
```bash
83-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.1/code-server_3.7.1_amd64.deb
84-
sudo dpkg -i code-server_3.7.1_amd64.deb
90+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.3/code-server_3.7.3_amd64.deb
91+
sudo dpkg -i code-server_3.7.3_amd64.deb
8592
sudo systemctl enable --now code-server@$USER
8693
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
8794
```
8895

8996
## Fedora, CentOS, RHEL, SUSE
9097

9198
```bash
92-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.1/code-server-3.7.1-amd64.rpm
93-
sudo rpm -i code-server-3.7.1-amd64.rpm
99+
curl -fOL https://github.com/cdr/code-server/releases/download/v3.7.3/code-server-3.7.3-amd64.rpm
100+
sudo rpm -i code-server-3.7.3-amd64.rpm
94101
sudo systemctl enable --now code-server@$USER
95102
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
96103
```
@@ -159,10 +166,10 @@ Here is an example script for installing and using a standalone `code-server` re
159166

160167
```bash
161168
mkdir -p ~/.local/lib ~/.local/bin
162-
curl -fL https://github.com/cdr/code-server/releases/download/v3.7.1/code-server-3.7.1-linux-amd64.tar.gz \
169+
curl -fL https://github.com/cdr/code-server/releases/download/v3.7.3/code-server-3.7.3-linux-amd64.tar.gz \
163170
| tar -C ~/.local/lib -xz
164-
mv ~/.local/lib/code-server-3.7.1-linux-amd64 ~/.local/lib/code-server-3.7.1
165-
ln -s ~/.local/lib/code-server-3.7.1/bin/code-server ~/.local/bin/code-server
171+
mv ~/.local/lib/code-server-3.7.3-linux-amd64 ~/.local/lib/code-server-3.7.3
172+
ln -s ~/.local/lib/code-server-3.7.3/bin/code-server ~/.local/bin/code-server
166173
PATH="~/.local/bin:$PATH"
167174
code-server
168175
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml

lib/vscode

Submodule vscode updated 920 files

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

src/browser/pages/login.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,7 @@ body {
3737
.login-form > .field > .submit {
3838
margin-left: 20px;
3939
}
40+
41+
input {
42+
-webkit-appearance: none;
43+
}

0 commit comments

Comments
 (0)