Skip to content

Commit e983ba9

Browse files
authored
v3.10.1 (#3406)
* Update versions * Update changelog
1 parent b3bd6c3 commit e983ba9

10 files changed

+25
-28
lines changed

CHANGELOG.md

+6-10
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
# Changelog
44

55
- [Changelog](#changelog)
6-
- [Next Version](#next-version)
7-
- [New Features](#new-features)
6+
- [3.10.1](#3101)
87
- [Bug Fixes](#bug-fixes)
98
- [Documentation](#documentation)
109
- [Development](#development)
1110
- [3.10.0](#3100)
12-
- [New Features](#new-features-1)
11+
- [New Features](#new-features)
1312
- [Bug Fixes](#bug-fixes-1)
1413
- [Documentation](#documentation-1)
1514
- [Development](#development-1)
@@ -52,18 +51,15 @@ VS Code v0.00.0
5251
5352
-->
5453

55-
## Next Version
56-
57-
VS Code v1.56
54+
## 3.10.1
5855

59-
### New Features
60-
61-
- item
56+
VS Code v1.56.1
6257

6358
### Bug Fixes
6459

6560
- fix: Check the logged user instead of $USER #3330 @videlanicolas
6661
- fix: Fix broken node_modules.asar symlink in npm package #3355 @code-asher
62+
- fix: Update cloud agent to fix version issue #3342 @oxy
6763

6864
### Documentation
6965

@@ -82,7 +78,7 @@ VS Code v1.56
8278

8379
## 3.10.0
8480

85-
VS Code v1.56
81+
VS Code v1.56.0
8682

8783
### New Features
8884

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# code-server · [!["GitHub Discussions"](https://img.shields.io/badge/%20GitHub-%20Discussions-gray.svg?longCache=true&logo=github&colorB=purple)](https://github.com/cdr/code-server/discussions) [!["Join us on Slack"](https://img.shields.io/badge/join-us%20on%20slack-gray.svg?longCache=true&logo=slack&colorB=brightgreen)](https://cdr.co/join-community) [![Twitter Follow](https://img.shields.io/twitter/follow/CoderHQ?label=%40CoderHQ&style=social)](https://twitter.com/coderhq)
22

33
[![codecov](https://codecov.io/gh/cdr/code-server/branch/main/graph/badge.svg?token=5iM9farjnC)](https://codecov.io/gh/cdr/code-server)
4-
[![See latest docs](https://img.shields.io/static/v1?label=Docs&message=see%20latest%20&color=blue)](https://github.com/cdr/code-server/tree/v3.10.0/docs)
4+
[![See latest docs](https://img.shields.io/static/v1?label=Docs&message=see%20latest%20&color=blue)](https://github.com/cdr/code-server/tree/v3.10.1/docs)
55

66
Run [VS Code](https://github.com/Microsoft/vscode) on any machine anywhere and access it in the browser.
77

ci/helm-chart/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ version: 1.0.3
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.10.0
23+
appVersion: 3.10.1

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.10.0](https://img.shields.io/badge/AppVersion-3.10.0-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.10.1](https://img.shields.io/badge/AppVersion-3.10.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.10.0"` | |
75+
| image.tag | string | `"3.10.1"` | |
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.10.0'
9+
tag: '3.10.1'
1010
pullPolicy: Always
1111

1212
imagePullSecrets: []

ci/lib.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,15 @@ arch() {
4949
esac
5050
}
5151

52-
# Grabs the most recent ci.yaml github workflow run that was successful and triggered from the same commit being pushd.
52+
# Grabs the most recent ci.yaml github workflow run that was triggered from the
53+
# pull request of the release branch for this version (regardless of whether
54+
# that run succeeded or failed). The release branch name must be in semver
55+
# format with a v prepended.
5356
# This will contain the artifacts we want.
5457
# https://developer.github.com/v3/actions/workflow-runs/#list-workflow-runs
5558
get_artifacts_url() {
5659
local artifacts_url
5760
local workflow_runs_url="repos/:owner/:repo/actions/workflows/ci.yaml/runs?event=pull_request"
58-
# For releases, we look for run based on the branch name v$code_server_version
59-
# example: v3.10.0
6061
local version_branch="v$VERSION"
6162
artifacts_url=$(gh api "$workflow_runs_url" | jq -r ".workflow_runs[] | select(.head_branch == \"$version_branch\") | .artifacts_url" | head -n 1)
6263
if [[ -z "$artifacts_url" ]]; then

docs/CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ There are several differences, however. Here is what is needed:
4545
- [`jq`](https://stedolan.github.io/jq/)
4646
- used to build code-server releases
4747
- [`gnupg`](https://gnupg.org/index.html)
48-
- all commits must be signed an verified
48+
- all commits must be signed and verified
4949
- see GitHub's ["Managing commit signature verification"](https://docs.github.com/en/github/authenticating-to-github/managing-commit-signature-verification) or follow [this tutorial](https://joeprevite.com/verify-commits-on-github)
5050
- `build-essential` (Linux)
5151
- `apt-get install -y build-essential` - used by VS Code

docs/install.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ NOTE: The standalone arm64 .deb does not support Ubuntu <16.04.
9393
Please upgrade or [build with yarn](#yarn-npm).
9494

9595
```bash
96-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.10.0/code-server_3.10.0_amd64.deb
97-
sudo dpkg -i code-server_3.10.0_amd64.deb
96+
curl -fOL https://github.com/cdr/code-server/releases/download/v$VERSION/code-server_$VERSION_amd64.deb
97+
sudo dpkg -i code-server_$VERSION_amd64.deb
9898
sudo systemctl enable --now code-server@$USER
9999
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
100100
```
@@ -105,8 +105,8 @@ NOTE: The standalone arm64 .rpm does not support CentOS 7.
105105
Please upgrade or [build with yarn](#yarn-npm).
106106

107107
```bash
108-
curl -fOL https://github.com/cdr/code-server/releases/download/v3.10.0/code-server-3.10.0-amd64.rpm
109-
sudo rpm -i code-server-3.10.0-amd64.rpm
108+
curl -fOL https://github.com/cdr/code-server/releases/download/v$VERSION/code-server-$VERSION-amd64.rpm
109+
sudo rpm -i code-server-$VERSION-amd64.rpm
110110
sudo systemctl enable --now code-server@$USER
111111
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
112112
```
@@ -184,10 +184,10 @@ Here is an example script for installing and using a standalone `code-server` re
184184

185185
```bash
186186
mkdir -p ~/.local/lib ~/.local/bin
187-
curl -fL https://github.com/cdr/code-server/releases/download/v3.10.0/code-server-3.10.0-linux-amd64.tar.gz \
187+
curl -fL https://github.com/cdr/code-server/releases/download/v$VERSION/code-server-$VERSION-linux-amd64.tar.gz \
188188
| tar -C ~/.local/lib -xz
189-
mv ~/.local/lib/code-server-3.10.0-linux-amd64 ~/.local/lib/code-server-3.10.0
190-
ln -s ~/.local/lib/code-server-3.10.0/bin/code-server ~/.local/bin/code-server
189+
mv ~/.local/lib/code-server-$VERSION-linux-amd64 ~/.local/lib/code-server-$VERSION
190+
ln -s ~/.local/lib/code-server-$VERSION/bin/code-server ~/.local/bin/code-server
191191
PATH="~/.local/bin:$PATH"
192192
code-server
193193
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ install_npm() {
419419
echoh
420420
echoerr "Please install npm or yarn to install code-server!"
421421
echoerr "You will need at least node v12 and a few C dependencies."
422-
echoerr "See the docs https://github.com/cdr/code-server/blob/v3.10.0/docs/install.md#yarn-npm"
422+
echoerr "See the docs https://github.com/cdr/code-server/blob/v3.10.1/docs/install.md#yarn-npm"
423423
exit 1
424424
}
425425

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

0 commit comments

Comments
 (0)