Skip to content

Tags: coder/code-server

Tags

v4.95.1

Verified

This commit was signed with the committer’s verified signature.
Fix cli being ran twice

server-main.js runs itself outside a code-server context, which is
determined using the CODE_SERVER_PARENT_PID environment variable.  This
is set by the wrapper, but there is no wrapper when running the
cli (only for the server), so this resulting in the cli running
twice (one self-run on initial import, again when we run spawnCli).

This might fix #7042

v4.95.1-rc.2

Verified

This commit was signed with the committer’s verified signature.
Fix cli being ran twice

server-main.js runs itself outside a code-server context, which is
determined using the CODE_SERVER_PARENT_PID environment variable.  This
is set by the wrapper, but there is no wrapper when running the
cli (only for the server), so this resulting in the cli running
twice (one self-run on initial import, again when we run spawnCli).

This might fix #7042

v4.95.1-rc.1

Verified

This commit was signed with the committer’s verified signature.
Revert accidental newline removal in patch

It makes the patch needlessly noisy.  I am not sure how the line got
deleted in the first place.

v4.94.2-rc.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix user rename when restarting container (#7012)

v4.93.1

Verified

This commit was signed with the committer’s verified signature.
Revert "chore: bump softprops/action-gh-release from 1 to 2 (#6740)"

This reverts commit 1abb2ee.

Trying to see if this fixes the release making separate drafts instead
of a single draft.

v4.93.1-rc.1

Verified

This commit was signed with the committer’s verified signature.
Revert "chore: bump softprops/action-gh-release from 1 to 2 (#6740)"

This reverts commit 1abb2ee.

Trying to see if this fixes the release making separate drafts instead
of a single draft.

v4.92.2

Verified

This commit was signed with the committer’s verified signature.
Update changelog with correct Code version

v4.92.2-rc.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update VS Code to 1.92.2 (#6941)

* Update VS Code to 1.92.2

* Use server-main.js to load VS Code

It looks like the bootstrap files are now bundled so we can no longer
require them.  We could make them included again, but maybe it is better
to go through the main entrypoint anyway because it includes some nls
stuff which is maybe necessary.

This also fixes what looks like a bug where we could create two servers
if two requests came in.  I am not sure what the practical consequences
of that would be, but it will no longer do that.

* Drop es2020 patch

Unfortunately, VS Code will not load with this.  It seems to be because
`this` is being used in static properties, and it becomes `void 0` for
some reason under the es2020 target.  For example:

  static PREFIX_BY_CATEGORY = `${this.PREFIX}${this.SCOPE_PREFIX}`;

becomes

  AbstractGotoSymbolQuickAccessProvider.PREFIX_BY_CATEGORY = `${(void 0).PREFIX}${(void 0).SCOPE_PREFIX}`;

Which, obviously, will not work.

Older versions of Safari (and maybe other browsers) are likely affected.

* Fix display language

* Update Playwright

I think maybe because of the dropped es2020 patch that Webkit is now
failing because it is too old.

* Do not wait for networkidle in e2e tests

I am not sure what is going on but some tests on Webkit are timing out
and it seems the page is loaded but something is still trying to
download.  Not good, but for now try to at least get the tests passing.

v4.91.1

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update Code to 1.91.1 (#6900)

v4.91.0

Verified

This commit was signed with the committer’s verified signature.
Log custom extensions gallery