Search is not available for this dataset
hash
string
author
int32
committer_date
string
timezone
int64
parents
string
message
string
changes
string
language
string
60dd8ab37454aed0826e99d51073b477ee9604ee
116
2022-05-06 22:31:03+00:00
25,200
['6cf607eab9d2da592795a7f8e9b30854492c2e80']
chore: configure git globally for brew publish (#5173)
[{'old_path': '.github/workflows/npm-brew.yaml', 'new_path': '.github/workflows/npm-brew.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -60,8 +60,8 @@ jobs:\n \n - name: Configure git\n run: |\n- git config user.name cdrci\n- git config user.email opensource@coder.com\n+ ...
TypeScript
7c1a45a8d806936839a4c1c374f750a39f1ed90b
116
2022-05-06 23:08:25+00:00
25,200
['60dd8ab37454aed0826e99d51073b477ee9604ee']
chore: update --help for disable-file-downloads (#5176) * chore: update --help for disable-file-downloads * fixup: formatting
[{'old_path': 'src/node/cli.ts', 'new_path': 'src/node/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -160,7 +160,8 @@ export const options: Options<Required<UserProvidedArgs>> = {\n },\n "disable-file-downloads": {\n type: "boolean",\n- description: "Disable file downloads from Code.",\n+ des...
TypeScript
3207bfd4ada744be29e82e047916c174c96688a2
116
2022-05-09 23:24:40+00:00
25,200
['7c1a45a8d806936839a4c1c374f750a39f1ed90b']
feat: add test for isFile when error (#5182) This adds an additional test for the `isFile` utility function to ensure it returns `false` in the event of an error.
[{'old_path': 'test/unit/node/util.test.ts', 'new_path': 'test/unit/node/util.test.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -446,6 +446,9 @@ describe("isFile", () => {\n it("should return true if is file", async () => {\n expect(await util.isFile(pathToFile)).toBe(true)\n })\n+ it("should return ...
TypeScript
cd78f32dc06f7f3ea518872df314b72f3cfafacd
116
2022-05-10 00:24:25+00:00
25,200
['3207bfd4ada744be29e82e047916c174c96688a2']
refactor(util): remove unused isObject function (#5183)
[{'old_path': 'src/node/util.ts', 'new_path': 'src/node/util.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -435,10 +435,6 @@ export const buildAllowedMessage = (t: any): string => {\n return `Allowed value${values.length === 1 ? " is" : "s are"} ${values.map((t) => `\'${t}\'`).join(", ")}`\n }\n \n-export co...
TypeScript
7a8d487729d5c74575503138bbc6e91818a9657a
153
2022-05-10 16:11:06-05:00
14,400
['1788537cce0df425b15e1e8e76c4faf05d1c0c89']
chore: push code-server image to GHCR (#5187)
[{'old_path': '.github/workflows/docker.yaml', 'new_path': '.github/workflows/docker.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -35,6 +35,13 @@ jobs:\n username: ${{ secrets.DOCKER_USERNAME }}\n password: ${{ secrets.DOCKER_PASSWORD }}\n \n+ - name: Login to GHCR\n+ uses: d...
TypeScript
b13849ded0796c8a0a8be8f371fa3b0b16a1d768
116
2022-05-10 22:44:54+00:00
25,200
['7a8d487729d5c74575503138bbc6e91818a9657a']
refactor: remove dead code (#5188) * refactor: delete unused code * refactor: move onLine to test helpers * Revert "refactor: move onLine to test helpers" This reverts commit 32cc27b21361f88ac7d0457f9e2b3906f2f94fe1. * fixup! refactor: delete unused code
[{'old_path': 'src/common/util.ts', 'new_path': 'src/common/util.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,12 +1,3 @@\n-/**\n- * Split a string up to the delimiter. If the delimiter doesn\'t exist the first\n- * item will have all the text and the second item will be an empty string.\n- */\n-export cons...
TypeScript
a02f47714e7c2b460fb26829464aa23d30002bc0
116
2022-05-10 23:26:04+00:00
0
['b13849ded0796c8a0a8be8f371fa3b0b16a1d768']
refactor: remove unused code enumToArray
[{'old_path': 'src/node/util.ts', 'new_path': 'src/node/util.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -414,18 +414,6 @@ export const open = async (address: URL | string): Promise<void> => {\n })\n }\n \n-/**\n- * For iterating over an enum's values.\n- */\n-// eslint-disable-next-line @typescript-eslint...
TypeScript
dedd770a787fba3411c2a3976b3a8fa87cb7a6e5
44
2022-05-11 14:39:57-07:00
-28,800
['a02f47714e7c2b460fb26829464aa23d30002bc0']
docs: rename master to main in all github doc links (#5190) * docs: correct link master -> main * fix missing ]
[{'old_path': '.tours/contributing.tour', 'new_path': '.tours/contributing.tour', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -50,7 +50,7 @@\n {\n "file": "src/node/heart.ts",\n "line": 7,\n- "description": "code-server\'s heart beats to indicate recent activity.\\n\\nAlso documented here: [h...
TypeScript
5276e41606c89c3e9d55e87c2995d4c7be02f74d
7
2022-05-11 22:10:04+00:00
18,000
['dedd770a787fba3411c2a3976b3a8fa87cb7a6e5']
Allow user Entrypoint scripts (#5194) * Allow user Entrypoint scripts * Variable encapsulation Co-authored-by: Asher <ash@coder.com> * Check if Entrypoint Dir exists & run all executable * Don't create entrypoint.d by default * yarn fmt * yarn fmt * Fix for SC2044 * Revert "yarn fmt" This re...
[{'old_path': 'ci/release-image/Dockerfile', 'new_path': 'ci/release-image/Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -42,6 +42,10 @@ RUN ARCH="$(dpkg --print-architecture)" && \\\n COPY ci/release-image/entrypoint.sh /usr/bin/entrypoint.sh\n RUN --mount=from=packages,src=/tmp,dst=/tmp/packages dpkg...
TypeScript
1e304b1e7d3b5cd0edb1aa35edbbe74cd79254c2
44
2022-05-13 16:57:50+00:00
-28,800
['5276e41606c89c3e9d55e87c2995d4c7be02f74d']
chore(deps): upgrade typescript to v4.6 (#5202)
[{'old_path': 'package.json', 'new_path': 'package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -50,8 +50,8 @@\n "@types/split2": "^3.2.0",\n "@types/trusted-types": "^2.0.2",\n "@types/ws": "^8.0.0",\n- "@typescript-eslint/eslint-plugin": "^5.0.0",\n- "@typescript-eslint/parser": "^5.0.0"...
TypeScript
d3f58f9b7d645b2e5ece9f6ce5bff0e4bde033a9
156
2022-05-19 22:36:06+00:00
-7,200
['1e304b1e7d3b5cd0edb1aa35edbbe74cd79254c2']
Fix caddy installation docs (#5209) Applies Caddy installations documentation fixes and also resolves the following issue when trying to install Caddy: W: GPG error: https://dl.cloudsmith.io/public/caddy/stable/deb/debian any-version InRelease: The following signatures couldn't be verified because the public ke...
[{'old_path': 'docs/guide.md', 'new_path': 'docs/guide.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -126,8 +126,8 @@ access code-server on an iPad or do not want to use SSH port forwarding.\n \n ```console\n sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https\n-curl -1sLf 'https://dl...
TypeScript
5d47282ea55e0487440a7eb8112d414343476095
67
2022-05-20 12:39:54-07:00
18,000
['d3f58f9b7d645b2e5ece9f6ce5bff0e4bde033a9']
fix: install nfpm straight from GitHub (#5214) * fix: install nfpm straight from GitHub install.goreleaser.com appears to no longer be available. * Add -f to curl commands This might have made it so we got the right error rather than erroring on the envsubst step.
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -265,8 +265,9 @@ jobs:\n \n - name: Install nfpm and envsubst\n run: |\n- curl -sfL https://install.goreleaser.com/github.com/goreleaser/nfpm.sh | sh -s -- -b ~/.l...
TypeScript
d75883bcc6b7c0f9417bdf5af6dfffcdd0b906c2
116
2022-06-06 11:20:22-07:00
14,400
['792e9549373ad211aceede1a7adc5693c9265ea4']
feat: add additional test for handlePasswordValidation (#5243)
[{'old_path': 'test/unit/node/util.test.ts', 'new_path': 'test/unit/node/util.test.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -349,6 +349,22 @@ describe("isCookieValid", () => {\n })\n expect(isValid).toBe(false)\n })\n+ it("should return false and empty string as hashedPassword when passwordMeth...
TypeScript
2c1cf0259e78d86ee007635cc16473ccfe93418b
116
2022-06-10 20:00:20+00:00
25,200
['d75883bcc6b7c0f9417bdf5af6dfffcdd0b906c2']
feat: add tests for isWsl (#5251) * refactor: add docs to isWsl and make easier to test * feat: add tests for isWsl * fixup!: refactor isWsl and tests * Update test/unit/node/util.test.ts Co-authored-by: Asher <ash@coder.com> * Update test/unit/node/util.test.ts Co-authored-by: Asher <ash@coder.com> ...
[{'old_path': 'src/node/util.ts', 'new_path': 'src/node/util.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -377,11 +377,31 @@ export const getMediaMime = (filePath?: string): string => {\n return (filePath && mimeTypes[path.extname(filePath)]) || "text/plain"\n }\n \n-export const isWsl = async (): Promise<b...
TypeScript
ba990668a54780cb4861408ef36defb4c62f3375
116
2022-06-13 12:51:30-07:00
25,200
['2c1cf0259e78d86ee007635cc16473ccfe93418b']
chore: update bug report template (#5261) * chore: update bug report template Add an additional checkbox to the bug report template * Update .github/ISSUE_TEMPLATE/bug-report.yml
[{'old_path': '.github/ISSUE_TEMPLATE/bug-report.yml', 'new_path': '.github/ISSUE_TEMPLATE/bug-report.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -66,11 +66,13 @@ body:\n required: false\n - type: checkboxes\n attributes:\n- label: Does this issue happen in VS Code?\n+ label: Does this...
TypeScript
744b301c7ac2332dfc7f41004265e0c7c4323040
116
2022-06-13 20:18:51+00:00
25,200
['ba990668a54780cb4861408ef36defb4c62f3375']
Update bug-report.yml (#5262)
[{'old_path': '.github/ISSUE_TEMPLATE/bug-report.yml', 'new_path': '.github/ISSUE_TEMPLATE/bug-report.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -67,7 +67,7 @@ body:\n - type: checkboxes\n attributes:\n label: Does this issue happen in VS Code or GitHub Codespaces?\n- description: Please t...
TypeScript
a96162d0754bdf7a730db4c3f076664d83d424c8
116
2022-06-13 21:16:46+00:00
25,200
['744b301c7ac2332dfc7f41004265e0c7c4323040']
feat: add tests for node/util.open (#5256)
[{'old_path': 'test/unit/node/util.test.ts', 'new_path': 'test/unit/node/util.test.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -537,3 +537,10 @@ describe("isWsl", () => {\n })\n })\n })\n+\n+describe("open", () => {\n+ it("should throw an error if address is a string", async () => {\n+ const addres...
TypeScript
a2bfcfcc7893c3607ecb6da5a4db7b4817639f55
69
2022-06-15 09:49:49-05:00
18,000
['a96162d0754bdf7a730db4c3f076664d83d424c8']
chore: update Coder messaging on README (#5268) * chore: update Coder messaging * use our shortlink
[{'old_path': 'docs/README.md', 'new_path': 'docs/README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -14,8 +14,9 @@ access it in the browser.\n - Preserve battery life when you're on the go; all intensive tasks run on your\n server\n \n-| 🔔 code-server is a free browser-based IDE while [Coder](https://cod...
TypeScript
61138b4a61a973fbf23e24d6a8596a3fa57e92b6
116
2022-06-15 20:53:07+00:00
25,200
['113ad85b37fab2fa288fe0ef3e12aeb40a18b40b']
refactor: open function (#5257) * refactor: fix type annotations in open There was no clear reason as to why we needed to use type assertions when initializing both `args` and `options` in `open` so I refactored them both. * refactor: create constructOpenOptions * refactor: add urlSearch and remove options ...
[{'old_path': 'src/node/util.ts', 'new_path': 'src/node/util.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -404,6 +404,37 @@ export const isWsl = async (\n }\n }\n \n+interface OpenOptions {\n+ args: string[]\n+ command: string\n+ urlSearch: string\n+}\n+\n+/**\n+ * A helper function to construct options ...
TypeScript
eb314ff727a5481a78f4d0771e9773425811cdcf
116
2022-06-17 08:02:33-07:00
25,200
['61138b4a61a973fbf23e24d6a8596a3fa57e92b6']
chore: only download .deb in docker release (#5277) * Update docker.yaml * Update docker.yaml
[{'old_path': '.github/workflows/docker.yaml', 'new_path': '.github/workflows/docker.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -47,11 +47,11 @@ jobs:\n run: echo "::set-output name=version::$(jq -r .version package.json)"\n \n - name: Download release artifacts\n- uses: robinraju/rel...
TypeScript
5ce99f8d1c0d72735a123e964c1aa3529243d553
67
2022-06-21 21:51:46+00:00
18,000
['eb314ff727a5481a78f4d0771e9773425811cdcf']
chore: update Code to 1.68 (#5263) * chore: update Code to 1.67 Was able to remove our changes to common/webview.ts since they are upstream now. Other than that no serious changes, just context diffs. * chore: update Code to 1.68 - Upstream moved the web socket endpoint so change the Express route from...
[{'old_path': 'ci/build/build-release.sh', 'new_path': 'ci/build/build-release.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -98,43 +98,6 @@ bundle_vscode() {\n \n rsync "${rsync_opts[@]}" ./lib/vscode-reh-web-*/ "$VSCODE_OUT_PATH"\n \n- # Add the commit, date, our name, links, and enable telemetry. This ju...
TypeScript
c51ff3bce187ce2a475460666bad594f051c958a
116
2022-06-24 16:33:38+00:00
18,000
['a879844c2d23c7634561b358eeb70c49c45473fd']
refactor: move integration tests to Jest (#5275) * feat: add installExtension integration test This adds a new helper function called `runCodeServerCommand` along with a test for `--install-extension`. We can use this approach for writing integration tests (i.e. testing a real code-server build, CLI commands, et...
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -288,8 +288,11 @@ jobs:\n - name: Build standalone release\n run: source scl_source enable devtoolset-9 && yarn release:standalone\n \n- - name: Sanity test standalone...
TypeScript
1296848afc1f1adb7f9cab309695392ac4549cff
116
2022-06-28 10:04:35-07:00
25,200
['c51ff3bce187ce2a475460666bad594f051c958a']
refactor: switch to codecov-uploader GitHub Action (#5303) * refactor: switch to codecov-uploader GitHub Action codecov deprecated their Node wrapper for uploading coverage reports. This removes that and uses their new uploaded along with the v2 GitHub Action they maintain. * fix: update broken integration t...
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -164,7 +164,9 @@ jobs:\n if: success()\n \n - name: Upload coverage report to Codecov\n- run: yarn coverage\n+ uses: codecov/codecov-action@v2\n+ with:...
TypeScript
9ad0d9e6ad1c8835d2eacf06992723a1cf69d3c0
116
2022-07-01 13:45:36-07:00
25,200
['55cfba8168ac8d33f70667ba7064cddc27912c85']
release: 4.5.0 (#5308) * chore(release): bump version to 4.5.0 * chore: update CHANGELOG * chore: bump chart version * docs: update MAINTAINING * fix: add VSCODE_DEV=1 to e2e script I'm not sure what changed in the latest version but without setting VSCODE_DEV=1, code-server won't load. This fixes that...
[{'old_path': 'CHANGELOG.md', 'new_path': 'CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -20,6 +20,30 @@ Code v99.99.999\n \n -->\n \n+## [4.5.0](https://github.com/coder/code-server/releases/tag/v4.5.0) - 2022-06-29\n+\n+Code v1.68.1\n+\n+### Changed\n+\n+- Updated codecov to use codecov uploader\n+...
TypeScript
f79b38d25a8beb977e627499b9e108b148ee1563
116
2022-07-14 09:25:48-07:00
25,200
['9ad0d9e6ad1c8835d2eacf06992723a1cf69d3c0']
fix(workbench): use window.location without origin (#5332) When using `window.location.origin` to create a new URL for loading web packages, it constructs a URL that is not relative, leading to the terminal breaking when code-server is served not via the root (i.e. /ide instead of /).
[{'old_path': 'patches/base-path.diff', 'new_path': 'patches/base-path.diff', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -86,6 +86,15 @@ Index: code-server/lib/vscode/src/vs/code/browser/workbench/workbench.html\n \t\t<link data-name="vs/workbench/workbench.web.main" rel="stylesheet" href="{{WORKBENCH_WEB_BASE_...
TypeScript
e189435a6acee0d0c677ae83d957064cd3f5ca38
116
2022-07-15 16:24:33+00:00
25,200
['f79b38d25a8beb977e627499b9e108b148ee1563']
feat: add message to brew publish (#5341)
[{'old_path': 'ci/steps/brew-bump.sh', 'new_path': 'ci/steps/brew-bump.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -23,7 +23,7 @@ main() {\n # Find the docs for bump-formula-pr here\n # https://github.com/Homebrew/brew/blob/master/Library/Homebrew/dev-cmd/bump-formula-pr.rb#L18\n local output\n- if ! ...
TypeScript
97af08b9e5c9a2a9311050fa8730113f8e60b399
67
2022-07-15 16:51:03+00:00
18,000
['e189435a6acee0d0c677ae83d957064cd3f5ca38']
fix: file/directory opens from terminal (#5340)
[{'old_path': None, 'new_path': 'patches/cli-window-open.diff', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,96 @@\n+Make opening files/folders from the terminal only open in the current instance\n+\n+Previously they would open in every code-server tab/window.\n+\n+To test:\n+\n+1. Run code-server\n+2. Open c...
TypeScript
714257b3c59970c10916bd4b2d587953bcc92b82
73
2022-07-15 18:00:05+00:00
-28,800
['97af08b9e5c9a2a9311050fa8730113f8e60b399']
Update display-language.diff (#5317) "vscode-remote-resource" not under "{{WORKBENCH_WEB_BASE_URL}}", It needs to access the upper level path. Co-authored-by: Asher <ash@coder.com>
[{'old_path': 'patches/display-language.diff', 'new_path': 'patches/display-language.diff', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -91,7 +91,7 @@ Index: code-server/lib/vscode/src/vs/code/browser/workbench/workbench.html\n +\t\t\t\t\t\treturn cb(undefined, result)\n +\t\t\t\t\t}\n +\t\t\t\t\tconst path = nls...
TypeScript
646f2436b03dd209059f99f8fc5fa49737f873b8
67
2022-07-15 18:44:27+00:00
18,000
['714257b3c59970c10916bd4b2d587953bcc92b82']
fix: output lost after hotswapping (#5346) I think the pipe was closing the other streams when the child stream closed so instead just write it one way.
[{'old_path': 'src/node/wrapper.ts', 'new_path': 'src/node/wrapper.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -292,14 +292,18 @@ export class ParentProcess extends Process {\n const child = this.spawn()\n this.child = child\n \n- // Log both to stdout and to the log directory.\n+ // Log child ...
TypeScript
907dd835e85e2c55ba8bc390af317535ba48ba71
116
2022-07-15 19:30:03+00:00
25,200
['646f2436b03dd209059f99f8fc5fa49737f873b8']
docs: add troubleshooting section (#5313)
[{'old_path': 'docs/CONTRIBUTING.md', 'new_path': 'docs/CONTRIBUTING.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -10,6 +10,9 @@\n - [Version updates to Code](#version-updates-to-code)\n - [Patching Code](#patching-code)\n - [Build](#build)\n+ - [Troubleshooting](#troubleshooting)\n+ - [I see "Forbi...
TypeScript
19f486b6723b495b31e10c49d6ee573e646dc3f5
116
2022-07-15 21:13:13+00:00
25,200
['907dd835e85e2c55ba8bc390af317535ba48ba71']
chore(prettier): ignore lib/vscode (#5347) We were using an overrides command in our `.prettierrc.yaml` which quickly became out of sync with Code's Prettier styles. Instead, we simply tell Prettier to ignore `lib/vscode`. This way, if you have `formatOnSave` on and you save inside `lib/vscode`, you won't conv...
[{'old_path': None, 'new_path': '.prettierignore', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1 @@\n+lib/vscode\n\\ No newline at end of file\n'}, {'old_path': '.prettierrc.yaml', 'new_path': '.prettierrc.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -4,14 +4,3 @@ trailingComma: all\n arrowParens: ...
TypeScript
530bb66d7c91db0113701025d39421d255bffb60
35
2022-07-18 19:27:54+00:00
-7,200
['19f486b6723b495b31e10c49d6ee573e646dc3f5']
Allow setting priorityClassName via helm chart (#5255) Co-authored-by: Joe Previte <jjprevite@gmail.com>
[{'old_path': 'ci/helm-chart/templates/deployment.yaml', 'new_path': 'ci/helm-chart/templates/deployment.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -25,6 +25,9 @@ spec:\n {{- if .Values.hostnameOverride }}\n hostname: {{ .Values.hostnameOverride }}\n {{- end }}\n+ {{- if .Values.pri...
TypeScript
592973c1bbea7c948fc80a43e3416048ddcdeb5e
67
2022-07-18 14:37:35-07:00
18,000
['530bb66d7c91db0113701025d39421d255bffb60']
fix: remove default memory limit (#5355) Having NODE_OPTIONS set is unexpected and although the later flag should override the previous flag it is not certain that will always be the case. Also some users are having issues with the 2 GB limit.
[{'old_path': 'src/node/wrapper.ts', 'new_path': 'src/node/wrapper.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -322,7 +322,6 @@ export class ParentProcess extends Process {\n env: {\n ...process.env,\n CODE_SERVER_PARENT_PID: process.pid.toString(),\n- NODE_OPTIONS: `--max-old-sp...
TypeScript
033cdf23576ef2711c2f9caf337f776357097b31
116
2022-07-18 14:37:54-07:00
25,200
['592973c1bbea7c948fc80a43e3416048ddcdeb5e']
chore(ci): update glob-parent (#5353)
[{'old_path': 'package.json', 'new_path': 'package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -83,7 +83,8 @@\n "follow-redirects": "^1.14.8",\n "node-fetch": "^2.6.7",\n "nanoid": "^3.1.31",\n- "minimist": "npm:minimist-lite@2.2.1"\n+ "minimist": "npm:minimist-lite@2.2.1",\n+ "glob-pa...
TypeScript
23a18786defba8510cd0a891498877acfecbc127
116
2022-07-18 14:38:07-07:00
25,200
['033cdf23576ef2711c2f9caf337f776357097b31']
refactor(ci): use release in branch release name (#5352)
[{'old_path': '.github/workflows/npm-brew.yaml', 'new_path': '.github/workflows/npm-brew.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -31,7 +31,7 @@ jobs:\n uses: dawidd6/action-download-artifact@v2\n id: download\n with:\n- branch: v${{ steps.version.outputs.version }}\n+ ...
TypeScript
de317a09fe14787547a25756164d768d600d3e5a
173
2022-07-18 14:38:21-07:00
-7,200
['23a18786defba8510cd0a891498877acfecbc127']
Allow more comprehensive affinity config (#5285) Co-authored-by: Timur Sultanaev <t.sultanaev@reply.de> Co-authored-by: Joe Previte <jjprevite@gmail.com>
[{'old_path': 'ci/helm-chart/templates/deployment.yaml', 'new_path': 'ci/helm-chart/templates/deployment.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -119,7 +119,7 @@ spec:\n {{- end }}\n {{- with .Values.affinity }}\n affinity:\n- {{- toYaml . | nindent 8 }}\n+ {{- tpl . $ | n...
TypeScript
f4fc2ebecf4b97ab2f6432faace43de83ee8fb65
116
2022-07-19 12:34:01-07:00
25,200
['de317a09fe14787547a25756164d768d600d3e5a']
release: 4.5.1 (#5354) * chore(release): bump version to 4.5.1 * chore: bump helm chart * chore: update CHANGELOG * Revert "chore: bump helm chart" This reverts commit 703b03b665bddc252d80ae674eb92e1bfbdec6ad. * chore: bump helm chart to 3.0.0 * revert: remove bad change to manifes.json icon * fix...
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -143,14 +143,20 @@ jobs:\n id: vscode-rev\n run: echo "::set-output name=rev::$(git rev-parse HEAD:./lib/vscode)"\n \n- # We need to rebuild when we have a new ver...
TypeScript
0659e565d0624e40a595d1a7284a05643320215e
116
2022-07-19 23:25:53+00:00
25,200
['f4fc2ebecf4b97ab2f6432faace43de83ee8fb65']
fix: update branch for release assets download (#5359)
[{'old_path': 'ci/lib.sh', 'new_path': 'ci/lib.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -57,7 +57,7 @@ arch() {\n # https://developer.github.com/v3/actions/workflow-runs/#list-workflow-runs\n get_artifacts_url() {\n local artifacts_url\n- local version_branch="v$VERSION"\n+ local version_branch="relea...
TypeScript
e79f6f3ad273b5d504bb42629d8fcff26d89589a
116
2022-07-21 22:36:11+00:00
25,200
['40b650b7c7d581cb65740811656dbda53aa26fd5']
chore(ci): only run docs preview on docs changes (#5368)
[{'old_path': '.github/workflows/docs-preview.yaml', 'new_path': '.github/workflows/docs-preview.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -4,6 +4,8 @@ on:\n pull_request:\n branches:\n - main\n+ paths:\n+ - "docs/**"\n \n permissions:\n actions: none\n'}]
TypeScript
cb09650d7c146db79061e2610249f4c8aa7c8d6c
159
2022-07-27 12:44:12-05:00
18,000
['0e9ec02beff915e501079a2b5ba7274edb231435']
Update caddy installation steps (#5384) The official installation instructions have changed again.
[{'old_path': 'docs/guide.md', 'new_path': 'docs/guide.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -126,7 +126,7 @@ access code-server on an iPad or do not want to use SSH port forwarding.\n \n ```console\n sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https\n-curl -1sLf 'https://dl...
TypeScript
de042173b25ffa611d4a2d5785405b1acd0f09e6
174
2022-08-01 10:20:55-05:00
14,400
['f772d7bd13fe292699299fd9bf6e4673f09fe797']
docs: correct trial length (#5396)
[{'old_path': 'docs/requirements.md', 'new_path': 'docs/requirements.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -21,7 +21,7 @@ for communication between the browser and the server.\n The following steps walk you through setting up a VM running Debian using Google\n Cloud (though you are welcome to use any m...
TypeScript
3054f09838f0ced1795b58302115f91ea4c6489f
137
2022-08-01 10:31:20-05:00
-7,200
['de042173b25ffa611d4a2d5785405b1acd0f09e6']
docs: define extraInitContainers (#5385) Otherwise custom values will not be picked up by Flux/Helm
[{'old_path': 'ci/helm-chart/values.yaml', 'new_path': 'ci/helm-chart/values.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -147,6 +147,25 @@ extraContainers: |\n # - name: DOCKER_DRIVER\n # value: "overlay2"\n \n+extraInitContainers: |\n+# - name: customization\n+# image: {{ .Values.image.repository }}...
TypeScript
da9e72cb691e128f4b6801da0f6525b6587ea760
142
2022-08-01 16:04:41+00:00
-32,400
['3054f09838f0ced1795b58302115f91ea4c6489f']
Add #5174 comment on rsp install (#5294) Fix typo
[{'old_path': 'docs/install.md', 'new_path': 'docs/install.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -237,6 +237,8 @@ We currently [do not publish Windows releases](https://github.com/coder/code-ser\n We recommend installing code-server onto Raspberry Pi with [`yarn` or\n `npm`](#yarn-npm).\n \n+If you see...
TypeScript
b2ed6b84617b2b63ef2df7ab8e037069bda1c8ff
64
2022-08-01 20:20:39+00:00
14,400
['da9e72cb691e128f4b6801da0f6525b6587ea760']
replace inline svgs with icon_path (#5395) Co-authored-by: Joe Previte <jjprevite@gmail.com>
[{'old_path': None, 'new_path': 'docs/assets/images/icons/collab.svg', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1 @@\n+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="20" height="20" viewBox="0 0 20 20"> <path d="M12.2 13.4357L9.5 11.4357C10.4 10.7357 ...
TypeScript
9087e0c0915096e67d6d3221825874f2a562be0f
67
2022-08-04 16:03:28+00:00
18,000
['00224737447a27dc56f01a8158d68545844f598a']
fix: invoking code-server in integrated terminal (#5360) * Include bin scripts for all platforms These will get symlinked as part of the postinstall. These scripts provide everything ours does inside the integrated terminal plus more. * Improve OS detection Specifically for Windows although we do not yet su...
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -156,7 +156,7 @@ jobs:\n uses: actions/cache@v3\n with:\n path: lib/vscode-reh-web-*\n- key: vscode-reh-package-${{ secrets.VSCODE_CACHE_VERSION }}-${{...
TypeScript
ca8ed8e35b18e4e73114d6958a0dcb4ddf8c17aa
127
2022-08-08 19:21:55+00:00
18,000
['9087e0c0915096e67d6d3221825874f2a562be0f']
chore: Improve coder/coder advertisement in README (#5425)
[{'old_path': 'docs/README.md', 'new_path': 'docs/README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -14,10 +14,6 @@ access it in the browser.\n - Preserve battery life when you're on the go; all intensive tasks run on your\n server\n \n-> **Note**\n-> To manage multiple IDEs, workspaces, and teams, see\n-...
TypeScript
45e222b3c1cd4e98c78224d22dc3d19a16fb0a65
116
2022-08-09 10:31:23-07:00
18,000
['04ff8c355bce6e08c21fa4716832f93f3aa26960']
chore(ci): run npm job on pr merge (#5429)
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -198,9 +198,9 @@ jobs:\n # This environment "npm" requires someone from\n # coder/code-server-reviewers to approve the PR before this job runs.\n environment: npm\n- # Onl...
TypeScript
efb5baec83a745e7783694b9cf24898b54e8ad6c
136
2022-08-09 12:54:00-05:00
25,200
['45e222b3c1cd4e98c78224d22dc3d19a16fb0a65']
refactor: simplify manifest route (#5219) Co-authored-by: Joe Previte <jjprevite@gmail.com>
[{'old_path': 'src/node/routes/vscode.ts', 'new_path': 'src/node/routes/vscode.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -170,7 +170,7 @@ export class CodeServerRouteWrapper {\n \n constructor() {\n this.router.get("/", this.ensureCodeServerLoaded, this.$root)\n- this.router.get(/manifest.json$/, ...
TypeScript
f178f0400bde714429bc197a00c62c7ae3cc8f81
116
2022-08-09 18:24:37+00:00
18,000
['efb5baec83a745e7783694b9cf24898b54e8ad6c']
feat(e2e): add support running behind proxy (#5348) * docs: update maintaining * chore(e2e): add maxFailures to playwright * fix(ci): skip submodule in e2e job We don't need the submodules for the e2e job. This will speed up the checkout step. * feat(ci): add test-e2e-proxy job This adds a new job to C...
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -461,7 +461,6 @@ jobs:\n uses: actions/checkout@v3\n with:\n fetch-depth: 0\n- submodules: true\n \n - name: Install Node.js v16\n uses: ...
TypeScript
7bb35af04f72fc78572bf8fac2603ed8389f771c
54
2022-08-09 13:31:28-05:00
-19,800
['f178f0400bde714429bc197a00c62c7ae3cc8f81']
docs: add OpenRC example (#5266) Co-authored-by: SIGSEGV <bluenerd@protonmail.com> Co-authored-by: Joe Previte <jjprevite@gmail.com> Co-authored-by: Asher <ash@coder.com>
[{'old_path': '.github/CODEOWNERS', 'new_path': '.github/CODEOWNERS', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,3 +1,5 @@\n * @coder/code-server-reviewers\n \n ci/helm-chart/ @Matthew-Beckett @alexgorbatchev\n+\n+docs/install.md @GNUxeava\n'}, {'old_path': 'docs/install.md', 'new_path': 'docs/install.md', 't...
TypeScript
6b9bb89f43fa53cb1ca58cd17999a5ddce6ee746
168
2022-08-09 14:15:49-05:00
-19,800
['7bb35af04f72fc78572bf8fac2603ed8389f771c']
docs: add yarn installation method for termux (#5286)
[{'old_path': 'docs/termux.md', 'new_path': 'docs/termux.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -3,6 +3,7 @@\n # Termux\n \n - [Install](#install)\n+- [Yarn Installation](#yarn-installation)\n - [Upgrade](#upgrade)\n - [Known Issues](#known-issues)\n - [Git won't work in `/sdcard`](#git-wont-work-in-s...
TypeScript
5c18e3556b8b95176543a39d1b2b2300946d5c46
116
2022-08-09 14:17:18-05:00
18,000
['6b9bb89f43fa53cb1ca58cd17999a5ddce6ee746']
docs: clarify cpus are virtual (#5428)
[{'old_path': 'docs/README.md', 'new_path': 'docs/README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -19,7 +19,7 @@ access it in the browser.\n See [requirements](requirements.md) for minimum specs, as well as instructions\n on how to set up a Google VM on which you can install code-server.\n \n-**TL;DR:** L...
TypeScript
a51c94190ff8150927b6ba04f1bb527984731989
109
2022-08-09 14:40:05-05:00
-32,400
['5c18e3556b8b95176543a39d1b2b2300946d5c46']
feat: add lifecycle hook to helm chart (#5397)
[{'old_path': 'ci/helm-chart/templates/deployment.yaml', 'new_path': 'ci/helm-chart/templates/deployment.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -62,6 +62,17 @@ spec:\n securityContext:\n runAsUser: {{ .Values.securityContext.runAsUser }}\n {{- end }}\n+ {{- if ...
TypeScript
11b2ef9846e834cbe54e78a68e7ddb5350581e65
116
2022-08-09 20:41:37+00:00
18,000
['a51c94190ff8150927b6ba04f1bb527984731989']
feat: add test for EXTENSIONS_GALLERY (#5432) * refactor: add env arg to runCodeServerCommand This allows yous to pass environment variables to code-server's helper when running integration tests. * feat: add EXTENSIONS_GALLERY integration test This test ensures EXTENSIONS_GALLERY is read when set and using the `--...
[{'old_path': 'test/integration/installExtension.test.ts', 'new_path': 'test/integration/installExtension.test.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -22,4 +22,11 @@ describe("--install-extension", () => {\n const statInfo = await stat(pathToExtFolder)\n expect(statInfo.isDirectory()).toBe(true)...
TypeScript
6d8f30d5796bbd170742d8efc332daef7f5d976b
116
2022-08-10 15:23:24+00:00
18,000
['11b2ef9846e834cbe54e78a68e7ddb5350581e65']
feat: add --help integration test (#5434) Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
[{'old_path': None, 'new_path': 'test/integration/help.test.ts', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,13 @@\n+import { runCodeServerCommand } from "../utils/runCodeServerCommand"\n+\n+// NOTE@jsjoeio\n+// We have this test to ensure that native modules\n+// work as expected. If this is called on the w...
TypeScript
3335d0a456da0ea639b1e010aeb9801a876a9323
116
2022-08-10 11:43:28-07:00
18,000
['6d8f30d5796bbd170742d8efc332daef7f5d976b']
chore(ci): fix when npm job runs (#5440)
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -198,9 +198,9 @@ jobs:\n # This environment "npm" requires someone from\n # coder/code-server-reviewers to approve the PR before this job runs.\n environment: npm\n- # Onl...
TypeScript
c69f2c69f6505168acc1a1549c8242b51003a4fc
116
2022-08-10 22:59:36+00:00
18,000
['91589fd106d907868a89bc762f2f440f9e8658f9']
chore(testing): remove install/list tests (#5441) Now that we have a test for `--help` which checks to make sure native modules are working as expected, we don't need the `--install-extension` test or the `--list-extensions` test. We can also remove the `.vsix` fixture since we're not using that either.
[{'old_path': 'test/integration/fixtures/wesbos.theme-cobalt2-2.1.6.vsix', 'new_path': 'test/integration/fixtures/wesbos.theme-cobalt2-2.1.6.vsix', 'type': <ModificationType.DELETE: 4>, 'diff': 'Binary files a/test/integration/fixtures/wesbos.theme-cobalt2-2.1.6.vsix and /dev/null differ\n'}, {'old_path': 'test/integra...
TypeScript
2ec1e2de34671dd01dc5fd0d1f96bc99120bcc8c
158
2022-08-11 00:05:49+00:00
10,800
['c69f2c69f6505168acc1a1549c8242b51003a4fc']
fix: authentication check in path proxy (#5442) `proxy` should `await` for result of `authenticated` call otherwise since otherwise it will always appear to be authenticated as the promise is truthy. Co-authored-by: Asher <ash@coder.com>
[{'old_path': 'src/node/routes/index.ts', 'new_path': 'src/node/routes/index.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -94,8 +94,8 @@ export const register = async (app: App, args: DefaultedArgs): Promise<Disposabl\n app.router.use("/", domainProxy.router)\n app.wsRouter.use("/", domainProxy.wsRouter.r...
TypeScript
17aaa8b347e0bbc2f1e2bfb3dfcc40b7779e1461
67
2022-08-11 13:26:47-05:00
18,000
['2ec1e2de34671dd01dc5fd0d1f96bc99120bcc8c']
fix: logout appearing with auth=none (#5449)
[{'old_path': 'patches/logout.diff', 'new_path': 'patches/logout.diff', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -44,7 +44,7 @@ Index: code-server/lib/vscode/src/vs/server/node/webClientServer.ts\n \t\t\t\tcodeServerVersion: this._productService.codeServerVersion,\n \t\t\t\trootEndpoint: base,\n \t\t\t\tupd...
TypeScript
b091b004068ed5befa614baa41b8b7e4a87e4c80
64
2022-08-14 03:00:46+00:00
14,400
['17aaa8b347e0bbc2f1e2bfb3dfcc40b7779e1461']
Sidebar icons (#5444)
[{'old_path': 'docs/assets/images/icons/usage.svg', 'new_path': 'docs/assets/images/icons/usage.svg', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1 +1,3 @@\n-<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-...
TypeScript
43b87edc725395a0434b2f6eee4b4ceb5fe322d8
67
2022-08-15 18:23:23+00:00
18,000
['b091b004068ed5befa614baa41b8b7e4a87e4c80']
fix: socket disconnections behind reverse proxies (#5451)
[{'old_path': None, 'new_path': 'patches/heartbeat.diff', 'type': <ModificationType.ADD: 1>, 'diff': "@@ -0,0 +1,37 @@\n+Add a heartbeat to web socket connections\n+\n+This prevents them from being killed when they are idle. To test run behind\n+NGINX, make sure the sockets are idle (check dev tools), then wait 60+ se...
TypeScript
ba6b8da76bf8b51c2903c68adad150d8af4e4f74
116
2022-08-15 19:27:50+00:00
18,000
['43b87edc725395a0434b2f6eee4b4ceb5fe322d8']
docs: add proxying to angular app (#5457) * docs(guide): add proxying to Angular app * fixup: formatting * fixup: formatting Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
[{'old_path': 'docs/guide.md', 'new_path': 'docs/guide.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -16,6 +16,7 @@\n - [Stripping `/proxy/<port>` from the request path](#stripping-proxyport-from-the-request-path)\n - [Proxying to create a React app](#proxying-to-create-a-react-app)\n - [Proxying to a Vu...
TypeScript
6037468e0fb7cabf6e331149646ddfef26cf07c0
67
2022-08-15 16:21:10-05:00
18,000
['ba6b8da76bf8b51c2903c68adad150d8af4e4f74']
release: 4.5.2 (#5447)
[{'old_path': 'CHANGELOG.md', 'new_path': 'CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -20,6 +20,36 @@ Code v99.99.999\n \n -->\n \n+## [4.5.2](https://github.com/coder/code-server/releases/tag/v4.5.2) - 2022-08-15\n+\n+Code v1.68.1\n+\n+### Security\n+\n+- Fixed the proxy route not performing auth...
TypeScript
2bfe15b3e9e235b5998c721477b1aefec401341e
8
2022-08-16 20:27:23-05:00
-7,200
['bef78e6a41faca38cd5ab0e4588085a7c1ab6ae8']
chore: update Code to 1.70 (#5422) * Update upstream Code to 1.70 * Update CSP hashes * Update comment on remote authority Also remove it from script-src since it is invalid anyway. * Use absolute path for disable download patch Just to keep it consistent with the other imports. We initially added the patch like...
[{'old_path': 'lib/vscode', 'new_path': 'lib/vscode', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1 +1 @@\n-Subproject commit 30d9c6cd9483b2cc586687151bcbcd635f373630\n+Subproject commit 2062a59ca1a586d8a6e7bf483841085a94c440a4\n'}, {'old_path': 'patches/base-path.diff', 'new_path': 'patches/base-path.diff', 'ty...
TypeScript
9d8588b2ed8681a69522c5c3e2a7a038547f4b4e
116
2022-08-18 09:22:09-07:00
25,200
['61e2a9ac41ed147a7f306d7448d138ef19ce8260']
feat(ci): add aur job to npm-brew.yaml (#5462) This adds a new job called aur which checkouts code-server-aur, updates the files with the new version then opens a PR into the repo. Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
[{'old_path': '.github/workflows/npm-brew.yaml', 'new_path': '.github/workflows/npm-brew.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -67,3 +67,52 @@ jobs:\n env:\n HOMEBREW_GITHUB_API_TOKEN: ${{secrets.HOMEBREW_GITHUB_API_TOKEN}}\n run: ./ci/steps/brew-bump.sh\n+\n+ aur:\n+ ne...
TypeScript
6a7c3220b0de58498c714b6c6664399487edbfcd
116
2022-08-19 08:40:00-07:00
25,200
['9d8588b2ed8681a69522c5c3e2a7a038547f4b4e']
refactor(ci): combine publish workflows (#5471) * refactor(ci): combine publish workflows * fixup! refactor(ci): combine publish workflows
[{'old_path': '.github/workflows/docker.yaml', 'new_path': None, 'type': <ModificationType.DELETE: 4>, 'diff': '@@ -1,60 +0,0 @@\n-name: Publish on Docker\n-\n-on:\n- # Shows the manual trigger in GitHub UI\n- # helpful as a back-up in case the GitHub Actions Workflow fails\n- workflow_dispatch:\n-\n- release:\n- ...
TypeScript
33ee184ed7b168acf8b68d89e6ded3dd80ad80d8
67
2022-08-19 14:08:39-05:00
18,000
['6a7c3220b0de58498c714b6c6664399487edbfcd']
release: 4.6.0 (#5469)
[{'old_path': 'CHANGELOG.md', 'new_path': 'CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -20,6 +20,23 @@ Code v99.99.999\n \n -->\n \n+## [4.6.0](https://github.com/coder/code-server/releases/tag/v4.6.0) - 2022-08-17\n+\n+Code v1.70.1\n+\n+### Changed\n+\n+- Updated Code to 1.70.1.\n+\n+### Added\n+\...
TypeScript
8352a22e33c28f766cc87ee3586a16d5a003e2d7
116
2022-08-22 12:47:36-07:00
25,200
['33ee184ed7b168acf8b68d89e6ded3dd80ad80d8']
fix(testing): reduce flakiness in extension e2e tests (#5481)
[{'old_path': 'test/e2e/extensions.test.ts', 'new_path': 'test/e2e/extensions.test.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -8,12 +8,14 @@ function runTestExtensionTests() {\n test("should have access to VSCODE_PROXY_URI", async ({ codeServerPage }) => {\n const address = await getMaybeProxiedCodeSe...
TypeScript
90f603549adbcbb608041fda2138265523ff0353
88
2022-08-22 16:07:57-05:00
25,200
['8352a22e33c28f766cc87ee3586a16d5a003e2d7']
fix: generate shrinkwrap file for deterministic dependencies (#5071)
[{'old_path': 'ci/build/build-release.sh', 'new_path': 'ci/build/build-release.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -18,6 +18,8 @@ main() {\n VSCODE_SRC_PATH="lib/vscode"\n VSCODE_OUT_PATH="$RELEASE_PATH/lib/vscode"\n \n+ create_shrinkwraps\n+\n mkdir -p "$RELEASE_PATH"\n \n bundle_code_serve...
TypeScript
bc05a2f3b9abfa80cedf208ba98878dcabae22e4
8
2022-08-22 16:18:23-07:00
-7,200
['90f603549adbcbb608041fda2138265523ff0353']
chore: update code (#5485) Co-authored-by: Joe Previte <jjprevite@gmail.com>
[{'old_path': 'lib/vscode', 'new_path': 'lib/vscode', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1 +1 @@\n-Subproject commit 2062a59ca1a586d8a6e7bf483841085a94c440a4\n+Subproject commit e4503b30fc78200f846c62cf8091b76ff5547662\n'}]
TypeScript
3db08fdf51786b45ba41a9ae0c4cdf03e9e6590a
116
2022-08-23 08:28:44-07:00
25,200
['bc05a2f3b9abfa80cedf208ba98878dcabae22e4']
Update CODEOWNERS (#5491)
[{'old_path': '.github/CODEOWNERS', 'new_path': '.github/CODEOWNERS', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,4 +1,4 @@\n-* @coder/code-server-reviewers\n+* @coder/code-server\n \n ci/helm-chart/ @Matthew-Beckett @alexgorbatchev\n \n'}]
TypeScript
f5a1e3a3fafb738b01a5b5e53f54db50c83ab120
116
2022-08-23 08:29:22-07:00
25,200
['3db08fdf51786b45ba41a9ae0c4cdf03e9e6590a']
Update publish.yaml (#5490)
[{'old_path': '.github/workflows/publish.yaml', 'new_path': '.github/workflows/publish.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -22,7 +22,7 @@ jobs:\n runs-on: ubuntu-latest\n steps:\n - name: Checkout code-server\n- - uses: actions/checkout@v3\n+ uses: actions/checkout@v3\n \n...
TypeScript
d1acfad2a83fb4a4bc1c7670cf2315337273d05a
116
2022-08-23 11:36:24-07:00
25,200
['ccbf0bebb7fd0698848ee90e124a60c95c82bfdd']
chore: fix npm publish logic (#5493) * chore: clean up logging in npm script * fix: catch error if npm version missing npm changed the way the `npm view` command handles missing versions. Before it exited with a non-error. Now it errors. Ref: https://github.com/npm/cli/pull/5035 This modifies the script l...
[{'old_path': 'ci/steps/publish-npm.sh', 'new_path': 'ci/steps/publish-npm.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -65,7 +65,8 @@ main() {\n # "production" - this means we tag with `latest` (default), allowing\n # a developer to install this version with `yarn add code-server@latest`\n if ! is_env_...
TypeScript
101d4ee4ad20264beb67c8ff012fbc1ec7f2756b
67
2022-08-29 09:41:29-07:00
18,000
['d1acfad2a83fb4a4bc1c7670cf2315337273d05a']
chore: add flake for development with Nix (#5509)
[{'old_path': None, 'new_path': 'flake.lock', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,41 @@\n+{\n+ "nodes": {\n+ "flake-utils": {\n+ "locked": {\n+ "lastModified": 1659877975,\n+ "narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=",\n+ "owner": "numtide",\n+ ...
TypeScript
6262c7a0bf721a9e4a20f6060efa5c8df0c32d15
67
2022-08-30 10:19:19-05:00
18,000
['101d4ee4ad20264beb67c8ff012fbc1ec7f2756b']
fix: propagate execArgv (#5510) * Use fork instead of spawn We no longer do in-place updating so no need for the spawn. The advantage of a fork is that it preserves flags like --prof which you can use to profile code-server. Also I am not sure the comment about not being able to reload in place with fork was...
[{'old_path': None, 'new_path': 'patches/exec-argv.diff', 'type': <ModificationType.ADD: 1>, 'diff': "@@ -0,0 +1,17 @@\n+Preserve process.execArgv\n+\n+This ensures flags like --prof are passed down so we can profile everything.\n+\n+Index: code-server/lib/vscode/src/vs/server/node/extensionHostConnection.ts\n+========...
TypeScript
ef3f4e82b23b5ea2fd4ba09a93e253bd6709437d
88
2022-08-30 12:00:11-05:00
25,200
['6262c7a0bf721a9e4a20f6060efa5c8df0c32d15']
docs: remove references to installing with yarn in favor of npm (#5518)
[{'old_path': 'docs/CONTRIBUTING.md', 'new_path': 'docs/CONTRIBUTING.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -141,7 +141,7 @@ Run your build:\n \n ```shell\n cd release\n-yarn --production # Skip if you used KEEP_MODULES=1\n+npm install --omit=dev # Skip if you used KEEP_MODULES=1\n # Runs the built Java...
TypeScript
f9bfd58cf4b943f5f7494a01dbfcfb9fbe9890eb
116
2022-08-30 23:14:21+00:00
25,200
['ef3f4e82b23b5ea2fd4ba09a93e253bd6709437d']
refactor: drop db migration patch (#5519) * refactor: remove database migration patch & test Drop migration code since it's been 6 months since 4.0.2 and we no longer need this. See: https://github.com/coder/code-server/issues/5482#issuecomment-1222608635 * chore: refresh patches
[{'old_path': 'patches/telemetry.diff', 'new_path': 'patches/telemetry.diff', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -104,6 +104,13 @@ Index: code-server/lib/vscode/src/vs/workbench/services/telemetry/browser/teleme\n -\t\t\t\tsendErrorTelemetry: this.sendErrorTelemetry,\n -\t\t\t};\n -\t\t\tthis.impl = this...
TypeScript
8a227d9fa100f1500d6205f0b44b4e60542cc470
116
2022-08-31 13:28:36-07:00
25,200
['f9bfd58cf4b943f5f7494a01dbfcfb9fbe9890eb']
feat: add displayLang test (#5495) * feat(e2e): add language extension to setup This adds a slimmed-down version of the Spanish Language Pack and also adds a `languagepacks.json` to the e2e `workspaceDir` which allows use to run a test suite passing the `--locale es` flags to simulate a different display languag...
[{'old_path': None, 'new_path': 'test/e2e/displayLang.test.ts', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,14 @@\n+import * as path from "path"\n+import { describe, test, expect } from "./baseFixture"\n+\n+// Given a code-server environment with Spanish Language Pack extension installed\n+// and a languagep...
TypeScript
4e9ed5658019b3479509d4722be86d0a9ff682ee
116
2022-08-31 14:53:14-07:00
25,200
['8a227d9fa100f1500d6205f0b44b4e60542cc470']
release: 4.6.1 (#5522) * chore(release): bump version to 4.6.1 * chore: update reviewers in release-prep * chore: update CHANGELOG * chore: bump Helm chart
[{'old_path': 'CHANGELOG.md', 'new_path': 'CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -20,6 +20,24 @@ Code v99.99.999\n \n -->\n \n+## [4.6.1](https://github.com/coder/code-server/releases/tag/v4.6.1) - 2022-08-31\n+\n+Code v1.70.2\n+\n+### Changed\n+\n+- Updated Code to 1.70.2.\n+- Updated `argon...
TypeScript
6742e945cc13d47bdd50a0e6b8e0187e99338aab
116
2022-09-06 09:38:55-07:00
25,200
['4e9ed5658019b3479509d4722be86d0a9ff682ee']
docs: fix typo in install.md (#5529)
[{'old_path': 'docs/install.md', 'new_path': 'docs/install.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -109,7 +109,7 @@ We recommend installing with `npm` when:\n \n Installing code-server with `npm` builds native modules on install.\n \n-This process requires C dependencies; see our guide on [installing wit...
TypeScript
da03a648c25bc32dbf24c50a26a2badf3ae600a7
116
2022-09-06 11:03:27-07:00
25,200
['6742e945cc13d47bdd50a0e6b8e0187e99338aab']
fix(npm): use correct flags and update version for npm (#5533) * fix: update npm-postinstall.sh script Add --legacy-peer-deps to deal with weird npm issue with vscode dependencies. See: https://stackoverflow.com/a/66620869/3015595 * fix: use npm in release-standalone * chore: update package.json * chor...
[{'old_path': 'ci/build/build-standalone-release.sh', 'new_path': 'ci/build/build-standalone-release.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -28,7 +28,7 @@ main() {\n ln -s "./lib/node" "$RELEASE_PATH/node"\n \n pushd "$RELEASE_PATH"\n- yarn --production --frozen-lockfile\n+ npm install --unsafe-pe...
TypeScript
64822d0f64beddf81dd80c58afa951453b8453a6
116
2022-09-06 13:34:34-07:00
25,200
['74017ecc659a041674606e399b38a33aaec0743c']
docs: add comment to npm-postinstall.sh (#5541)
[{'old_path': 'ci/build/npm-postinstall.sh', 'new_path': 'ci/build/npm-postinstall.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -140,6 +140,9 @@ install_with_yarn_or_npm() {\n echo "yarn.lock file present, running in development mode. use yarn to install code-server!"\n exit 1\n else\n+ ...
TypeScript
a1cf4b9ea552049c0a44db8117ee136670a1ac2f
113
2022-09-07 16:23:36-07:00
25,200
['64822d0f64beddf81dd80c58afa951453b8453a6']
Fix deb install instructions: ${VERSION}_foo (#5542) The install instructions weren't copy-pastable: `$VERSION_foo` is the same as `${VERSION_foo}`, not `${VERSION}_foo`. ```sh $ VERSION=4.6.1 $ curl -fOL https://github.com/coder/code-server/releases/download/v$VERSION/code-server_$VERSION_amd64.deb % Total ...
[{'old_path': 'docs/install.md', 'new_path': 'docs/install.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -154,8 +154,8 @@ code-server\n > upgrade or [build with npm](#npm).\n \n ```bash\n-curl -fOL https://github.com/coder/code-server/releases/download/v$VERSION/code-server_$VERSION_amd64.deb\n-sudo dpkg -i co...
TypeScript
b486354d6e30f39d907a2f58d2e4d3dd187a7e83
8
2022-09-09 16:28:54+00:00
-7,200
['a1cf4b9ea552049c0a44db8117ee136670a1ac2f']
Update to 1.71 (#5535) * chore: update upstream code * update patches for vs 1.71.0 the cli fix seems to be fixed in upstream, the telemtry patch requires (again) some fixing and adjustments. * add safari fix. * increase ci timeout Co-authored-by: Joe Previte <jjprevite@gmail.com>
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -25,7 +25,7 @@ jobs:\n prebuild:\n name: Pre-build checks\n runs-on: ubuntu-latest\n- timeout-minutes: 15\n+ timeout-minutes: 20\n steps:\n - name: Checkout rep...
TypeScript
3fb38414dd54189061b3a902de532f2fc18f9339
116
2022-09-09 17:05:30+00:00
25,200
['b486354d6e30f39d907a2f58d2e4d3dd187a7e83']
docs: update patch testing instructions (#5543) * docs: explain how to test exec-argv * docs: explain how to test telemetry patch
[{'old_path': 'patches/exec-argv.diff', 'new_path': 'patches/exec-argv.diff', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,13 @@\n Preserve process.execArgv\n \n-This ensures flags like --prof are passed down so we can profile everything.\n+This ensures flags like `--prof` are passed down to the code-serve...
TypeScript
5028169e636f8cf60ef99b299a489c291917e0c8
116
2022-09-09 17:47:57+00:00
25,200
['3fb38414dd54189061b3a902de532f2fc18f9339']
refactor: heartbeat patch (#5545)
[{'old_path': 'patches/heartbeat.diff', 'new_path': None, 'type': <ModificationType.DELETE: 4>, 'diff': "@@ -1,37 +0,0 @@\n-Add a heartbeat to web socket connections\n-\n-This prevents them from being killed when they are idle. To test run behind\n-NGINX, make sure the sockets are idle (check dev tools), then wait 60+...
TypeScript
04f1080451f489b4a038bb51ac73586546fdb3a8
116
2022-09-09 15:15:39-07:00
25,200
['5028169e636f8cf60ef99b299a489c291917e0c8']
release: 4.7.0 (#5546) * docs: update MAINTAINING * refactor: use branch name in release-prep This makes a minor improvement to the `release-prep.sh` script to grab the version to update to from the branch name. * chore(release): bump version to 4.7.0 * fixup: bump version * docs: use latest instead of...
[{'old_path': 'CHANGELOG.md', 'new_path': 'CHANGELOG.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -20,14 +20,30 @@ Code v99.99.999\n \n -->\n \n-## [4.6.1](https://github.com/coder/code-server/releases/tag/v4.6.1) - 2022-08-31\n+## [4.7.0](https://github.com/coder/code-server/releases/tag/v4.7.0) - 2022-09-09...
TypeScript
dbe87c5494fee82b6642ec725e66821195e695b3
116
2022-09-09 22:50:21+00:00
25,200
['04f1080451f489b4a038bb51ac73586546fdb3a8']
fix(ci): specify ref in aur publish job (#5550)
[{'old_path': '.github/workflows/publish.yaml', 'new_path': '.github/workflows/publish.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -95,6 +95,7 @@ jobs:\n with:\n repository: "cdrci/code-server-aur"\n token: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}\n+ ref: "master"\n \n ...
TypeScript
309a3b2c6eb9bcb0b1b84679cf87a8099b268e24
116
2022-09-14 06:31:13-07:00
25,200
['b44005461380e43ae5603e26949fd1dfa34009d4']
chore: move security workflows (#5553) * refactor: move security jobs to security.yaml * fixup! refactor: move security jobs to security.yaml
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -62,40 +62,6 @@ jobs:\n run: yarn lint\n if: success()\n \n- audit-ci:\n- name: Run audit-ci\n- needs: prebuild\n- runs-on: ubuntu-latest\n- timeout-minutes:...
TypeScript
7ecfb955693c7c94d19b0e6ceca50cf8eae11423
116
2022-09-15 16:49:28-05:00
25,200
['309a3b2c6eb9bcb0b1b84679cf87a8099b268e24']
chore: update Code to 1.71.1 (#5558) * chore: update Code to 1.71.1 * chore: refresh patches * docs: add quilt refresh tip
[{'old_path': 'docs/CONTRIBUTING.md', 'new_path': 'docs/CONTRIBUTING.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -111,6 +111,15 @@ re-apply the patches.\n 6. Commit the updated submodule and patches to `code-server`.\n 7. Open a PR.\n \n+Tip: if you're certain all patches are applied correctly and you simply...
TypeScript
987c68a32aaf815868b51247cfffc33dac7ac659
116
2022-09-16 15:14:28+00:00
25,200
['7ecfb955693c7c94d19b0e6ceca50cf8eae11423']
feat: add release workflow (#5560) * feat(ci): add draft release workflow * refactor: delete old release-github workflows * fixup! refactor: delete old release-github workflows * fixup! refactor: delete old release-github workflows * Update .github/workflows/release.yaml * fixup!: remove release-notes.t...
[{'old_path': None, 'new_path': '.github/workflows/release.yaml', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,39 @@\n+name: Draft release\n+\n+on:\n+ workflow_dispatch:\n+\n+permissions:\n+ contents: write # For creating releases.\n+ discussions: write # For creating a discussion.\n+\n+# Cancel in-progre...
TypeScript
4223cf6e2bbab8e2f934e302b2be134506fb7e97
116
2022-09-19 11:56:34-05:00
25,200
['987c68a32aaf815868b51247cfffc33dac7ac659']
refactor(ci): fix fetch-depth and add some caching (#5563) * refactor: rename ci -> build.yaml * feat: add build.yaml * feat: add node caching to platform jobs * trigger ci
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/build.yaml', 'type': <ModificationType.RENAME: 3>, 'diff': '@@ -18,7 +18,7 @@ concurrency:\n # Note: if: success() is used in several jobs -\n # this ensures that it only executes if all previous jobs succeeded.\n \n-# if: steps.cache-yarn.output...
TypeScript
51677f0819e1070273ab973b1aa5bc2071cf9636
116
2022-09-22 12:33:32-07:00
25,200
['4223cf6e2bbab8e2f934e302b2be134506fb7e97']
feat(ci): refactor build workflow (#5572) * refactor: remove stylelint * refactor: move shellcheck to separate job * refactor: add helm script and job * refactor: add eslint job and yarn script * fix(test/tsconfig): exclude test-plugin * refactor: delete lint, add typecheck job * refactor: remove pre...
[{'old_path': '.github/workflows/build.yaml', 'new_path': '.github/workflows/build.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -22,10 +22,10 @@ concurrency:\n # will skip running `yarn install` if it successfully fetched from cache\n \n jobs:\n- prebuild:\n- name: Pre-build checks\n+ fmt:\n+ name: ...
TypeScript
7e98628167c7030d68fd00767df70269a77ed5c9
67
2022-09-23 00:15:26+00:00
18,000
['42c21c9684d79708837d7f6d0c71a88ad8e35dc8']
fix: installer tests (#5578) Also rename from yml to yaml.
[{'old_path': '.github/workflows/installer.yml', 'new_path': '.github/workflows/installer.yaml', 'type': <ModificationType.RENAME: 3>, 'diff': '@@ -6,11 +6,13 @@ on:\n - main\n paths:\n - "install.sh"\n+ - ".github/workflows/installer.yaml"\n pull_request:\n branches:\n - main\n pat...
TypeScript
fdec34cf85fb34f7a151dd13cb69e17e8e8db375
116
2022-09-23 20:51:44+00:00
25,200
['7e98628167c7030d68fd00767df70269a77ed5c9']
refactor: drop connection-type patch (#5585)
[{'old_path': 'patches/connection-type.diff', 'new_path': None, 'type': <ModificationType.DELETE: 4>, 'diff': '@@ -1,26 +0,0 @@\n-Add connection type to web sockets\n-\n-This allows the backend to distinguish them. In our case we use them to count a\n-single "open" of Code so we need to be able to distinguish between ...
TypeScript
3256157a3f4223c956998d91f20979c2dc581509
116
2022-09-23 22:51:41+00:00
25,200
['fdec34cf85fb34f7a151dd13cb69e17e8e8db375']
chore: update code to 1.71.2 (#5580) * chore: update code to 1.71.2 * chore: update telemetry patch It appears part of the fix has been implemented upstream. * refactor: drop safari-console patch This has been fixed upstream.
[{'old_path': 'ci/build/build-vscode.sh', 'new_path': 'ci/build/build-vscode.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -79,7 +79,10 @@ main() {\n "newsletterSignupUrl": "https://www.research.net/r/vsc-newsletter",\n "linkProtectionTrustedDomains": [\n "https://open-vsx.org"\n- ]\n+ ],\n...
TypeScript
3264187419abc0e3c6c1519af55223be5702c9e8
175
2022-09-26 13:04:36-07:00
18,000
['3256157a3f4223c956998d91f20979c2dc581509']
Set RPM Upgrade Flag (#5588)
[{'old_path': 'install.sh', 'new_path': 'install.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -364,7 +364,7 @@ install_rpm() {\n \n fetch "https://github.com/coder/code-server/releases/download/v$VERSION/code-server-$VERSION-$ARCH.rpm" \\\n "$CACHE_DIR/code-server-$VERSION-$ARCH.rpm"\n- sudo_sh_c rpm -...
TypeScript
05289d3eb643c0ae89742e56685b525de5fc6ce9
116
2022-09-27 11:46:37-07:00
25,200
['3264187419abc0e3c6c1519af55223be5702c9e8']
chore(ci): move platform steps to release (#5587) * refactor: move platform steps build -> release * fixup! refactor: move platform steps build -> release * refactor: download npm package * refactor: upload release-packages to draft * refactor: remove draft step * refactor: e2e rely on build now * re...
[{'old_path': '.github/workflows/build.yaml', 'new_path': '.github/workflows/build.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -127,7 +127,7 @@ jobs:\n run: yarn lint:ts\n \n build:\n- name: Build\n+ name: Build code-server\n runs-on: ubuntu-latest\n timeout-minutes: 30\n env:\n...
TypeScript
acdbefb986ce976d0cca699e25d888d1711f7bcb
116
2022-09-27 14:09:53-07:00
25,200
['05289d3eb643c0ae89742e56685b525de5fc6ce9']
docs: update telemetry patch (#5596) This adds instructions on how to test the telemetry patch. Eventually we will add a test for it but for now, this makes it 10x easier to test.
[{'old_path': 'patches/telemetry.diff', 'new_path': 'patches/telemetry.diff', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,9 +1,11 @@\n Add support for telemetry endpoint\n \n To test:\n-1. Look inside a build of code-server, inside `lib/vscode/vs/server/node/server.main.js`\n-2. Search for a `JSON.stringify` n...
TypeScript
b6aeb4bfabc762b0060dba71c8b60ea8d602dc86
183
2022-09-28 21:06:24+00:00
-28,800
['acdbefb986ce976d0cca699e25d888d1711f7bcb']
fix: fix can't run it as expected in freebsd (#5595) In freebsd, su -c expects a login class argument instead of a command, if -c is preceded by a username, then -c and the arguments that follow will be passed as shell arguments
[{'old_path': 'install.sh', 'new_path': 'install.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -556,7 +556,7 @@ sudo_sh_c() {\n elif command_exists sudo; then\n sh_c "sudo $*"\n elif command_exists su; then\n- sh_c "su - -c \'$*\'"\n+ sh_c "su root -c \'$*\'"\n else\n echoh\n echoerr "T...
TypeScript