diff --git a/.github/actions/package-lock.json b/.github/actions/package-lock.json index b9c24ae37..256495ff6 100644 --- a/.github/actions/package-lock.json +++ b/.github/actions/package-lock.json @@ -5439,9 +5439,9 @@ } }, "node_modules/undici": { - "version": "6.24.0", - "resolved": "https://pkgs.dev.azure.com/azure-public/VisualCpp/_packaging/cpp_PublicPackages/npm/registry/undici/-/undici-6.24.0.tgz", - "integrity": "sha1-rTa4ebSILRSt3BPdZB2n7XrHYjo=", + "version": "6.27.0", + "resolved": "https://pkgs.dev.azure.com/azure-public/VisualCpp/_packaging/cpp_PublicPackages/npm/registry/undici/-/undici-6.27.0.tgz", + "integrity": "sha1-Qfnkj3xaQNJzdsqurYyan8e8qcQ=", "license": "MIT", "engines": { "node": ">=18.17" diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index bd0bb5bc7..577a7c798 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,11 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.33.1: June 24, 2026 +### Bug Fixes +* Fix some crash regressions. +* Fix IntelliSense incorrectly resolving `#include` files through a symbolic link after the target directory was deleted from disk. +* Fix "tag parsing finished" status randomly getting reported too soon after a 'Reset IntelliSense Database' command. + ## Version 1.33.0: June 22, 2026 ### New Feature * 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) diff --git a/Extension/README.md b/Extension/README.md index d6a505631..6a06178cc 100644 --- a/Extension/README.md +++ b/Extension/README.md @@ -61,7 +61,7 @@ File questions, issues, or feature requests for the extension. 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.
-**[Quick survey](https://www.research.net/r/VBVV6C6)** +**[Quick survey](https://aka.ms/vcvscodesurvey)**
Let us know what you think of the extension by taking the quick survey. diff --git a/Extension/package.json b/Extension/package.json index f6761096f..e1fcedc58 100644 --- a/Extension/package.json +++ b/Extension/package.json @@ -2,7 +2,7 @@ "name": "cpptools", "displayName": "C/C++", "description": "C/C++ IntelliSense, debugging, and code browsing.", - "version": "1.33.0-main", + "version": "1.33.1-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md", diff --git a/Extension/src/LanguageServer/extension.ts b/Extension/src/LanguageServer/extension.ts index d1dc32dc6..55516f626 100644 --- a/Extension/src/LanguageServer/extension.ts +++ b/Extension/src/LanguageServer/extension.ts @@ -944,7 +944,7 @@ function onToggleRefGroupView(): void { function onTakeSurvey(): void { telemetry.logLanguageServerEvent("onTakeSurvey"); - const uri: vscode.Uri = vscode.Uri.parse(`https://www.research.net/r/VBVV6C6?o=${os.platform()}&m=${vscode.env.machineId}`); + const uri: vscode.Uri = vscode.Uri.parse(`https://aka.ms/vcvscodesurvey`); void vscode.commands.executeCommand('vscode.open', uri); }