Skip to content

Commit 862497d

Browse files
authored
Merge branch 'main' into bobbrow/enableLSTests
2 parents 98653af + faa8f42 commit 862497d

81 files changed

Lines changed: 704 additions & 1299 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/.npmrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
registry=https://pkgs.dev.azure.com/azure-public/VisualCpp/_packaging/cpp_PublicPackages/npm/registry/
2-
always-auth=true
32
# Disable postinstall scripts for supply chain security. Allowlist exceptions with npm trust: https://docs.npmjs.com/cli/v11/commands/npm-trust
43
ignore-scripts=true

.github/actions/package-lock.json

Lines changed: 41 additions & 522 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"@actions/github": "^8.0.1",
1515
"@octokit/rest": "^21.1.1",
1616
"@slack/web-api": "^6.9.1",
17-
"applicationinsights": "^2.5.1",
1817
"axios": "^1.16.0",
1918
"uuid": "^14.0.0"
2019
},

Build/package/jobs_package_vsix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- script: mkdir $(Build.ArtifactStagingDirectory)\vsix
6060
displayName: Create Staging Directory
6161

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

Build/publish/jobs_publish_vsix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
$aadToken = az account get-access-token --query accessToken --resource $(AzureGuid) -o tsv
3232
Write-Host "##vso[task.setvariable variable=AAD_TOKEN;issecret=true]$aadToken"
3333
34-
- script: npm install --no-save --ignore-scripts=false --include=optional --force @vscode/vsce@3.7.1
34+
- script: npm install --no-save --ignore-scripts=false --include=optional --force @vscode/vsce@3.9.1
3535
displayName: Install vsce
3636

3737
- script: npm rebuild @vscode/vsce-sign --ignore-scripts=false

Extension/.npmrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
registry=https://pkgs.dev.azure.com/azure-public/VisualCpp/_packaging/cpp_PublicPackages/npm/registry/
2-
always-auth=true
32
# Disable postinstall scripts for supply chain security. Allowlist exceptions with npm trust: https://docs.npmjs.com/cli/v11/commands/npm-trust
43
ignore-scripts=true

Extension/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# C/C++ for Visual Studio Code Changelog
22

3+
## Version 1.33.1: June 24, 2026
4+
### Bug Fixes
5+
* Fix some crash regressions.
6+
* Fix IntelliSense incorrectly resolving `#include` files through a symbolic link after the target directory was deleted from disk.
7+
* Fix "tag parsing finished" status randomly getting reported too soon after a 'Reset IntelliSense Database' command.
8+
9+
## Version 1.33.0: June 22, 2026
10+
### New Feature
11+
* Unification of tag parsing with the VS implementation. In particular, it's now done using multiple parallel `cpptools-srv2` processes. [PR #14426](https://github.com/microsoft/vscode-cpptools/pull/14426)
12+
13+
### Enhancements
14+
* Add the `debuginfod` launch option to the `cppdbg` debugger schema. [#14458](https://github.com/microsoft/vscode-cpptools/issues/14458), [#14460](https://github.com/microsoft/vscode-cpptools/issues/14460), [PR #14471](https://github.com/microsoft/vscode-cpptools/pull/14471), [PR #14506](https://github.com/microsoft/vscode-cpptools/pull/14506), [MIEngine#1562](https://github.com/microsoft/MIEngine/issues/1562)
15+
* Add the `ignoreRunWithoutDebuggingWarnings` property to allow 'Run without debugging' warnings to be suppressed. [#14515](https://github.com/microsoft/vscode-cpptools/issues/14515)
16+
* Various localization updates.
17+
18+
### Bug Fixes
19+
* Fix an incorrect `invalid type conversion` IntelliSense error. [#11294](https://github.com/microsoft/vscode-cpptools/issues/11294)
20+
* Fix include completion (with recursive includes) still suggesting headers from a deleted folder. [#12636](https://github.com/microsoft/vscode-cpptools/issues/12636)
21+
* Add `important` to `C_Cpp.doxygen.sectionTags`. [PR #14473](https://github.com/microsoft/vscode-cpptools/pull/14473)
22+
* Update the minimum supported VS Code version to 1.77. [PR #14502](https://github.com/microsoft/vscode-cpptools/pull/14502)
23+
* Fix issues with the debugger `launch.json` schema. [PR #14523](https://github.com/microsoft/vscode-cpptools/pull/14523)
24+
* Fix `${env:VAR}` and `${env.VAR}` not expanding to an empty string when the environment variable is unset, to match VS Code's behavior. [PR #14535](https://github.com/microsoft/vscode-cpptools/pull/14535)
25+
* Thanks for the contribution. [@notable-equivalent](https://github.com/notable-equivalent)
26+
* Fix the `C_Cpp.refactoring.includeHeader` setting not honoring `always`.
27+
* Various other fixes found internally.
28+
329
## Version 1.32.2: April 28, 2026
430
### New Feature
531
* Add support for "Run without debugging". [#1201](https://github.com/microsoft/vscode-cpptools/issues/1201)

Extension/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ File questions, issues, or feature requests for the extension.
6161
If someone has already filed an issue that encompasses your feedback, please leave a 👍 or 👎 reaction on the issue to upvote or downvote it to help us prioritize the issue.
6262
<br>
6363

64-
**[Quick survey](https://www.research.net/r/VBVV6C6)**
64+
**[Quick survey](https://aka.ms/vcvscodesurvey)**
6565
<br>
6666
Let us know what you think of the extension by taking the quick survey.
6767

0 commit comments

Comments
 (0)