Skip to content

Commit 2530a0d

Browse files
authored
release: 4.8.2 (#5743)
* chore: bump version to 4.8.2 * chore: update CHANGELOG * docs: add back line in publishing release See #5732 (comment) * Revert "chore: bump version to 4.8.2" This reverts commit 5d70994. * fixup: use 4.8.2-rc.1 * docs: add release candidate notes * refactor: warn plugin range incompatibble * chore: bump version 4.8.2
1 parent a432a0d commit 2530a0d

File tree

6 files changed

+27
-6
lines changed

6 files changed

+27
-6
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,18 @@ Code v99.99.999
2020
2121
-->
2222

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+
2335
## [4.8.1](https://github.com/coder/code-server/releases/tag/v4.8.1) - 2022-10-28
2436

2537
Code v1.72.1

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: 3.3.1
18+
version: 3.3.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: 4.8.1
23+
appVersion: 4.8.2

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.8.1'
9+
tag: '4.8.2'
1010
pullPolicy: Always
1111

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

docs/MAINTAINING.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
- [Changelog](#changelog)
1616
- [Releases](#releases)
1717
- [Publishing a release](#publishing-a-release)
18+
- [Release Candidates](#release-candidates)
1819
- [AUR](#aur)
1920
- [Docker](#docker)
2021
- [Homebrew](#homebrew)
@@ -141,7 +142,7 @@ changelog](https://github.com/emacs-mirror/emacs/blob/master/etc/NEWS).
141142

142143
### Publishing a release
143144

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)
145146
1. Run `yarn release:prep`
146147
1. Bump chart version in `Chart.yaml`.
147148
1. Summarize the major changes in the `CHANGELOG.md`
@@ -152,6 +153,14 @@ changelog](https://github.com/emacs-mirror/emacs/blob/master/etc/NEWS).
152153
artifacts, publish the NPM package from `npm-package`, and publish the Docker
153154
Hub image from `release-images`.
154155

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+
155164
#### AUR
156165

157166
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).

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

src/node/plugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ export class PluginAPI {
227227
`)
228228
}
229229
if (!semver.satisfies(version, packageJSON.engines["code-server"])) {
230-
throw new Error(
230+
this.logger.warn(
231231
`plugin range ${q(packageJSON.engines["code-server"])} incompatible` + ` with code-server version ${version}`,
232232
)
233233
}

0 commit comments

Comments
 (0)