Skip to content

Commit 58d7707

Browse files
authored
Merge branch 'main' into matifali/lint-ghactions
2 parents f8f26af + d83ba4b commit 58d7707

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

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

2323
## Unreleased
2424

25+
## [4.91.0](https://github.com/coder/code-server/releases/tag/v4.91.0) - 2024-07-10
26+
2527
Code v1.91.0
2628

2729
### 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.21.1
18+
version: 3.22.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.90.3
23+
appVersion: 4.91.0

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

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

src/node/main.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,11 @@ export const runCodeServer = async (
164164
logger.info(`Session server listening on ${sessionServerAddress.toString()}`)
165165
}
166166

167+
if (process.env.EXTENSIONS_GALLERY) {
168+
logger.info("Using custom extensions gallery")
169+
logger.debug(` - ${process.env.EXTENSIONS_GALLERY}`)
170+
}
171+
167172
if (args.enable && args.enable.length > 0) {
168173
logger.info("Enabling the following experimental features:")
169174
args.enable.forEach((feature) => {

0 commit comments

Comments
 (0)