Search is not available for this dataset
hash
string
author
int32
committer_date
string
timezone
int64
parents
string
message
string
changes
string
language
string
150138e04b8800a64b9df8f484cf09ae7e6f1c59
67
2021-03-02 15:59:47-06:00
21,600
['ba4448e72dab602dfcab1fc718e181093dc7e3cb']
Update env vars for extension host They now are all prepended with VSCODE_. Also added the parent pid to ensure it shuts down when the parent dies.
[{'old_path': 'lib/vscode/src/vs/server/node/connection.ts', 'new_path': 'lib/vscode/src/vs/server/node/connection.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -136,14 +136,15 @@ export class ExtensionHostConnection extends Connection {\n \t\t\t{\n \t\t\t\tenv: {\n \t\t\t\t\t...process.env,\n-\t\t\t\t\tAMD_EN...
TypeScript
64992704115d94cb0fe99ea0532424819cf3c64d
116
2021-03-02 15:27:29-07:00
25,200
['d48a74c317f59d4a467ba004dcbe38abfefbf73f']
docs(README): add shield linking to version docs
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,7 @@\n # code-server &middot; [!["GitHub Discussions"](https://img.shields.io/badge/%20GitHub-%20Discussions-gray.svg?longCache=true&logo=github&colorB=purple)](https://github.com/cdr/code-server/discussions) [...
TypeScript
696e0fbb14c17248ff0757dca3f91ab6abcdab53
116
2021-03-02 15:43:49-07:00
25,200
['64992704115d94cb0fe99ea0532424819cf3c64d']
docs(ci): add step for updating docs shield
[{'old_path': 'ci/README.md', 'new_path': 'ci/README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -23,6 +23,7 @@ Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub)\n changed. Replace the numbers as needed.\n - You can install `rg` or `ripgrep` on macOS [here](https...
TypeScript
4d3d1b844defc5a3be6316148f61992daf39d72d
67
2021-03-02 17:18:49-06:00
21,600
['150138e04b8800a64b9df8f484cf09ae7e6f1c59']
Handle permessage-deflate on sockets With this the extension host is working again.
[{'old_path': 'lib/vscode/src/vs/server/entry.ts', 'new_path': 'lib/vscode/src/vs/server/entry.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -68,7 +68,7 @@ process.on('message', async (message: CodeServerMessage, socket) => {\n \t\t\t}\n \t\t\tbreak;\n \t\tcase 'socket':\n-\t\t\tvscode.handleWebSocket(socket, ...
TypeScript
1632a19a76d47c3f918df75405d20493e0e32cac
116
2021-03-03 11:52:36-07:00
25,200
['4d3d1b844defc5a3be6316148f61992daf39d72d']
chore: fix lint error in channel.ts
[{'old_path': 'lib/vscode/src/vs/server/node/channel.ts', 'new_path': 'lib/vscode/src/vs/server/node/channel.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -907,5 +907,5 @@ function transformIncoming(remoteAuthority: string, uri: UriComponents | undefin\n }\n \n function isDefined<T>(t: T | undefined): t is T {...
TypeScript
34b1e756f9768ccc7cfa272699215d0c16820935
67
2021-03-04 13:54:03-06:00
21,600
['ad24edd2be21c9c015a6656de472c6d929b2cc19']
Remove old commented out postinstall steps
[{'old_path': 'lib/vscode/build/npm/postinstall.js', 'new_path': 'lib/vscode/build/npm/postinstall.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -38,11 +38,6 @@ function yarnInstall(location, opts) {\n \n for (let dir of dirs) {\n \n-// NOTE@coder: Skip these dependencies since we don't use them.\n-// if (!(pr...
TypeScript
61b5c09770dbd9bcd4a0a82029fe5492ab242015
67
2021-03-04 13:54:04-06:00
21,600
['34b1e756f9768ccc7cfa272699215d0c16820935']
Allow our server code to be tracked in git
[{'old_path': 'lib/vscode/.gitignore', 'new_path': 'lib/vscode/.gitignore', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -7,7 +7,7 @@ node_modules/\n extensions/**/dist/\n /out*/\n /extensions/**/out/\n-src/vs/server\n+# src/vs/server NOTE@coder: So our code isn't ignored.\n resources/server\n build/node_modules\n...
TypeScript
9e2668ec75a0aa76d72736d1a5342cb52fef23d9
98
2021-03-05 06:55:05-05:00
18,000
['5f421122696632c0b97da803ceaef9ba281d0a78']
chore: Remove pages/update.css It appears the associated HTML for these styles was removed in 554b6d6fcf219afdbb9c6cef5393c492d401b73f
[{'old_path': 'src/browser/pages/update.css', 'new_path': None, 'type': <ModificationType.DELETE: 4>, 'diff': '@@ -1,26 +0,0 @@\n-.update-form {\n- text-align: center;\n-}\n-\n-.update-form > .cancel {\n- background-color: red;\n-}\n-\n-.update-form > .error {\n- color: red;\n- margin-top: 16px;\n-}\n-\n-.update-fo...
TypeScript
9cbf6926f20ad53ab999a75cf4c51087a944e12d
116
2021-03-05 10:28:37-07:00
25,200
['61b5c09770dbd9bcd4a0a82029fe5492ab242015']
fix(ci): always upload test artifacts Before this commit, if the tests fail then the artifacts don't get uploaded. This makes it harder to debug failing e2e tests. To prevent this, this commit adds an "if" condition which says always run this step. Source: https://stackoverflow.com/a/58859404/3015595
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -44,6 +44,7 @@ jobs:\n yarn --frozen-lockfile\n yarn test\n - name: Upload test artifacts\n+ if: always()\n uses: actions/upload-artifact@v2\n ...
TypeScript
e47eabf375d6019dcef506a52720ab8d9d305cfa
116
2021-03-05 11:58:17-07:00
25,200
['9cbf6926f20ad53ab999a75cf4c51087a944e12d']
fix: goHome test after location change
[{'old_path': 'test/goHome.test.ts', 'new_path': 'test/goHome.test.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -73,8 +73,11 @@ describe("go home", () => {\n // In case the page takes a long time to load\n await page.goto(CODE_SERVER_ADDRESS, { waitUntil: "domcontentloaded" })\n \n+ // Make sure th...
TypeScript
606fa26b5a4f62135aa25bef5d3644906a87a76c
116
2021-03-05 14:05:31-07:00
25,200
['f21433a130ab07db569a1ae43a04416e7ec306ba']
chore: bump version to 3.9.1
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,7 @@\n # code-server &middot; [!["GitHub Discussions"](https://img.shields.io/badge/%20GitHub-%20Discussions-gray.svg?longCache=true&logo=github&colorB=purple)](https://github.com/cdr/code-server/discussions) [...
TypeScript
a3db1be150e06c3bc50b61b8e56251247b7e3c15
116
2021-03-05 14:05:32-07:00
25,200
['606fa26b5a4f62135aa25bef5d3644906a87a76c']
docs(readme): update code coverage badge
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,6 @@\n # code-server &middot; [!["GitHub Discussions"](https://img.shields.io/badge/%20GitHub-%20Discussions-gray.svg?longCache=true&logo=github&colorB=purple)](https://github.com/cdr/code-server/discussions) [...
TypeScript
d81a16a68ed20d7ff79fec51c5b6d2fbdfc690c4
116
2021-03-05 14:05:33-07:00
25,200
['a3db1be150e06c3bc50b61b8e56251247b7e3c15']
refactor: move PR tempalte
[{'old_path': '.github/pull_request_template.md', 'new_path': '.github/PULL_REQUEST_TEMPLATE/pull_request_template.md', 'type': <ModificationType.RENAME: 3>, 'diff': ''}]
TypeScript
f0f776587cd1c53a54bb3721d6ec7a42122c6162
116
2021-03-05 14:05:33-07:00
25,200
['d81a16a68ed20d7ff79fec51c5b6d2fbdfc690c4']
feat: add release template
[{'old_path': None, 'new_path': '.github/PULL_REQUEST_TEMPLATE/release_template.md', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,15 @@\n+This PR is to generate a new release of `code-server` at `0.0.0`\n+\n+## Screenshot\n+\n+TODO\n+\n+## TODOs\n+\n+- [ ] update the AUR package\n+- [ ] upload assets to draft...
TypeScript
e0203f2a36c9b7036fefa50eec6cf8fa36c5c015
116
2021-03-05 14:05:33-07:00
25,200
['f0f776587cd1c53a54bb3721d6ec7a42122c6162']
feat: add new section to release notes draft
[{'old_path': 'ci/build/release-github-draft.sh', 'new_path': 'ci/build/release-github-draft.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -23,6 +23,9 @@ installations.\n \n - ⭐ Summarize new features here with references to issues\n \n+## VS Code\n+ - ⭐ Summarize VS Code version update here with references...
TypeScript
2d298a71dd57fa0712589b008f95dcaffdc43bd4
143
2021-03-08 16:24:35-05:00
18,000
['f21433a130ab07db569a1ae43a04416e7ec306ba']
add initial mention of deploy-code-server (draft)
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -24,10 +24,11 @@ You can use whatever linux distribution floats your boat but in our [guide](./do\n \n ## Getting Started\n \n-There are two ways to get started:\n+There are three ways you can get started:\n \n 1. Usin...
TypeScript
745e4fc54249d22fc4d070e94d7cd4fb3975c76c
143
2021-03-08 18:59:14-05:00
18,000
['31e3bf30daf8afeac41f54a7488f8c7629b828e4']
update cloud info in install.md
[{'old_path': 'docs/install.md', 'new_path': 'docs/install.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -14,7 +14,7 @@\n - [Standalone Releases](#standalone-releases)\n - [Docker](#docker)\n - [helm](#helm)\n-- [App Engines (Azure, Heroku)](#app-engines-azure-heroku)\n+- [Cloud Providers](#cloud-providers)\n ...
TypeScript
81cf111794f3fece971bf781e86d8f21297e44dd
116
2021-03-10 10:47:47-07:00
25,200
['f70a73bb89ddff0f075bcb397e06f255f50cf532']
docs(npm): update node requirements
[{'old_path': 'docs/npm.md', 'new_path': 'docs/npm.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -2,6 +2,7 @@\n <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->\n # npm Install Requirements\n \n+- [npm Install Requirements](#npm-install-requirements)\n - [Ubuntu, Debian](#ubuntu-debian)\n ...
TypeScript
0cb5c2e937ef5a778ba06d92c04ca01486a3a0f7
116
2021-03-10 10:47:47-07:00
25,200
['81cf111794f3fece971bf781e86d8f21297e44dd']
feat: update node version engine in package.json
[{'old_path': 'docs/npm.md', 'new_path': 'docs/npm.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -2,7 +2,6 @@\n <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->\n # npm Install Requirements\n \n-- [npm Install Requirements](#npm-install-requirements)\n - [Ubuntu, Debian](#ubuntu-debian)\n - [F...
TypeScript
5a1f62a8fbf041305e8eadd9a248f7479e5ff0ef
67
2021-03-10 13:14:24-06:00
21,600
['f70a73bb89ddff0f075bcb397e06f255f50cf532']
Support permessage-deflate web socket extension (#2846)
[{'old_path': 'lib/vscode/src/vs/server/node/server.ts', 'new_path': 'lib/vscode/src/vs/server/node/server.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -120,7 +120,7 @@ export class Vscode {\n \t\t};\n \t}\n \n-\tpublic async handleWebSocket(socket: net.Socket, query: Query, _permessageDeflate: boolean): Prom...
TypeScript
781532c22d993e889195efc5b98b38d2df02f767
116
2021-03-10 13:00:33-07:00
25,200
['c801a98e3397316a39af12b28ac0b037233f4c90']
docs(install): add termux section
[{'old_path': 'docs/install.md', 'new_path': 'docs/install.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -9,6 +9,7 @@\n - [Debian, Ubuntu](#debian-ubuntu)\n - [Fedora, CentOS, RHEL, SUSE](#fedora-centos-rhel-suse)\n - [Arch Linux](#arch-linux)\n+- [Termux](#termux)\n - [yarn, npm](#yarn-npm)\n - [macOS](#macos...
TypeScript
f19ae171eaac012f974df6e85790baa30f0dac48
116
2021-03-10 15:09:00-07:00
25,200
['5d5e6314a15877d1e6d6f82fcdcfb38355f1f758']
feat(update-vscode): grab latest vscode version
[{'old_path': 'ci/dev/update-vscode.sh', 'new_path': 'ci/dev/update-vscode.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -8,9 +8,8 @@ main() {\n # if it doesn\'t, we add it\n if ! git config remote.vscode.url > /dev/null; then\n echo "Could not find \'vscode\' as a remote"\n- echo "Adding with: git ...
TypeScript
612b8314f993aff027d8a5b25408871a4fe882fa
116
2021-03-10 17:14:20-07:00
25,200
['f19ae171eaac012f974df6e85790baa30f0dac48']
feat(update-vscode): add step to commit files
[{'old_path': 'ci/dev/update-vscode.sh', 'new_path': 'ci/dev/update-vscode.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,23 @@\n #!/usr/bin/env bash\n set -euo pipefail\n \n+# This function expects two arguments\n+# 1. the vscode version we\'re updating to\n+# 2. the list of merge conflict files\n+make...
TypeScript
3e79a84152894a79aae4780d956cebb61f2a5b86
116
2021-03-11 09:48:18-07:00
25,200
['612b8314f993aff027d8a5b25408871a4fe882fa']
feat: add docs and update PR body
[{'old_path': 'ci/dev/update-vscode.sh', 'new_path': 'ci/dev/update-vscode.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,4 +1,14 @@\n #!/usr/bin/env bash\n+# Description: This is a script to make the process of updating vscode versions easier\n+# Run it with `yarn update:vscode` and it will do the following...
TypeScript
b0861029c06fb1320a335f2e45962141d83c5f69
116
2021-03-11 10:14:56-07:00
25,200
['3e79a84152894a79aae4780d956cebb61f2a5b86']
fix: add no-verify for commit line
[{'old_path': 'ci/dev/update-vscode.sh', 'new_path': 'ci/dev/update-vscode.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -104,7 +104,9 @@ main() {\n echo "Note: this is intentional"\n echo "If we don\'t do this, code review is impossible."\n echo -e "For more info, see docs: docs/CONTRIBUTING.md#updating...
TypeScript
6f638f1329061c297b5d5ea498482df218e1ebd1
116
2021-03-11 10:23:43-07:00
25,200
['b0861029c06fb1320a335f2e45962141d83c5f69']
fix: set upstream when pushing branch
[{'old_path': 'ci/dev/update-vscode.sh', 'new_path': 'ci/dev/update-vscode.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -85,7 +85,9 @@ main() {\n if [[ -z $(git ls-remote --heads origin "$CURRENT_BRANCH") ]]; then\n echo "Doesn\'t look like you\'ve pushed this branch to remote"\n echo -e "Pushing no...
TypeScript
44a4a0bc206a43d4e67843cf35e02c8ddb1dd19d
116
2021-03-11 10:26:36-07:00
25,200
['6f638f1329061c297b5d5ea498482df218e1ebd1']
fix: update base branch to main
[{'old_path': 'ci/dev/update-vscode.sh', 'new_path': 'ci/dev/update-vscode.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -114,7 +114,7 @@ main() {\n # Hence why we do this after the subtree update.\n echo "Opening a draft PR on GitHub"\n # To read about these flags, visit the docs: https://cli.github.com...
TypeScript
548b6fb628003c04b98e99f2515ddc7b5b43c325
116
2021-03-11 10:46:08-07:00
25,200
['0cd3e39492616b638661b4b097f22e2dc423a128']
fix(lib/vscode): package.json and yarn.lock No new dependencies were added in the 1.54.2 update.
[{'old_path': 'lib/vscode/package.json', 'new_path': 'lib/vscode/package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -132,11 +132,6 @@\n "cssnano": "^4.1.10",\n "debounce": "^1.0.0",\n "deemon": "^1.4.0",\n-<<<<<<< HEAD\n-=======\n- "electron": "11.3.0",\n- "electron-rebuild": "2.0.3",\n-...
TypeScript
e79ca9946670813e2ef8954ee6da63e70d43097c
116
2021-03-11 10:47:52-07:00
25,200
['548b6fb628003c04b98e99f2515ddc7b5b43c325']
feat(lib/vscode): update src/vs/base/node/languagePacks.js It looks like a couple functions were added here such as a readFile and writeFile.
[{'old_path': 'lib/vscode/src/vs/base/node/languagePacks.js', 'new_path': 'lib/vscode/src/vs/base/node/languagePacks.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -78,7 +78,6 @@\n \t\t\t\t// Do nothing. If we can't read the file we have no\n \t\t\t\t// language pack config.\n \t\t\t}\n-<<<<<<< HEAD\n \t\t}, er...
TypeScript
dac44ec2e083b0a5c42dc2d046e0eb5a9003cd14
116
2021-03-11 10:50:06-07:00
25,200
['e79ca9946670813e2ef8954ee6da63e70d43097c']
feat(update-vscode): use todo items for conflicts in pr body
[{'old_path': 'ci/dev/update-vscode.sh', 'new_path': 'ci/dev/update-vscode.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -98,8 +98,8 @@ main() {\n git subtree pull --prefix lib/vscode vscode release/"${VSCODE_VERSION_TO_UPDATE}" --squash || true\n \n # Get the files with conflicts before we commit them\n- ...
TypeScript
dc5c271a0c91389ec0f64d29138bed616812b8a0
116
2021-03-11 10:56:16-07:00
25,200
['dac44ec2e083b0a5c42dc2d046e0eb5a9003cd14']
fix(lib/vscode): replace doStore with getSotrage Inside the class BrowserStorageService, it looks like they replaced doStore with getStorage. However, at the time of writing this message, I am getting a TypeScript error saying: > Non-abstract class 'BrowserStorageService' does not implement inherited > abstract membe...
[{'old_path': 'lib/vscode/src/vs/platform/storage/browser/storageService.ts', 'new_path': 'lib/vscode/src/vs/platform/storage/browser/storageService.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -82,13 +82,8 @@ export class BrowserStorageService extends AbstractStorageService {\n \t\t}\n \t}\n \n-<<<<<<< HEAD\...
TypeScript
325f21f73d5372fa496df3e5a3a4584dab35b048
116
2021-03-11 10:58:48-07:00
25,200
['dc5c271a0c91389ec0f64d29138bed616812b8a0']
fix(lib/vscode): change doStore > doInitialize AbstractStorageService Looks like they changed the doStore method to doInitialize in the AbstractStorageService class. It no longer accepts any parameters.
[{'old_path': 'lib/vscode/src/vs/platform/storage/common/storage.ts', 'new_path': 'lib/vscode/src/vs/platform/storage/common/storage.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -480,11 +480,7 @@ export abstract class AbstractStorageService extends Disposable implements IStor\n \n \t// --- abstract\n \n-<<<<<...
TypeScript
d1ad3fad5eed50e23d4371cb4491d115ecf7847e
116
2021-03-11 11:02:32-07:00
25,200
['325f21f73d5372fa496df3e5a3a4584dab35b048']
fix(lib/vscode): update storageService getStorage methods This change refactors a lot of the get methods in the storageService. I think it simplies a lot. It removes a bunch of methods.
[{'old_path': 'lib/vscode/src/vs/platform/storage/node/storageService.ts', 'new_path': 'lib/vscode/src/vs/platform/storage/node/storageService.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -153,35 +153,8 @@ export class NativeStorageService extends AbstractStorageService {\n \t\t}\n \t}\n \n-<<<<<<< HEAD\n-\tg...
TypeScript
42ff0ec5e78c1bbf2215a588ab79a34a3eb418d6
116
2021-03-11 11:06:05-07:00
25,200
['d1ad3fad5eed50e23d4371cb4491d115ecf7847e']
fix(lib/vscode): update dialogHandler Looks like a minor update to the localization for the detailString which I believe shows up when you go to Help:About.
[{'old_path': 'lib/vscode/src/vs/workbench/browser/parts/dialogs/dialogHandler.ts', 'new_path': 'lib/vscode/src/vs/workbench/browser/parts/dialogs/dialogHandler.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -121,13 +121,8 @@ export class BrowserDialogHandler implements IDialogHandler {\n \n \tasync about(): Pr...
TypeScript
8512be85a552adea7bd48db8ee7d584f469c11d0
116
2021-03-11 11:09:37-07:00
25,200
['42ff0ec5e78c1bbf2215a588ab79a34a3eb418d6']
fix(lib/vscode): update electron-sandbox localizationService I'm not sure if we even use this but they changed the LocalizationService.o It looks like it using one called ISharedProcessService now.
[{'old_path': 'lib/vscode/src/vs/workbench/services/localizations/electron-sandbox/localizationsService.ts', 'new_path': 'lib/vscode/src/vs/workbench/services/localizations/electron-sandbox/localizationsService.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -5,12 +5,8 @@\n \n import { ProxyChannel } from 'vs/ba...
TypeScript
702485139a63c091fe07c35274b1813cf4fb3ec9
58
2021-03-12 01:46:40+05:30
-19,800
['fa71191dbf682901e663ab69236ee44f0117aa1f']
chore: update vulnerable dependencies (#2861) Cherry-pick dependencies with security issues to update. Signed-off-by: Akash Satheesan <akash@coder.com>
[{'old_path': 'lib/vscode/yarn.lock', 'new_path': 'lib/vscode/yarn.lock', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -3813,7 +3813,7 @@ fsevents@~2.3.1:\n resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.1.tgz#b209ab14c61012636c8863507edf7fb68cc54e9f"\n integrity sha512-YR47Eg4hChJGAB1O3yEAOkGO...
TypeScript
c270570f77c77bd416037d23d78b43f2418e0181
119
2021-03-12 09:48:39-08:00
28,800
['702485139a63c091fe07c35274b1813cf4fb3ec9']
chore: run builds on pull requests (#2866) * Run builds when changes are pushed to the main branch, or for pull requests opened against the main branch. This is a subtle change in behavior because, previously, builds would've run on pushes to any branch, regardless if a pull request is open yet. * Update to ...
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,12 +1,18 @@\n name: ci\n \n-on: [push]\n+on:\n+ push:\n+ branches:\n+ - main\n+ pull_request:\n+ branches:\n+ - main\n \n jobs:\n fmt:\n runs-on: ubuntu-latest...
TypeScript
ed839c9a03b392880da84823d9f133ded7031b25
116
2021-03-12 12:00:55-07:00
25,200
['c270570f77c77bd416037d23d78b43f2418e0181']
feat: add test:e2e and test:unit to package.json
[{'old_path': 'package.json', 'new_path': 'package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -16,7 +16,9 @@\n "release:standalone": "./ci/build/build-standalone-release.sh",\n "release:github-draft": "./ci/build/release-github-draft.sh",\n "release:github-assets": "./ci/build/release-github-a...
TypeScript
3f7104bb4ee06f27e42b74967e928b873fb9c956
116
2021-03-12 12:00:56-07:00
25,200
['ed839c9a03b392880da84823d9f133ded7031b25']
refactor: move unit tests to test/unit
[{'old_path': 'test/cli.test.ts', 'new_path': 'test/unit/cli.test.ts', 'type': <ModificationType.RENAME: 3>, 'diff': '@@ -3,8 +3,8 @@ import * as fs from "fs-extra"\n import * as net from "net"\n import * as os from "os"\n import * as path from "path"\n-import { Args, parse, setDefaults, shouldOpenInExistingInstance } ...
TypeScript
b46859787208c3d2ff108976031172d5a5a88c5b
116
2021-03-12 12:00:56-07:00
25,200
['3f7104bb4ee06f27e42b74967e928b873fb9c956']
refactor: move e2e tests to test/e2e
[{'old_path': 'test/e2e.test.ts', 'new_path': 'test/e2e/e2e.test.ts', 'type': <ModificationType.RENAME: 3>, 'diff': '@@ -1,5 +1,5 @@\n import { chromium, Page, Browser } from "playwright"\n-import { CODE_SERVER_ADDRESS } from "./constants"\n+import { CODE_SERVER_ADDRESS } from "../utils/constants"\n \n let browser: Bro...
TypeScript
529d69e8e8130381426471c2821a1e30bb138c95
116
2021-03-12 12:00:56-07:00
25,200
['d10da3f7c367402576e6666be7b52279b0457c45']
refactor: add scripts to separate unit, e2e tests
[{'old_path': 'ci/README.md', 'new_path': 'ci/README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -52,7 +52,7 @@ Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub)\n \n Currently, we run a command to manually generate the code coverage shield. Follow these steps:\n \n-1. Run `yarn...
TypeScript
6fd30d91eabcfdeebc701430bdce168e0c3bca28
116
2021-03-12 12:00:57-07:00
25,200
['529d69e8e8130381426471c2821a1e30bb138c95']
feat: add jest e2e config
[{'old_path': None, 'new_path': 'test/jest.e2e.config.ts', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,22 @@\n+// jest.config.ts\n+import type { Config } from "@jest/types"\n+\n+const config: Config.InitialOptions = {\n+ transform: {\n+ "^.+\\\\.ts$": "<rootDir>/node_modules/ts-jest",\n+ },\n+ globalSe...
TypeScript
aeaf11ced60805b9882d52bacf9c590e79e88ea1
116
2021-03-12 12:00:57-07:00
25,200
['6fd30d91eabcfdeebc701430bdce168e0c3bca28']
refactor: update ci.yaml, test:unit and test:e2e
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -27,7 +27,16 @@ jobs:\n with:\n args: ./ci/steps/lint.sh\n \n- test:\n+ test-unit:\n+ runs-on: ubuntu-latest\n+ steps:\n+ - uses: actions/checkout@v1\n+ ...
TypeScript
9ee2556dd1ca199d46c6250d4eeacdbe6548daa6
116
2021-03-12 12:00:57-07:00
25,200
['aeaf11ced60805b9882d52bacf9c590e79e88ea1']
chore: update gitignore with test dirs
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -35,7 +35,6 @@ jobs:\n uses: ./ci/images/debian10\n with:\n args: ./ci/steps/test-unit.sh\n-\n test-e2e:\n needs: linux-amd64\n runs-on: ubuntu-latest...
TypeScript
7e23575978d68455e1ae926bea4391508e98b72c
116
2021-03-12 12:00:57-07:00
25,200
['9ee2556dd1ca199d46c6250d4eeacdbe6548daa6']
chore: update code-server path in tsconfig
[{'old_path': 'test/unit/test-plugin/tsconfig.json', 'new_path': 'test/unit/test-plugin/tsconfig.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -44,7 +44,7 @@\n // "moduleResolution": "node", /* Specify module resolution strategy: \'node\' (Node.js) or \'classic\' (TypeScript pre-1.6). */\n ...
TypeScript
7b1fe3156df9be12e58ff33e59cdc2d9d0a005be
119
2021-03-12 11:46:18-08:00
28,800
['c270570f77c77bd416037d23d78b43f2418e0181']
chore: use dependabot to manage dependencies (#2830) Use dependabot to manage the dependencies defined in package.json and GitHub Actions workflows, so that we can proactively update versions. Outdated versions of third-party dependencies frequently have known security vulnerabilities with CVEs.
[{'old_path': None, 'new_path': '.github/dependabot.yml', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,25 @@\n+version: 2\n+updates:\n+ - package-ecosystem: "github-actions"\n+ directory: "/"\n+ schedule:\n+ interval: "daily"\n+ time: "11:00"\n+ assignees:\n+ - "jawnsy"\n+ reviewer...
TypeScript
f33402c5037ea5e9d2320e712f4c42489b09efed
67
2021-03-15 15:34:44-05:00
18,000
['d27126530f028c8993d71fabc6b001a7378e1ed4']
Remove extra awaits from tests
[{'old_path': 'test/unit/cli.test.ts', 'new_path': 'test/unit/cli.test.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -360,7 +360,7 @@ describe("cli", () => {\n \n it("should use existing if --reuse-window is set", async () => {\n args["reuse-window"] = true\n- await expect(await shouldOpenInExistingIn...
TypeScript
d05389880ac35c538acf3c4c0f2d66a86853efe9
116
2021-03-15 15:36:31-07:00
25,200
['0ba53b6adf917097258105455cbc1b580d7a6d9e']
chore: update formatting w/new prettier sh plugin
[{'old_path': 'ci/build/code-server.sh', 'new_path': 'ci/build/code-server.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -11,9 +11,9 @@ _realpath() {\n cd "$(dirname "$script")"\n \n while [ -L "$(basename "$script")" ]; do\n- if [ -L "./node" ] && [ -L "./code-server" ] &&\n- [ -f "package.json" ]...
TypeScript
cc8e4ee97c9e63fb2e8e7312e72542037ed99933
116
2021-03-16 10:20:12-07:00
25,200
['8512be85a552adea7bd48db8ee7d584f469c11d0']
fix(lib/vscode): update extensionManagementService Looks like a few import updates and one minor update for language packs. We had made this change ourselves, but now it's officially in the vscode codebase. Super cool.
[{'old_path': 'lib/vscode/src/vs/base/node/languagePacks.js', 'new_path': 'lib/vscode/src/vs/base/node/languagePacks.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -78,12 +78,6 @@\n \t\t\t\t// Do nothing. If we can't read the file we have no\n \t\t\t\t// language pack config.\n \t\t\t}\n-\t\t}, err => {\n-\t\t\...
TypeScript
eaf63deb56d71f69570c281729f26365a7bc44cc
116
2021-03-16 10:20:12-07:00
25,200
['cc8e4ee97c9e63fb2e8e7312e72542037ed99933']
fix(lib/vscode): fix return type shutdown in ptyService In the squash/merge update, we forgot to update the return type. Add Promise<void> instead of void for shutdown method.
[{'old_path': 'lib/vscode/src/vs/platform/terminal/node/ptyService.ts', 'new_path': 'lib/vscode/src/vs/platform/terminal/node/ptyService.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -305,7 +305,7 @@ export class PersistentTerminalProcess extends Disposable {\n \t\t}\n \t\treturn undefined;\n \t}\n-\tshutdown(...
TypeScript
350ddc3c279b8f7a9174aa8d208bb5df7f1e56a1
116
2021-03-16 10:20:13-07:00
25,200
['eaf63deb56d71f69570c281729f26365a7bc44cc']
fix(lib/vscode): update log service in server.ts This required a bit more work. We moved a few things around and made use of multiplexLogService.
[{'old_path': 'lib/vscode/src/vs/server/node/server.ts', 'new_path': 'lib/vscode/src/vs/server/node/server.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -29,7 +29,7 @@ import { ServiceCollection } from 'vs/platform/instantiation/common/serviceColle\n import { ILocalizationsService } from 'vs/platform/localizat...
TypeScript
c42240f182a8751081ba8fe2b6d0d9b52a1c1943
116
2021-03-16 10:20:13-07:00
25,200
['350ddc3c279b8f7a9174aa8d208bb5df7f1e56a1']
fix(lib/vscode): refactor mkdirp to fs.promises They removed mkdirp in favor of fs.promises. Updated in marketplace.ts
[{'old_path': 'lib/vscode/src/vs/server/node/marketplace.ts', 'new_path': 'lib/vscode/src/vs/server/node/marketplace.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -3,7 +3,6 @@ import * as path from 'path';\n import * as tarStream from 'tar-stream';\n import * as util from 'util';\n import { CancellationToken }...
TypeScript
e5b7438695dafa6c57deebf0c0f7837beefaacf2
116
2021-03-16 10:20:13-07:00
25,200
['c42240f182a8751081ba8fe2b6d0d9b52a1c1943']
fix(lib/vscode): update imports in channel.ts for terminal It looks like they moved a bunch of terminal-related files around. This only fixes the imports.
[{'old_path': 'lib/vscode/src/vs/server/node/channel.ts', 'new_path': 'lib/vscode/src/vs/server/node/channel.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -28,11 +28,11 @@ import { IEnvironmentVariableCollection } from 'vs/workbench/contrib/terminal/co\n import { MergedEnvironmentVariableCollection } from 'vs/...
TypeScript
dc08bc68c6b2935d27588a0f0244dee1c06f62fc
116
2021-03-16 10:20:13-07:00
25,200
['e5b7438695dafa6c57deebf0c0f7837beefaacf2']
fix(lib/vscode): fix terminalLayoutInfoArgs It looks like before, the ISetTerminalLAyoutInfoArgs and IGetTerminalLayoutInfoArgs were part of the terminal interface, but now they're just interfaces so this commit fixes the imports to get them from vs/platform/terminal/common/terminalProcess.
[{'old_path': 'lib/vscode/src/vs/server/node/channel.ts', 'new_path': 'lib/vscode/src/vs/server/node/channel.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -33,6 +33,7 @@ import { TerminalDataBufferer } from 'vs/platform/terminal/common/terminalDataBu\n import * as terminalEnvironment from 'vs/workbench/contrib...
TypeScript
34189e4d491bf65f4182c6373ab21f1bba4b922d
116
2021-03-16 10:20:13-07:00
25,200
['dc08bc68c6b2935d27588a0f0244dee1c06f62fc']
fix(lib/vscode): add getAppRoot to VariableResolverService Not sure if it's used because it can return undefined, but it's there now!
[{'old_path': 'lib/vscode/src/vs/server/node/channel.ts', 'new_path': 'lib/vscode/src/vs/server/node/channel.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -350,6 +350,13 @@ class VariableResolverService extends AbstractVariableResolverService {\n \t\t\tgetConfigurationValue: (_: URI, section: string): string |...
TypeScript
25dbb5b1b6c7003c9214cf33d8b80efdbb4cc027
116
2021-03-16 10:20:14-07:00
25,200
['34189e4d491bf65f4182c6373ab21f1bba4b922d']
fix(lib/vscode0: localizations import in client
[{'old_path': 'lib/vscode/src/vs/server/browser/client.ts', 'new_path': 'lib/vscode/src/vs/server/browser/client.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -13,7 +13,7 @@ import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';\n import { TelemetryChannelClient } from 'vs/server/common/te...
TypeScript
8f414b50059fb74e0533b6fb5cc704f29d00de91
116
2021-03-16 10:20:14-07:00
25,200
['25dbb5b1b6c7003c9214cf33d8b80efdbb4cc027']
fix(lib/vscode): make mkdir recursive
[{'old_path': 'lib/vscode/src/vs/server/node/marketplace.ts', 'new_path': 'lib/vscode/src/vs/server/node/marketplace.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -137,7 +137,7 @@ const extractTar = async (tarPath: string, targetPath: string, options: IExtract\n \t\t\t\t\tSee commit: https://github.com/microso...
TypeScript
875dfb66a418685716655f4ee98b0e17d8751fae
116
2021-03-16 10:20:14-07:00
25,200
['8f414b50059fb74e0533b6fb5cc704f29d00de91']
fix(lib/vscode): update path for logService
[{'old_path': 'lib/vscode/src/vs/server/node/channel.ts', 'new_path': 'lib/vscode/src/vs/server/node/channel.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -33,7 +33,7 @@ import { TerminalDataBufferer } from 'vs/platform/terminal/common/terminalDataBu\n import * as terminalEnvironment from 'vs/workbench/contrib...
TypeScript
050a1bb1469474eef2aa3c60db5da7fc39193d47
67
2021-03-16 10:20:14-07:00
21,600
['875dfb66a418685716655f4ee98b0e17d8751fae']
Fix localizations service import It was moved from electron-browser to electron-sandbox.
[{'old_path': 'lib/vscode/src/vs/server/browser/client.ts', 'new_path': 'lib/vscode/src/vs/server/browser/client.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -13,7 +13,7 @@ import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';\n import { TelemetryChannelClient } from 'vs/server/common/te...
TypeScript
964ebe8d0a0d57bf702b1e77a5a32dbc48bbf366
67
2021-03-16 12:51:08-05:00
18,000
['3ef7cc7d03d2ecb98cf299048575e7385c297565']
Replace fs-extra with fs.promises Remove the Mac directory copy instead of refactoring it since we've had this for a long time now and I think it's safe to assume that users running code-server on Mac don't have the old directory anymore.
[{'old_path': 'package.json', 'new_path': 'package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -38,7 +38,6 @@\n "@types/compression": "^1.7.0",\n "@types/cookie-parser": "^1.4.2",\n "@types/express": "^4.17.8",\n- "@types/fs-extra": "^8.0.1",\n "@types/http-proxy": "^1.17.4",\n "@typ...
TypeScript
ae02023454f561b8de6e5bb575015c2218787f34
116
2021-03-16 14:25:27-07:00
25,200
['050a1bb1469474eef2aa3c60db5da7fc39193d47']
fix(lib/vscode): register LogLevelChannel
[{'old_path': 'lib/vscode/src/vs/base/node/languagePacks.js', 'new_path': 'lib/vscode/src/vs/base/node/languagePacks.js', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -66,50 +66,6 @@\n \t\t\treturn new Promise((c, e) => fs.writeFile(file, content, 'utf8', err => err ? e(err) : c()));\n \t\t}\n \n-\t\t/**\n-\t\t * ...
TypeScript
0c2708302d1587196192c31cae470e26683e1563
116
2021-03-16 14:25:28-07:00
25,200
['ae02023454f561b8de6e5bb575015c2218787f34']
refactor: remove --home flag/feature We are removing this because it was removed upstream in PR~115599.
[{'old_path': '.github/workflows/ci.yaml', 'new_path': '.github/workflows/ci.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -40,7 +40,7 @@ jobs:\n - uses: microsoft/playwright-github-action@v1\n - name: Install dependencies and run tests\n run: |\n- ./release-packages/code-server*...
TypeScript
bcdca86539ecdb5ec459db61a81b3d392352f676
116
2021-03-16 14:25:28-07:00
25,200
['0c2708302d1587196192c31cae470e26683e1563']
refactor: change goHome test to helpAbout
[{'old_path': 'lib/vscode/src/vs/server/ipc.d.ts', 'new_path': 'lib/vscode/src/vs/server/ipc.d.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -9,133 +9,124 @@ export interface Options {\n }\n \n export interface InitMessage {\n-\ttype: \'init\';\n-\tid: string;\n-\toptions: VscodeOptions;\n+\ttype: "init"\n+\ti...
TypeScript
3d9d2e592df3dc9ebec9d5e42d859b81202854ac
116
2021-03-16 14:25:28-07:00
25,200
['bcdca86539ecdb5ec459db61a81b3d392352f676']
refactor: add helpAbout test instead of goHome
[{'old_path': 'test/helpAbout.test.ts', 'new_path': 'test/helpAbout.test.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -9,7 +9,7 @@ describe("Open Help > About", () => {\n let context: BrowserContext\n \n beforeAll(async () => {\n- browser = await chromium.launch({ headless: false })\n+ browser = awa...
TypeScript
608871eba1e0afc8328958e9987eb32dbe3706e9
116
2021-03-16 14:26:04-07:00
25,200
['3d9d2e592df3dc9ebec9d5e42d859b81202854ac']
wip: change name back to goHome
[{'old_path': 'test/helpAbout.test.ts', 'new_path': 'test/goHome.test.ts', 'type': <ModificationType.RENAME: 3>, 'diff': ''}]
TypeScript
445d7d6e03d051dee09813445ca9a26aa42dce84
116
2021-03-16 14:35:43-07:00
25,200
['608871eba1e0afc8328958e9987eb32dbe3706e9']
fix: update testPathIgnorePatterns for jest
[{'old_path': 'package.json', 'new_path': 'package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -121,9 +121,9 @@\n },\n "testEnvironment": "node",\n "testPathIgnorePatterns": [\n- "node_modules",\n- "lib",\n- "out"\n+ "/node_modules/",\n+ "/lib/",\n+ "/out/"\n ]...
TypeScript
a09771382942a563450171f5d26da88d6fd9f5b1
143
2021-03-16 22:59:30-04:00
14,400
['f21433a130ab07db569a1ae43a04416e7ec306ba']
remove references of coder could
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -56,7 +56,7 @@ Consider running code-server with the beta flag `--link` if you don't want to wo\n \n ```bash\n $ code-server --link\n-Proxying code-server to Coder Cloud, you can access your IDE at https://valmar-jon.c...
TypeScript
e56ace557c87c68fb6056c4c9d4882348416ac99
116
2021-03-17 09:59:26-07:00
25,200
['31dd0a4d6e9fa83286b5e23fcb8d708ec2e9c7bd']
feat: add ranger configuration
[{'old_path': None, 'new_path': '.github/ranger.yml', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,25 @@\n+# Configuration for the repo ranger bot\n+# See docs: https://www.notion.so/Documentation-8d7627bb1f3c42b7b1820e8d6f157a57#9879d1374fab4d1f9c607c230fd5123d\n+default:\n+ close:\n+ # Default time to w...
TypeScript
a8a4f6b792ee3a037638bf761b6abee6c9989ce2
116
2021-03-17 10:16:35-07:00
25,200
['31dd0a4d6e9fa83286b5e23fcb8d708ec2e9c7bd']
refactor: update bug-report issue template
[{'old_path': '.github/ISSUE_TEMPLATE/bug-report.md', 'new_path': '.github/ISSUE_TEMPLATE/bug-report.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,22 +7,43 @@ assignees: ""\n ---\n \n <!--\n-Please see https://github.com/cdr/code-server/blob/master/docs/FAQ.md#how-do-i-debug-issues-with-code-server\n-and in...
TypeScript
187541c46b5efc2c0b5a6bed02fd6add6b1c2d86
116
2021-03-17 11:32:40-07:00
25,200
['45a17137676fc12b1be6cd6ba6ed6fea93330c25']
docs: update hiring section in readme
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -70,13 +70,7 @@ See [CONTRIBUTING](./docs/CONTRIBUTING.md) for details.\n \n ## Hiring\n \n-We ([@cdr](https://github.com/cdr)) are looking for engineers to help [maintain\n-code-server](https://jobs.lever.co/coder/e40...
TypeScript
9cbe27ef8363004084b30eae281521500a7355b9
116
2021-03-17 11:52:46-07:00
25,200
['45a17137676fc12b1be6cd6ba6ed6fea93330c25']
fix: remove reviewers/assignees for dependabot
[{'old_path': '.github/dependabot.yml', 'new_path': '.github/dependabot.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -5,10 +5,6 @@ updates:\n schedule:\n interval: "daily"\n time: "11:00"\n- assignees:\n- - "jawnsy"\n- reviewers:\n- - "jawnsy"\n ignore:\n # GitHub al...
TypeScript
02134c01f6f112c64d17ea417b282f1fb99d0f94
116
2021-03-17 13:43:57-07:00
25,200
['187541c46b5efc2c0b5a6bed02fd6add6b1c2d86']
Update README.md Co-authored-by: Jonathan Yu <jonathan@coder.com>
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -70,7 +70,7 @@ See [CONTRIBUTING](./docs/CONTRIBUTING.md) for details.\n \n ## Hiring\n \n-Interested in working at [@cdr](https://github.com/cdr)? Check out our [jobs page](https://jobs.lever.co/coder)!\n+Interested i...
TypeScript
19c2f31f226a3c5f78b695c942abaa825517aa1c
116
2021-03-22 10:37:44-07:00
25,200
['071c8e15fc6c0b69ba2551c1d1680e125e832963']
fixup: remove comment in server.ts
[{'old_path': 'lib/vscode/src/vs/server/node/server.ts', 'new_path': 'lib/vscode/src/vs/server/node/server.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -216,16 +216,6 @@ export class Vscode {\n \t\tconst environmentService = new NativeEnvironmentService(args);\n \t\t// https://github.com/cdr/code-server/issue...
TypeScript
aae17cb749b3ff032b6381c16c4959d3b6e2f84a
116
2021-03-22 10:43:02-07:00
25,200
['19c2f31f226a3c5f78b695c942abaa825517aa1c']
fixup: fix comment in server.ts
[{'old_path': 'lib/vscode/src/vs/server/node/server.ts', 'new_path': 'lib/vscode/src/vs/server/node/server.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -205,14 +205,10 @@ export class Vscode {\n \t\t}\n \t}\n \n+\t// References:\n+\t// ../../electron-browser/sharedProcess/sharedProcessMain.ts#L148\n+\t// ../....
TypeScript
f09ebc06e9c9210fe7f394e6e94dd928cb5a1a0b
116
2021-03-22 11:55:53-07:00
25,200
['b04104cafeffa3a02472a4ba01a17194ffd97058']
fix: add no-extra-semi off to eslint config
[{'old_path': '.eslintrc.yaml', 'new_path': '.eslintrc.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -29,6 +29,7 @@ rules:\n "@typescript-eslint/no-var-requires": off\n "@typescript-eslint/explicit-module-boundary-types": off\n "@typescript-eslint/no-explicit-any": off\n+ "@typescript-eslint/no-extra-...
TypeScript
58b59fde5fd7a4ac1b9920bb58de8549a3129423
123
2021-03-22 16:15:06-05:00
14,400
['f95f1804012178686c6a728f27bde3dd8dc84b99']
Update fixuid 0.5 and add zsh to Docker image (#2925)
[{'old_path': 'ci/release-image/Dockerfile', 'new_path': 'ci/release-image/Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -4,6 +4,7 @@ RUN apt-get update \\\n && apt-get install -y \\\n curl \\\n dumb-init \\\n+ zsh \\\n htop \\\n locales \\\n man \\\n@@ -25,7 +26,7 @@ RUN adduse...
TypeScript
9f790fd2f32e6fbcee0300d8b47be187d9937c9e
116
2021-03-23 10:02:02-07:00
25,200
['24dc2080f963e2abe833f466e5a74a9c69c79c25']
feat(lib/vscode): add log out to application menu This adds a new option to the Application Menu called Log out. It deletes the code-server cookie and logs a user out.
[{'old_path': 'lib/vscode/src/vs/workbench/browser/parts/titlebar/menubarControl.ts', 'new_path': 'lib/vscode/src/vs/workbench/browser/parts/titlebar/menubarControl.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -9,6 +9,7 @@ import { registerThemingParticipant, IThemeService } from \'vs/platform/theme/com\n imp...
TypeScript
5cec6208d0da6863e5db0535da210b485c799825
116
2021-03-23 10:02:03-07:00
25,200
['9f790fd2f32e6fbcee0300d8b47be187d9937c9e']
refactor: add cookie.ts to lib/vscode
[{'old_path': None, 'new_path': 'lib/vscode/src/vs/server/common/cookie.ts', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,3 @@\n+export enum Cookie {\n+ Key = "key",\n+}\n\\ No newline at end of file\n'}, {'old_path': 'lib/vscode/src/vs/workbench/browser/parts/titlebar/menubarControl.ts', 'new_path': 'lib/vs...
TypeScript
090687d0571a251a00e84b8436d1c2656d89f100
116
2021-03-23 10:02:03-07:00
25,200
['5cec6208d0da6863e5db0535da210b485c799825']
feat: add e2e test for logout
[{'old_path': 'lib/vscode/src/vs/server/common/cookie.ts', 'new_path': 'lib/vscode/src/vs/server/common/cookie.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,3 +1,3 @@\n export enum Cookie {\n- Key = "key",\n+ Key = \'key\',\n }\n'}, {'old_path': 'lib/vscode/src/vs/workbench/browser/parts/titlebar/menubarC...
TypeScript
9eff1f070249627e0434aaefcf6743731875721b
116
2021-03-23 12:14:42-07:00
25,200
['090687d0571a251a00e84b8436d1c2656d89f100']
fix: add timeout to logout test
[{'old_path': 'test/e2e/logout.test.ts', 'new_path': 'test/e2e/logout.test.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -47,11 +47,8 @@ describe("logout", () => {\n await page.hover(logoutButton)\n \n await page.click(logoutButton)\n- // it takes a second to navigate\n- // and since page.url com...
TypeScript
d3c1906390990441e7465f18ac069051867dc226
116
2021-03-24 17:01:28-07:00
25,200
['9a7908e784c6c89df8a46d348f1a25012ad822eb']
fix: limit ts-node upgrades
[{'old_path': 'package.json', 'new_path': 'package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -66,7 +66,7 @@\n "prettier-plugin-sh": "^0.6.0",\n "stylelint": "^13.0.0",\n "stylelint-config-recommended": "^4.0.0",\n- "ts-node": "^9.0.0",\n+ "ts-node": "~9.0.0",\n "typescript": "^4.1.3...
TypeScript
fa19f8cac8b9fc94158d5161e7149e399a0c8415
116
2021-03-24 17:51:06-07:00
25,200
['24a474ce20b0baaba023a3619e642d1ec69d407c']
feat: add release-prep script
[{'old_path': None, 'new_path': 'ci/build/release-prep.sh', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,101 @@\n+#!/usr/bin/env bash\n+# Description: This is a script to make the release process easier\n+# Run it with `yarn release:prep` and it will do the following:\n+# 1. Check that you have a $GITHUB_TOKE...
TypeScript
a8858ea9fc81a5722e342fd85571d5bee9555837
116
2021-03-24 17:51:06-07:00
25,200
['fa19f8cac8b9fc94158d5161e7149e399a0c8415']
docs(ci): update step 1 of publish release
[{'old_path': 'ci/README.md', 'new_path': 'ci/README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -12,18 +12,7 @@ Any file or directory in this subdirectory should be documented here.\n \n ## Publishing a release\n \n-Make sure you have `$GITHUB_TOKEN` set and [hub](https://github.com/github/hub) installed.\n...
TypeScript
a1dca6da294c861da2ad297267931c2b17e48731
116
2021-03-24 17:51:07-07:00
25,200
['a8858ea9fc81a5722e342fd85571d5bee9555837']
feat: add dry run option to release-prep.sh
[{'old_path': '.github/PULL_REQUEST_TEMPLATE/release_template.md', 'new_path': '.github/PULL_REQUEST_TEMPLATE/release_template.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,4 +1,5 @@\n-This PR is to generate a new release of `code-server` at `0.0.0`\n+<!-- Note: this variable $CODE_SERVER_VERSION_TO_UPDATE ...
TypeScript
299e17e6d9da73ba027b57c95b69c723373e651d
116
2021-03-25 09:46:54-07:00
25,200
['a1dca6da294c861da2ad297267931c2b17e48731']
refactor: update script command to get git branch
[{'old_path': '.github/PULL_REQUEST_TEMPLATE/release_template.md', 'new_path': '.github/PULL_REQUEST_TEMPLATE/release_template.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,4 +1,5 @@\n <!-- Note: this variable $CODE_SERVER_VERSION_TO_UPDATE will be set when you run the release-prep.sh script with `yarn rele...
TypeScript
8332a6abc9132a6cb48b74180e6f0a5414fc2680
58
2021-03-25 22:20:58+05:30
-19,800
['24a474ce20b0baaba023a3619e642d1ec69d407c']
fix(lib/vscode): remove native-keymap and keytar (#2961) native-keymap and keytar are only used in the electron process, so we don't need them. This allows us to drop our dependencies on libx11-dev, libxkbfile-dev, and libsecret-dev.
[{'old_path': 'ci/images/centos7/Dockerfile', 'new_path': 'ci/images/centos7/Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -8,7 +8,7 @@ ENV PATH=/usr/local/node-$NODE_VERSION/bin:$PATH\n RUN npm install -g yarn\n \n RUN yum groupinstall -y 'Development Tools'\n-RUN yum install -y python2 libsecret-deve...
TypeScript
f688e58472f12d30d703f4929adbfd308a49573e
116
2021-03-25 10:33:47-07:00
25,200
['004c608236cc3fb34664602e6c72cee5d1dea653']
chore(release): bump version to 3.9.2
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,7 @@\n # code-server &middot; [!["GitHub Discussions"](https://img.shields.io/badge/%20GitHub-%20Discussions-gray.svg?longCache=true&logo=github&colorB=purple)](https://github.com/cdr/code-server/discussions) [...
TypeScript
b2af7fe5a323d5e276e8cc0086660050a5046936
116
2021-03-25 16:09:19-07:00
25,200
['319795c2137c1d7b7c460a3800a19ed73377fd3c']
fix: use main instead of version in install.sh
[{'old_path': 'install.sh', 'new_path': 'install.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,7 +2,7 @@\n set -eu\n \n # code-server\'s automatic install script.\n-# See https://github.com/cdr/code-server/blob/v3.9.2/docs/install.md\n+# See https://github.com/cdr/code-server/blob/main/docs/install.md\n \n ...
TypeScript
27ede67e0743ab3dc0bc2a41b2b4e359a1f22265
116
2021-03-25 16:51:01-07:00
25,200
['b7ad293e8da6e43d554b8c852000520ba47fe76c']
refactor: add check for artifacts url in lib.sh
[{'old_path': 'ci/lib.sh', 'new_path': 'ci/lib.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -57,7 +57,17 @@ curl() {\n # This will contain the artifacts we want.\n # https://developer.github.com/v3/actions/workflow-runs/#list-workflow-runs\n get_artifacts_url() {\n- curl -fsSL \'https://api.github.com/repos/...
TypeScript
9cb5dce58294d7498e47e5a0425985471f769a23
116
2021-03-25 17:33:18-07:00
25,200
['ac9f708c597700067f81eafe9cc72d825398cb47']
fix: add workflow_dispatch to publish.yaml
[{'old_path': '.github/workflows/publish.yaml', 'new_path': '.github/workflows/publish.yaml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,10 @@\n name: publish\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...
TypeScript
f27c039954b8bb462dc9e1b46d0dd30fba4c3c53
116
2021-03-26 10:30:32-07:00
25,200
['f55f79f639aad33b3f3a2d1107c44f78116b2afc']
refactor: change get_artifacts_url in lib.sh This now looks for the version branch i.e. v3.9.2 to grab the artifacts instead of the head_sha which was faulty in the past.
[{'old_path': 'ci/lib.sh', 'new_path': 'ci/lib.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -57,13 +57,16 @@ curl() {\n # This will contain the artifacts we want.\n # https://developer.github.com/v3/actions/workflow-runs/#list-workflow-runs\n get_artifacts_url() {\n- local head_sha\n local artifacts_url\n-...
TypeScript
bb5c7d95ccf5f4f70de07d20e54320302fbe6ee4
116
2021-03-26 16:33:22-07:00
25,200
['be02218197e4efe3f44993863cafab3ff7fcce0d']
chore: fix release_template todos
[{'old_path': '.github/PULL_REQUEST_TEMPLATE/release_template.md', 'new_path': '.github/PULL_REQUEST_TEMPLATE/release_template.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -10,7 +10,8 @@ TODO\n \n - [ ] test locally\n - [ ] upload assets to draft release\n-- [ ] double-check github release tag is the commit w...
TypeScript
024a3110beb01f89e9e835cac45057b8bc9b0b6a
116
2021-03-26 16:33:22-07:00
25,200
['bb5c7d95ccf5f4f70de07d20e54320302fbe6ee4']
refactor: reorganize release notes draft format
[{'old_path': '.github/PULL_REQUEST_TEMPLATE/release_template.md', 'new_path': '.github/PULL_REQUEST_TEMPLATE/release_template.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -11,7 +11,7 @@ TODO\n - [ ] test locally\n - [ ] upload assets to draft release\n - [ ] test one of the release packages locally\n-- [ ] d...
TypeScript
18ace7b9066c4492a61db4dbae3b49ad477891b3
67
2021-03-29 12:59:36-05:00
18,000
['6cf904a39bd05d678392e70b5bc2c0982327e775']
Don't send permessage-deflate header if not supported (#2993)
[{'old_path': 'src/node/routes/vscode.ts', 'new_path': 'src/node/routes/vscode.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -210,7 +210,9 @@ wsRouter.ws("/", ensureAuthenticated, async (req) => {\n // TODO: Parse this header properly.\n const extensions = req.headers["sec-websocket-extensions"]\n const ...
TypeScript
e4db80667e543226cb3cb77c6be08ad48964ca42
116
2021-03-29 14:05:59-07:00
25,200
['18ace7b9066c4492a61db4dbae3b49ad477891b3']
refactor: use stdio correctly in wrapper
[{'old_path': 'src/node/wrapper.ts', 'new_path': 'src/node/wrapper.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -314,7 +314,7 @@ export class ParentProcess extends Process {\n CODE_SERVER_PARENT_PID: process.pid.toString(),\n NODE_OPTIONS: `--max-old-space-size=2048 ${process.env.NODE_OPTIONS ...
TypeScript
d140c2c8e7d7a2e9b1b29f62157152bb12ff8ddc
116
2021-03-30 16:43:29-07:00
25,200
['18ace7b9066c4492a61db4dbae3b49ad477891b3']
feat: add ignore block to dependabot config
[{'old_path': '.github/dependabot.yml', 'new_path': '.github/dependabot.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -15,3 +15,6 @@ updates:\n schedule:\n interval: "daily"\n time: "11:00"\n+ ignore:\n+ - dependency-name: "@types/node"\n+ versions: ["14.x"]\n'}]
TypeScript
df6bfbbeaf6f2bc0d879265f956f0d27ba8f4b48
116
2021-03-30 16:46:49-07:00
25,200
['e4db80667e543226cb3cb77c6be08ad48964ca42']
feat: bump ts-node to 9.1.1
[{'old_path': 'package.json', 'new_path': 'package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -67,7 +67,7 @@\n "prettier-plugin-sh": "^0.6.0",\n "stylelint": "^13.0.0",\n "stylelint-config-recommended": "^4.0.0",\n- "ts-node": "~9.0.0",\n+ "ts-node": "^9.1.1",\n "typescript": "^4.1.3...
TypeScript
8ed5b736bb4a579f940c100eed5432ddd3caf072
116
2021-03-31 10:28:55-05:00
25,200
['a4c8549df2bf794073b0c65c70016c21c49d7db8']
feat(ranger): add action for extension-request (#2967)
[{'old_path': '.github/ranger.yml', 'new_path': '.github/ranger.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -8,6 +8,8 @@ default:\n \n # Default comment to post when an issue is first marked with a closing label\n comment: "⚠️ This issue has been marked $LABEL and will be closed in $DELAY."\n+ clos...
TypeScript
4218431782c445385943b654978526b9e234eea9
116
2021-03-31 13:31:23-07:00
25,200
['8ed5b736bb4a579f940c100eed5432ddd3caf072']
chore: ignore 13.x updates for @types/node
[{'old_path': '.github/dependabot.yml', 'new_path': '.github/dependabot.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -17,4 +17,4 @@ updates:\n time: "11:00"\n ignore:\n - dependency-name: "@types/node"\n- versions: ["14.x"]\n+ versions: ["14.x", "13.x"]\n'}]
TypeScript
cbcad39a4f0f58a6e8394ac2076cf1890c77c0d5
67
2021-04-01 10:56:25-05:00
18,000
['8ed5b736bb4a579f940c100eed5432ddd3caf072']
Remove ipc.d.ts from final build Now that the plugin API has its own separate types this is no longer necessary.
[{'old_path': 'ci/build/build-release.sh', 'new_path': 'ci/build/build-release.sh', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -25,12 +25,6 @@ main() {\n rsync README.md "$RELEASE_PATH"\n rsync LICENSE.txt "$RELEASE_PATH"\n rsync ./lib/vscode/ThirdPartyNotices.txt "$RELEASE_PATH"\n-\n- # code-server expor...
TypeScript