Skip to content

Commit 22fb178

Browse files
committed
Merge remote-tracking branch 'upstream/master' into nielsen
2 parents af823e8 + 9ff535e commit 22fb178

File tree

14 files changed

+30
-24
lines changed

14 files changed

+30
-24
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ 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.
39+
Consider updating to the latest version and running code-server with our experimental flag `--link` if you don't want to worry about
3940

4041
- TLS
4142
- 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+
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/release-github-draft.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,13 @@ v$VERSION
1515
1616
VS Code v$(vscode_version)
1717
18-
- Summarize changes here with references to issues
18+
# New Features
19+
- ⭐ Summarize new features here with references to issues
20+
21+
## Bug Fixes
22+
- ⭐ Summarize bug fixes here with references to issues
23+
24+
Cheers! 🍻
1925
EOF
2026
}
2127

ci/build/test-standalone-release.sh

Lines changed: 2 additions & 1 deletion
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

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.1

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.1](https://img.shields.io/badge/AppVersion-3.7.1-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.1"` | |
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.1'
1010
pullPolicy: Always
1111

1212
imagePullSecrets: []

ci/images/centos7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ ENV PATH=/usr/local/go/bin:$GOPATH/bin:$PATH
2727
# Install Go dependencies
2828
ENV GO111MODULE=on
2929
RUN go get mvdan.cc/sh/v3/cmd/shfmt
30-
RUN go get github.com/goreleaser/nfpm/cmd/nfpm
30+
RUN go get github.com/goreleaser/nfpm/cmd/nfpm@v1.9.0
3131

3232
RUN curl -fsSL https://get.docker.com | sh

ci/images/debian10/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ENV PATH=/usr/local/go/bin:$GOPATH/bin:$PATH
4343
# Install Go dependencies
4444
ENV GO111MODULE=on
4545
RUN go get mvdan.cc/sh/v3/cmd/shfmt
46-
RUN go get github.com/goreleaser/nfpm/cmd/nfpm
46+
RUN go get github.com/goreleaser/nfpm/cmd/nfpm@v1.9.0
4747

4848
RUN VERSION="$(curl -fsSL https://storage.googleapis.com/kubernetes-release/release/stable.txt)" && \
4949
curl -fsSL "https://storage.googleapis.com/kubernetes-release/release/$VERSION/bin/linux/amd64/kubectl" > /usr/local/bin/kubectl \

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.1/code-server_3.7.1_amd64.deb
84+
sudo dpkg -i code-server_3.7.1_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.1/code-server-3.7.1-amd64.rpm
93+
sudo rpm -i code-server-3.7.1-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.1/code-server-3.7.1-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.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
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

0 commit comments

Comments
 (0)