Skip to content

Commit 7aa087a

Browse files
authored
release: v4.1.0 (#4946)
* release: bump version to 4.1.0 * Rename VS Code to Code in changelog * Catch up changelog * Add release as valid semantic tag
1 parent b61a8ad commit 7aa087a

File tree

10 files changed

+62
-21
lines changed

10 files changed

+62
-21
lines changed

.github/semantic.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,6 @@ types:
6161
# implementations. For example, if a commit adds a fix + test, it's a fix
6262
# commit. If a commit is simply bumping coverage, it's a test commit.
6363
- test
64+
65+
# A new release.
66+
- release

CHANGELOG.md

+50-11
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,54 @@ VS Code v99.99.999
2222

2323
## [Unreleased](https://github.com/coder/code-server/releases)
2424

25-
VS Code v0.00.0
25+
Code v0.00.0
2626

2727
### Changed
2828

2929
- Add here
3030

31+
## [4.1.0](https://github.com/coder/code-server/releases/tag/v4.1.0) - 2022-03-03
32+
33+
Code v1.63.0
34+
35+
### Added
36+
37+
- Support for injecting GitHub token into Code so extensions can make use of it.
38+
This can be done with the `GITHUB_TOKEN` environment variable or `github-auth`
39+
in the config file.
40+
- New flag `--socket-mode` allows setting the mode (file permissions) of the
41+
socket created when using `--socket`.
42+
- The version of Code bundled with code-server now appears when using the
43+
`--version` flag. For example: `4.0.2 5cdfe74686aa73e023f8354a9a6014eb30caa7dd with Code 1.63.0`.
44+
If you have been parsing this flag for the version you might want to use
45+
`--version --json` instead as doing that will be more stable.
46+
47+
### Changed
48+
49+
- The workspace or folder passed on the CLI will now use the same redirect
50+
method that the last opened workspace or folder uses. This means if you use
51+
something like `code-server /path/to/dir` you will now get a query parameter
52+
added (like so: `my-domain.tld?folder=/path/to/dir`), making it easier to edit
53+
by hand and making it consistent with the last opened and menu open behaviors.
54+
- The folder/workspace query parameter no longer has encoded slashes, making
55+
them more readable and editable by hand. This was only affecting the last
56+
opened behavior, not opens from the menu.
57+
58+
### Fixed
59+
60+
- Fix web sockets not connecting when using `--cert`.
61+
- Prevent workspace state collisions when opening a workspace that shares the
62+
same file path with another workspace on a different machine that shares the
63+
same domain. This was causing files opened in one workspace to be "re-"opened
64+
in the other workspace when the other workspace is opened.
65+
- Pin the Express version which should make installing from npm work again.
66+
- Propagate signals to code-server in the Docker image which means it should
67+
stop more quickly and gracefully.
68+
- Fix missing argon binaries in the standalone releases on arm machines.
69+
3170
## [4.0.2](https://github.com/coder/code-server/releases/tag/v4.0.2) - 2022-01-27
3271

33-
VS Code v1.63.0
72+
Code v1.63.0
3473

3574
### Fixed
3675

@@ -41,7 +80,7 @@ VS Code v1.63.0
4180

4281
## [4.0.1](https://github.com/coder/code-server/releases/tag/v4.0.1) - 2022-01-04
4382

44-
VS Code v1.63.0
83+
Code v1.63.0
4584

4685
code-server has been rebased on upstream's newly open-sourced server
4786
implementation (#4414).
@@ -57,7 +96,7 @@ implementation (#4414).
5796
settings file (we rely on the already-existing query object instead).
5897
- The marketplace override environment variables `SERVICE_URL` and `ITEM_URL`
5998
have been replaced with a single `EXTENSIONS_GALLERY` variable that
60-
corresponds to `extensionsGallery` in VS Code's `product.json`.
99+
corresponds to `extensionsGallery` in Code's `product.json`.
61100

62101
### Added
63102

@@ -79,11 +118,11 @@ implementation (#4414).
79118

80119
## [3.12.0](https://github.com/coder/code-server/releases/tag/v3.12.0) - 2021-09-15
81120

82-
VS Code v1.60.0
121+
Code v1.60.0
83122

84123
### Changed
85124

86-
- Upgrade VS Code to 1.60.0.
125+
- Upgrade Code to 1.60.0.
87126

88127
### Fixed
89128

@@ -99,7 +138,7 @@ Undocumented (see releases page).
99138

100139
## [3.10.2](https://github.com/coder/code-server/releases/tag/v3.10.2) - 2021-05-21
101140

102-
VS Code v1.56.1
141+
Code v1.56.1
103142

104143
### Added
105144

@@ -115,7 +154,7 @@ VS Code v1.56.1
115154

116155
## [3.10.1](https://github.com/coder/code-server/releases/tag/v3.10.1) - 2021-05-17
117156

118-
VS Code v1.56.1
157+
Code v1.56.1
119158

120159
### Fixed
121160

@@ -129,13 +168,13 @@ VS Code v1.56.1
129168

130169
## [3.10.0](https://github.com/coder/code-server/releases/tag/v3.10.0) - 2021-05-10
131170

132-
VS Code v1.56.0
171+
Code v1.56.0
133172

134173
### Changed
135174

136-
- Update to VS Code 1.56.0 (#3269).
175+
- Update to Code 1.56.0 (#3269).
137176
- Minor connections refactor (#3178). Improves connection stability.
138-
- Use ptyHostService (#3308). This brings us closer to upstream VS Code.
177+
- Use ptyHostService (#3308). This brings us closer to upstream Code.
139178

140179
### Added
141180

ci/helm-chart/Chart.yaml

+2-2
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: 2.1.0
18+
version: 2.2.0
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: 4.0.2
23+
appVersion: 4.1.0

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

1212
# Specifies one or more secrets to be used when pulling images from a

docs/MAINTAINING.md

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ as well as share our workflow for maintaining the project.
3434
Current maintainers:
3535

3636
- @code-asher
37-
- @TeffenEllis
3837
- @jsjoeio
3938

4039
Occasionally, other Coder employees may step in time to time to assist with code-server.

docs/README.md

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

3-
[!["GitHub Discussions"](https://img.shields.io/badge/%20GitHub-%20Discussions-gray.svg?longCache=true&logo=github&colorB=purple)](https://github.com/coder/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://coder.com/community) [![Twitter Follow](https://img.shields.io/twitter/follow/CoderHQ?label=%40CoderHQ&style=social)](https://twitter.com/coderhq) [![codecov](https://codecov.io/gh/coder/code-server/branch/main/graph/badge.svg?token=5iM9farjnC)](https://codecov.io/gh/coder/code-server) [![See v4.0.2 docs](https://img.shields.io/static/v1?label=Docs&message=see%20v4.0.2%20&color=blue)](https://github.com/coder/code-server/tree/v4.0.2/docs)
3+
[!["GitHub Discussions"](https://img.shields.io/badge/%20GitHub-%20Discussions-gray.svg?longCache=true&logo=github&colorB=purple)](https://github.com/coder/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://coder.com/community) [![Twitter Follow](https://img.shields.io/twitter/follow/CoderHQ?label=%40CoderHQ&style=social)](https://twitter.com/coderhq) [![codecov](https://codecov.io/gh/coder/code-server/branch/main/graph/badge.svg?token=5iM9farjnC)](https://codecov.io/gh/coder/code-server) [![See v4.1.0 docs](https://img.shields.io/static/v1?label=Docs&message=see%20v4.1.0%20&color=blue)](https://github.com/coder/code-server/tree/v4.1.0/docs)
44

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

docs/collaboration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ As `code-server` is based on VS Code, you can follow the steps described on Duck
6060
code-server --enable-proposed-api genuitecllc.codetogether
6161
```
6262

63-
Another option would be to add a value in code-server's [config file](https://coder.com/docs/code-server/v4.0.2/FAQ#how-does-the-config-file-work).
63+
Another option would be to add a value in code-server's [config file](https://coder.com/docs/code-server/v4.1.0/FAQ#how-does-the-config-file-work).
6464

6565
3. Refresh code-server and navigate to the CodeTogether icon in the sidebar to host or join a coding session.

docs/helm.md

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

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

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

docs/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"versions": ["v4.0.2"],
2+
"versions": ["v4.1.0"],
33
"routes": [
44
{
55
"title": "Home",

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

0 commit comments

Comments
 (0)