Skip to content

Commit 1e44471

Browse files
Merge branch 'coder:main' into main
2 parents 4ab3445 + 7cc61ab commit 1e44471

25 files changed

+129
-53
lines changed

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Prettier 3.4.2
2+
9b0340a09276f93c054d705d1b9a5f24cc5dbc97

.github/workflows/build.yaml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,25 @@ concurrency:
2323

2424
jobs:
2525
prettier:
26-
name: Format with Prettier
26+
name: Run prettier check
2727
runs-on: ubuntu-22.04
2828
timeout-minutes: 5
2929
steps:
3030
- name: Checkout repo
3131
uses: actions/checkout@v4
3232

33-
- name: Run prettier with actionsx/prettier
34-
uses: actionsx/prettier@v3
33+
- name: Install Node.js
34+
uses: actions/setup-node@v4
3535
with:
36-
args: --check --log-level=warn .
36+
node-version-file: .node-version
37+
cache: npm
38+
cache-dependency-path: |
39+
package-lock.json
40+
test/package-lock.json
41+
42+
- run: SKIP_SUBMODULE_DEPS=1 npm ci
43+
44+
- run: npx prettier --check .
3745

3846
doctoc:
3947
name: Doctoc markdown files

.github/workflows/release.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,9 @@ jobs:
196196
runs-on: macos-latest
197197
timeout-minutes: 15
198198
needs: npm-version
199+
env:
200+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
201+
199202
steps:
200203
- name: Checkout repo
201204
uses: actions/checkout@v4

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.18.0
1+
20.18.1

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,52 @@ Code v99.99.999
2222

2323
## Unreleased
2424

25+
## [4.96.4](https://github.com/coder/code-server/releases/tag/v4.96.4) - 2025-01-20
26+
27+
Code v1.96.4
28+
29+
### Changed
30+
31+
- Update to Code 1.96.4.
32+
33+
## [4.96.2](https://github.com/coder/code-server/releases/tag/v4.96.2) - 2024-12-20
34+
35+
Code v1.96.2
36+
37+
### Changed
38+
39+
- Update to Code 1.96.2.
40+
41+
## [4.96.1](https://github.com/coder/code-server/releases/tag/v4.96.1) - 2024-12-18
42+
43+
Code v1.96.1
44+
45+
### Added
46+
47+
- Dark color scheme for login and error pages.
48+
49+
### Changed
50+
51+
- Update to Code 1.96.1.
52+
53+
## [4.95.3](https://github.com/coder/code-server/releases/tag/v4.95.3) - 2024-11-18
54+
55+
Code v1.95.3
56+
57+
### Changed
58+
59+
- Update to Code 1.95.3.
60+
61+
## [4.95.2](https://github.com/coder/code-server/releases/tag/v4.95.2) - 2024-11-12
62+
63+
Code v1.95.2
64+
65+
### Changed
66+
67+
- Update to Code 1.95.2.
68+
69+
## [4.95.1](https://github.com/coder/code-server/releases/tag/v4.95.1) - 2024-11-06
70+
2571
Code v1.95.1
2672

2773
### Changed

ci/helm-chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
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.24.0
18+
version: 3.25.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.93.1
23+
appVersion: 4.96.4

ci/helm-chart/templates/deployment.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ spec:
3535
securityContext:
3636
fsGroup: {{ .Values.securityContext.fsGroup }}
3737
{{- end }}
38-
{{- if and .Values.volumePermissions.enabled .Values.persistence.enabled }}
38+
{{- if or (and .Values.volumePermissions.enabled .Values.persistence.enabled) .Values.extraInitContainers }}
3939
initContainers:
40+
{{- if and .Values.volumePermissions.enabled .Values.persistence.enabled }}
4041
- name: init-chmod-data
4142
image: busybox:latest
4243
imagePullPolicy: IfNotPresent
@@ -50,6 +51,7 @@ spec:
5051
volumeMounts:
5152
- name: data
5253
mountPath: /home/coder
54+
{{- end }}
5355
{{- if .Values.extraInitContainers }}
5456
{{ tpl .Values.extraInitContainers . | indent 6}}
5557
{{- end }}

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

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

docs/npm.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ Proceed to [installing](#installing)
6262
## Alpine
6363

6464
```bash
65-
apk add alpine-sdk bash libstdc++ libc6-compat
66-
npm config set python python3
65+
apk add alpine-sdk bash libstdc++ libc6-compat python3 krb5-dev
6766
```
6867

6968
Proceed to [installing](#installing)

lib/vscode

Submodule vscode updated 1181 files

0 commit comments

Comments
 (0)