File tree 6 files changed +27
-6
lines changed
6 files changed +27
-6
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,18 @@ Code v99.99.999
20
20
21
21
-->
22
22
23
+ ## [ 4.8.2] ( https://github.com/coder/code-server/releases/tag/v4.8.2 ) - 2022-11-02
24
+
25
+ Code v1.72.1
26
+
27
+ ### Added
28
+
29
+ - New text in the Getting Started page with info about
30
+ ` coder/coder ` . This is enabled by default but can be disabled by passing the CLI
31
+ flag ` --disable-getting-started-override ` or setting
32
+ ` CS_DISABLE_GETTING_STARTED_OVERRIDE=1 ` or
33
+ ` CS_DISABLE_GETTING_STARTED_OVERRIDE=true ` .
34
+
23
35
## [ 4.8.1] ( https://github.com/coder/code-server/releases/tag/v4.8.1 ) - 2022-10-28
24
36
25
37
Code v1.72.1
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 3.3.1
18
+ version : 3.3.2
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
22
22
# follow Semantic Versioning. They should reflect the version the application is using.
23
- appVersion : 4.8.1
23
+ appVersion : 4.8.2
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ replicaCount: 1
6
6
7
7
image :
8
8
repository : codercom/code-server
9
- tag : ' 4.8.1 '
9
+ tag : ' 4.8.2 '
10
10
pullPolicy : Always
11
11
12
12
# Specifies one or more secrets to be used when pulling images from a
Original file line number Diff line number Diff line change 15
15
- [ Changelog] ( #changelog )
16
16
- [ Releases] ( #releases )
17
17
- [ Publishing a release] ( #publishing-a-release )
18
+ - [ Release Candidates] ( #release-candidates )
18
19
- [ AUR] ( #aur )
19
20
- [ Docker] ( #docker )
20
21
- [ Homebrew] ( #homebrew )
@@ -141,7 +142,7 @@ changelog](https://github.com/emacs-mirror/emacs/blob/master/etc/NEWS).
141
142
142
143
### Publishing a release
143
144
144
- 1 . Create a new branch called ` release `
145
+ 1 . Create a new branch called ` release/v0.0.0 ` (replace 0s with actual version aka v4.5.0)
145
146
1 . Run ` yarn release:prep `
146
147
1 . Bump chart version in ` Chart.yaml ` .
147
148
1 . Summarize the major changes in the ` CHANGELOG.md `
@@ -152,6 +153,14 @@ changelog](https://github.com/emacs-mirror/emacs/blob/master/etc/NEWS).
152
153
artifacts, publish the NPM package from ` npm-package ` , and publish the Docker
153
154
Hub image from ` release-images ` .
154
155
156
+ #### Release Candidates
157
+
158
+ We prefer to do release candidates so the community can test things before a full-blown release. To do this follow the same steps as above but:
159
+
160
+ 1 . Only bump version in ` package.json `
161
+ 1 . use ` 0.0.0-rc.0 `
162
+ 1 . When you publish the release, select "pre-release"
163
+
155
164
#### AUR
156
165
157
166
We publish to AUR as a package [ here] ( https://aur.archlinux.org/packages/code-server/ ) . This process is manual and can be done by following the steps in [ this repo] ( https://github.com/coder/code-server-aur ) .
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " code-server" ,
3
3
"license" : " MIT" ,
4
- "version" : " 4.8.1.1 " ,
4
+ "version" : " 4.8.2 " ,
5
5
"description" : " Run VS Code on a remote server." ,
6
6
"homepage" : " https://github.com/coder/code-server" ,
7
7
"bugs" : {
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ export class PluginAPI {
227
227
` )
228
228
}
229
229
if ( ! semver . satisfies ( version , packageJSON . engines [ "code-server" ] ) ) {
230
- throw new Error (
230
+ this . logger . warn (
231
231
`plugin range ${ q ( packageJSON . engines [ "code-server" ] ) } incompatible` + ` with code-server version ${ version } ` ,
232
232
)
233
233
}
You can’t perform that action at this time.
0 commit comments