Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
18fa7bc
update sqlite3 (#114)
chunqilu Jan 26, 2026
a27387d
update vscode/proxy-agent (#115)
chunqilu Jan 26, 2026
2adb9d2
adopt vscode/proxy-agent (#116)
chunqilu Jan 27, 2026
8aa5560
Update VS Code submodule to 1.108.2
github-actions[bot] Jan 26, 2026
18fc224
Rebase patches common to all targets
Jan 26, 2026
cf0f74b
Rebase patches for target code-editor-server
Jan 26, 2026
ddde294
Rebase patches for target code-editor-sagemaker-server
Jan 26, 2026
6e7383e
Rebase patches for target code-editor-web-embedded
Jan 26, 2026
d4b1930
Rebase test patches for target code-editor-sagemaker-server
Jan 26, 2026
775a41e
Rebase test patches for target code-editor-web-embedded
Jan 26, 2026
fcc4e85
update patches to fix build error
Jan 26, 2026
ca66556
fix errors in code-editor-web-embedded
Jan 28, 2026
cbdcb76
fix errors in code-editor-sagemaker
Jan 29, 2026
4bc027b
Update package-lock.json overrides for all targets
github-actions[bot] Jan 30, 2026
913cac0
Cherry-pick security updates and patches from main to 1.1 branch (#128)
feiyangliu2023 Feb 3, 2026
6beeddd
add remove-ask-vscode.diff (#129)
chunqilu Feb 4, 2026
3c2c65d
Cherry pick recent changes in main to 1.1 (#130)
chunqilu Feb 5, 2026
c6a64a8
Update VS Code to 1.108.2
Feb 10, 2026
8cd2575
remove presence of copilot in code editor (#131)
feiyangliu2023 Feb 6, 2026
e4da003
remove copilot related settings (#132)
chunqilu Feb 6, 2026
834be81
Remove whole chat settings and update sagemaker version (#133)
chunqilu Feb 6, 2026
607738d
remove all chat settings from search (#134)
chunqilu Feb 6, 2026
0ad2e3b
remove chat-related settings in different categories in setting (#135)
feiyangliu2023 Feb 9, 2026
d005f22
remove ai statistics in status bar (#136)
feiyangliu2023 Feb 9, 2026
d0af786
Update oss attribution and remove outdated patch
Feb 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/update-automation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,18 @@ jobs:
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"

- name: Setup swap
run: |
# Remove existing swap if present
sudo swapoff -a || true
sudo rm -f /swapfile /mnt/swapfile || true
# Create new swap
sudo fallocate -l 12G /mnt/swapfile
sudo chmod 600 /mnt/swapfile
sudo mkswap /mnt/swapfile
sudo swapon /mnt/swapfile
free -h

- name: Build target
env:
Expand Down
1,065 changes: 293 additions & 772 deletions LICENSE-THIRD-PARTY

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion build-tools/oss-attribution/excluded-packages.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"code-oss-dev@1.101.2": "UNLICENSED",
"jschardet@3.1.4": "LGPL-2.1-or-later"
"jschardet@3.1.4": "LGPL-2.1-or-later",
"chownr@3.0.0": "BlueOak-1.0.0",
"tar@7.5.4": "BlueOak-1.0.0",
"yallist@5.0.0": "BlueOak-1.0.0"
}
1,065 changes: 293 additions & 772 deletions overrides/LICENSE-THIRD-PARTY

Large diffs are not rendered by default.

Loading