From 6ad793f8981448d4b2aa9dc53c022707844ab034 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Mon, 13 Apr 2026 17:40:22 -0700 Subject: [PATCH 1/2] Update changelog for 1.32.0. --- Extension/CHANGELOG.md | 14 ++++++++++++++ Extension/package.json | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 09ef7ed93..c6b5ce72d 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,19 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.32.0: April 14, 2026 +### New Feature +* Add support for run without debugging. [#1201](https://github.com/microsoft/vscode-cpptools/issues/1201) + +### Enhancement +* Add a `C_Cpp.doxygen.generateOnCodeAction` setting to allow disabling of Doxygen generation code actions. [#14341](https://github.com/microsoft/vscode-cpptools/issues/14341) + +### Bug Fixes +* Fix high CPU usage caused by repeated calls to `selectChatModels`. [#14168](https://github.com/microsoft/vscode-cpptools/issues/14168), [#14211](https://github.com/microsoft/vscode-cpptools/issues/14211), [#14241](https://github.com/microsoft/vscode-cpptools/issues/14241) +* Fix the MSVC developer environment not working if `UCRTVersion` isn't found, and update the walkthrough instructions for installing MSVC. [#14352](https://github.com/microsoft/vscode-cpptools/issues/14352) +* Fix Copilot hover taking too many premium requests. [#14372](https://github.com/microsoft/vscode-cpptools/issues/14372) +* Update clang-tidy and clang-format from 22.1.1 to 22.1.3 (bug fixes). +* Fix a bug with semantic colorization of operators. + ## Version 1.31.4: March 31, 2026 ### Bug Fix * Debugging cpptools and cpptools-srv processes on macOS (to get call stacks) is now blocked when SIP is enabled (due to a potential security issue). diff --git a/Extension/package.json b/Extension/package.json index 338d299ff..8f2cca3f5 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.31.4-main", + "version": "1.32.0-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md", From b03ca0ba32913c55bce33060e43dea5602ba07d0 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Tue, 14 Apr 2026 10:39:04 -0700 Subject: [PATCH 2/2] Update changelog with debugger changes. --- Extension/CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index c6b5ce72d..fe483aa03 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -4,13 +4,17 @@ ### New Feature * Add support for run without debugging. [#1201](https://github.com/microsoft/vscode-cpptools/issues/1201) -### Enhancement +### Enhancements * Add a `C_Cpp.doxygen.generateOnCodeAction` setting to allow disabling of Doxygen generation code actions. [#14341](https://github.com/microsoft/vscode-cpptools/issues/14341) +* Improve wildcard matching with the debugger natvis. [MIEngine#1162](https://github.com/microsoft/MIEngine/issues/1162) +* Add support for `HideRawView` with the debugger natvis. [MIEngine#1458](https://github.com/microsoft/MIEngine/issues/1458) ### Bug Fixes * Fix high CPU usage caused by repeated calls to `selectChatModels`. [#14168](https://github.com/microsoft/vscode-cpptools/issues/14168), [#14211](https://github.com/microsoft/vscode-cpptools/issues/14211), [#14241](https://github.com/microsoft/vscode-cpptools/issues/14241) * Fix the MSVC developer environment not working if `UCRTVersion` isn't found, and update the walkthrough instructions for installing MSVC. [#14352](https://github.com/microsoft/vscode-cpptools/issues/14352) * Fix Copilot hover taking too many premium requests. [#14372](https://github.com/microsoft/vscode-cpptools/issues/14372) +* Fix null pointers being expandable for variables in the debugger. [MIEngine#698](https://github.com/microsoft/MIEngine/issues/698) +* Fix recursive `{this}` evaluation with the debugger natvis. [MIEngine#1391](https://github.com/microsoft/MIEngine/issues/1391) * Update clang-tidy and clang-format from 22.1.1 to 22.1.3 (bug fixes). * Fix a bug with semantic colorization of operators.