Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
7e02d99
Some IntelliSense loc changes. (#14571)
sean-mcmanus Jul 9, 2026
57cf069
Support requests of multiple custom configs (#14582)
Colengms Jul 14, 2026
4b2a1e1
Add an opt-in for capturing sanitizer logs from the language server (…
sean-mcmanus Jul 14, 2026
4549dff
Add localizable strings for --check headless validation (#14578)
kuchungmsft Jul 17, 2026
61eed95
send telemetry for language client errors (#14577)
bobbrow Jul 22, 2026
e799b28
Bump brace-expansion and @vscode/vsce in /Themes (#14591)
dependabot[bot] Jul 23, 2026
42c703e
Fix portable ps command for remote process picker (#14592)
HuzaifaAbdulRehman Jul 23, 2026
eb76b09
Bump fast-uri from 3.1.2 to 3.1.4 in /Themes (#14593)
dependabot[bot] Jul 24, 2026
7187b34
Bump linkify-it from 5.0.1 to 5.0.2 in /ExtensionPack (#14594)
dependabot[bot] Jul 24, 2026
db3a96f
Bump linkify-it from 5.0.1 to 5.0.2 in /Extension (#14596)
dependabot[bot] Jul 24, 2026
7df1926
Bump js-yaml from 4.2.0 to 4.3.0 in /Extension (#14597)
dependabot[bot] Jul 24, 2026
0e4228b
Update dependencies. (#14598)
sean-mcmanus Jul 24, 2026
0108bea
Fix build tools walkthrough for VS 2026. (#14589)
sean-mcmanus Jul 24, 2026
f9c3768
Bump fast-uri from 3.1.3 to 3.1.4 in /ExtensionPack (#14599)
dependabot[bot] Jul 24, 2026
0a4fff2
Update dependencies again. (#14600)
sean-mcmanus Jul 24, 2026
eb013a1
Update .gitignore for installed bin files. (#14606)
sean-mcmanus Jul 27, 2026
9e662ff
Skip terminate_handler( frames. (#14609)
sean-mcmanus Jul 27, 2026
4774d95
Fix si_code=, si_addr=undefined. (#14608)
sean-mcmanus Jul 27, 2026
dc614ca
Update brace-expansion. (#14610)
sean-mcmanus Jul 27, 2026
0f754f7
Update ThirdPartyNotices.txt (#14611)
sean-mcmanus Jul 27, 2026
397f4e5
Normalize JSON trailing newlines. (#14579)
sean-mcmanus Jul 28, 2026
56a2bbe
Use PowerShell call operator when shell integration is unavailable (#…
owevertonguedes Jul 28, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
58 changes: 41 additions & 17 deletions .github/actions/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Build/package/jobs_package_vsix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- script: mkdir $(Build.ArtifactStagingDirectory)\vsix
displayName: Create Staging Directory

- script: npm install --no-save --ignore-scripts=false --include=optional --force @vscode/vsce@3.9.1
- script: npm install --no-save --ignore-scripts=false --include=optional --force @vscode/vsce@3.9.2
displayName: Install vsce
workingDirectory: $(Build.SourcesDirectory)\${{ parameters.srcDir }}

Expand Down
2 changes: 1 addition & 1 deletion Build/publish/jobs_publish_vsix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
$aadToken = az account get-access-token --query accessToken --resource $(AzureGuid) -o tsv
Write-Host "##vso[task.setvariable variable=AAD_TOKEN;issecret=true]$aadToken"

- script: npm install --no-save --ignore-scripts=false --include=optional --force @vscode/vsce@3.9.1
- script: npm install --no-save --ignore-scripts=false --include=optional --force @vscode/vsce@3.9.2
displayName: Install vsce

- script: npm rebuild @vscode/vsce-sign --ignore-scripts=false
Expand Down
8 changes: 7 additions & 1 deletion Extension/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,17 @@ dist
server
debugAdapters
LLVM
bin/assert_dialog.sh
bin/cpptools*
bin/edge_cli
bin/isense_driver
bin/libc.so
bin/LICENSE.txt
bin/scout_driver
bin/unittests
bin/vcpkgsrvtest
bin/*.dll
bin/.vs
bin/LICENSE.txt

# ignore lock files
install.lock
Expand Down
25 changes: 25 additions & 0 deletions Extension/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,31 @@
// you can use a watch task as a prelaunch task and it works like you'd want it to.
"preLaunchTask": "watch"
},
{
// debugs the extension with sanitizer (TSan/ASan/UBSan) reports captured to files.
// Requires a sanitizer build of the cpptools language server. Each process writes
// ${userHome}/cpptools-sanitizer-logs/<sanitizer>.<pid> (see readme.developer.md).
"name": "Run Extension (capture sanitizer logs)",
"type": "extensionHost",
"request": "launch",
"env": {
"CPPTOOLS_SANITIZER_LOG_DIR": "${userHome}/cpptools-sanitizer-logs"
},
"args": [
"--no-sandbox",
"--disable-updates",
"--skip-welcome",
"--skip-release-notes",
"--disable-workspace-trust",
"--extensionDevelopmentPath=${workspaceFolder}",
],
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/dist/**"
],
// you can use a watch task as a prelaunch task and it works like you'd want it to.
"preLaunchTask": "watch"
},
{
// debugs the extension (selecting the workspace)
"name": "Run Extension-Select Workspace",
Expand Down
2 changes: 1 addition & 1 deletion Extension/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"editor.defaultFormatter": "vscode.json-language-features",
"editor.tabSize": 4,
"editor.detectIndentation": true,
"files.insertFinalNewline": false
"files.insertFinalNewline": true
},
"[jsonc]": {
"editor.formatOnSave": true,
Expand Down
2 changes: 1 addition & 1 deletion Extension/.yarn-bootstrap/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Extension/.yarn-bootstrap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"devDependencies": {
"yarn": "1.22.22"
}
}
}
Loading
Loading