mirror of
https://github.com/coder/code-server.git
synced 2026-04-16 21:31:43 -05:00
Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8ccacf3fef | ||
|
|
969eb55ac3 | ||
|
|
0e8ef4947d | ||
|
|
3cd3475540 | ||
|
|
6372aea4ba | ||
|
|
9b8a063b88 | ||
|
|
3d8be5e1bf | ||
|
|
2e5d50b10a | ||
|
|
1a9a4e06df | ||
|
|
703b03b665 | ||
|
|
e5739346b8 |
12
.github/workflows/ci.yaml
vendored
12
.github/workflows/ci.yaml
vendored
@@ -143,14 +143,20 @@ jobs:
|
|||||||
id: vscode-rev
|
id: vscode-rev
|
||||||
run: echo "::set-output name=rev::$(git rev-parse HEAD:./lib/vscode)"
|
run: echo "::set-output name=rev::$(git rev-parse HEAD:./lib/vscode)"
|
||||||
|
|
||||||
# We need to rebuild when we have a new version of Code or when any of
|
- name: Get version
|
||||||
# the patches changed. Use VSCODE_CACHE_VERSION to force a rebuild.
|
id: version
|
||||||
|
run: echo "::set-output name=version::$(jq -r .version package.json)"
|
||||||
|
|
||||||
|
# We need to rebuild when we have a new version of Code, when any of
|
||||||
|
# the patches changed, or when the code-server version changes (since
|
||||||
|
# it gets embedded into the code). Use VSCODE_CACHE_VERSION to
|
||||||
|
# force a rebuild.
|
||||||
- name: Fetch prebuilt Code package from cache
|
- name: Fetch prebuilt Code package from cache
|
||||||
id: cache-vscode
|
id: cache-vscode
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: lib/vscode-reh-web-*
|
path: lib/vscode-reh-web-*
|
||||||
key: vscode-reh-package-${{ secrets.VSCODE_CACHE_VERSION }}-${{ steps.vscode-rev.outputs.rev }}-${{ hashFiles('patches/*.diff') }}
|
key: vscode-reh-package-${{ secrets.VSCODE_CACHE_VERSION }}-${{ steps.vscode-rev.outputs.rev }}-${{ steps.version.outputs.version }}-${{ hashFiles('patches/*.diff') }}
|
||||||
|
|
||||||
- name: Build vscode
|
- name: Build vscode
|
||||||
if: steps.cache-vscode.outputs.cache-hit != 'true'
|
if: steps.cache-vscode.outputs.cache-hit != 'true'
|
||||||
|
|||||||
32
CHANGELOG.md
32
CHANGELOG.md
@@ -20,6 +20,38 @@ Code v99.99.999
|
|||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
## [4.5.1](https://github.com/coder/code-server/releases/tag/v4.5.1) - 2022-07-18
|
||||||
|
|
||||||
|
Code v1.68.1
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- We now use `release/v<0.0.0>` for the release branch name so it doesn't
|
||||||
|
conflict with the tag name
|
||||||
|
- Added `.prettierignore` to ignore formatting files in `lib/vscode`
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Allow more comprehensive affinity config in Helm chart
|
||||||
|
- Added custom message in Homebrew PR to make sure code-server maintainers are
|
||||||
|
tagged
|
||||||
|
- Allow setting `priorityClassName` via Helm chart
|
||||||
|
- Added troubleshooting docs to `CONTRIBUTING.md`
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Removed default memory limit which was set via `NODE_OPTIONS`
|
||||||
|
- Changed output in pipe to make it easier to debug code-server when doing live
|
||||||
|
edits
|
||||||
|
- Fixed display-language patch to use correct path which broke in 4.5.0
|
||||||
|
- Fixed multiple code-server windows opening when using the code-server CLI in
|
||||||
|
the Integrated Terminal
|
||||||
|
- Fixed Integrated Terminal not working when web base was not the root path
|
||||||
|
|
||||||
|
### Security
|
||||||
|
|
||||||
|
- Updated `glob-parent` version in dependencies
|
||||||
|
|
||||||
## [4.5.0](https://github.com/coder/code-server/releases/tag/v4.5.0) - 2022-06-29
|
## [4.5.0](https://github.com/coder/code-server/releases/tag/v4.5.0) - 2022-06-29
|
||||||
|
|
||||||
Code v1.68.1
|
Code v1.68.1
|
||||||
|
|||||||
@@ -15,9 +15,9 @@ type: application
|
|||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 2.6.0
|
version: 3.0.0
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application. Versions are not expected to
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||||
appVersion: 4.5.0
|
appVersion: 4.5.1
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ replicaCount: 1
|
|||||||
|
|
||||||
image:
|
image:
|
||||||
repository: codercom/code-server
|
repository: codercom/code-server
|
||||||
tag: '4.5.0'
|
tag: '4.5.1'
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
|
|
||||||
# Specifies one or more secrets to be used when pulling images from a
|
# Specifies one or more secrets to be used when pulling images from a
|
||||||
|
|||||||
@@ -60,6 +60,6 @@ As `code-server` is based on VS Code, you can follow the steps described on Duck
|
|||||||
code-server --enable-proposed-api genuitecllc.codetogether
|
code-server --enable-proposed-api genuitecllc.codetogether
|
||||||
```
|
```
|
||||||
|
|
||||||
Another option would be to add a value in code-server's [config file](https://coder.com/docs/code-server/v4.5.0/FAQ#how-does-the-config-file-work).
|
Another option would be to add a value in code-server's [config file](https://coder.com/docs/code-server/v4.5.1/FAQ#how-does-the-config-file-work).
|
||||||
|
|
||||||
3. Refresh code-server and navigate to the CodeTogether icon in the sidebar to host or join a coding session.
|
3. Refresh code-server and navigate to the CodeTogether icon in the sidebar to host or join a coding session.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# code-server Helm Chart
|
# code-server Helm Chart
|
||||||
|
|
||||||
[](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) [](https://img.shields.io/badge/Type-application-informational?style=flat-square) [](https://img.shields.io/badge/AppVersion-4.5.0-informational?style=flat-square)
|
[](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) [](https://img.shields.io/badge/Type-application-informational?style=flat-square) [](https://img.shields.io/badge/AppVersion-4.5.1-informational?style=flat-square)
|
||||||
|
|
||||||
[code-server](https://github.com/coder/code-server) code-server is VS Code running
|
[code-server](https://github.com/coder/code-server) code-server is VS Code running
|
||||||
on a remote server, accessible through the browser.
|
on a remote server, accessible through the browser.
|
||||||
@@ -73,7 +73,7 @@ and their default values.
|
|||||||
| hostnameOverride | string | `""` |
|
| hostnameOverride | string | `""` |
|
||||||
| image.pullPolicy | string | `"Always"` |
|
| image.pullPolicy | string | `"Always"` |
|
||||||
| image.repository | string | `"codercom/code-server"` |
|
| image.repository | string | `"codercom/code-server"` |
|
||||||
| image.tag | string | `"4.5.0"` |
|
| image.tag | string | `"4.5.1"` |
|
||||||
| imagePullSecrets | list | `[]` |
|
| imagePullSecrets | list | `[]` |
|
||||||
| ingress.enabled | bool | `false` |
|
| ingress.enabled | bool | `false` |
|
||||||
| nameOverride | string | `""` |
|
| nameOverride | string | `""` |
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"versions": ["v4.5.0"],
|
"versions": ["v4.5.1"],
|
||||||
"routes": [
|
"routes": [
|
||||||
{
|
{
|
||||||
"title": "Home",
|
"title": "Home",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "code-server",
|
"name": "code-server",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "4.5.0",
|
"version": "4.5.1",
|
||||||
"description": "Run VS Code on a remote server.",
|
"description": "Run VS Code on a remote server.",
|
||||||
"homepage": "https://github.com/coder/code-server",
|
"homepage": "https://github.com/coder/code-server",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { version } from "../../src/node/constants"
|
||||||
import { describe, test, expect } from "./baseFixture"
|
import { describe, test, expect } from "./baseFixture"
|
||||||
|
|
||||||
describe("Open Help > About", true, [], {}, () => {
|
describe("Open Help > About", true, [], {}, () => {
|
||||||
@@ -5,8 +6,12 @@ describe("Open Help > About", true, [], {}, () => {
|
|||||||
// Open using the menu.
|
// Open using the menu.
|
||||||
await codeServerPage.navigateMenus(["Help", "About"])
|
await codeServerPage.navigateMenus(["Help", "About"])
|
||||||
|
|
||||||
|
const isDevMode = process.env.VSCODE_DEV === "1"
|
||||||
|
|
||||||
// Look for code-server info div.
|
// Look for code-server info div.
|
||||||
const element = await codeServerPage.page.waitForSelector(`div[role="dialog"] >> text=code-server`)
|
const element = await codeServerPage.page.waitForSelector(
|
||||||
|
`div[role="dialog"] >> text=code-server: ${isDevMode ? "Unknown" : "v" + version}`,
|
||||||
|
)
|
||||||
expect(element).not.toBeNull()
|
expect(element).not.toBeNull()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user