From 03a1c511d5c82a820d511d39923ee5d3c7788415 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Tue, 28 Jul 2026 16:31:27 +0000 Subject: [PATCH 1/2] Update changelog for 1.33.5. --- Extension/CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 0d8e5c500..6fc5b98be 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,22 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.33.5: July 28, 2026 +### Bug Fixes +* Fix the remote process picker `ps` command not working with some shells. [#14442](https://github.com/microsoft/vscode-cpptools/issues/14442) + * Thanks for the contribution. [@HuzaifaAbdulRehman](https://github.com/HuzaifaAbdulRehman) [PR #14592](https://github.com/microsoft/vscode-cpptools/pull/14592) +* Fix a spurious IntelliSense error with class template argument deduction (CTAD). [#14453](https://github.com/microsoft/vscode-cpptools/issues/14453), [#14459](https://github.com/microsoft/vscode-cpptools/issues/14459), [#14504](https://github.com/microsoft/vscode-cpptools/issues/14504) +* Fix 'Run C/C++ File' not running the program in PowerShell when terminal shell integration is unavailable. [#14583](https://github.com/microsoft/vscode-cpptools/issues/14583) + * Thanks for the contribution. [@owevertonguedes (Weverton Guedes)](https://github.com/owevertonguedes) [PR #14585](https://github.com/microsoft/vscode-cpptools/pull/14585) +* Fix the build tools walkthrough for Visual Studio 2026. [PR #14589](https://github.com/microsoft/vscode-cpptools/pull/14589) +* Fix empty database folders being created in every folder of a multi-root workspace. +* Fix 'Rescan Workspace' triggering a full database reset instead of only a rescan. +* Fix several potential deadlocks and data races in the language server. +* Reduce memory usage to help avoid out-of-memory crashes. +* Fix an incorrect `#include` casing error on Linux. +* Fix an IntelliSense crash. +* Various localization updates. +* Update dependencies. + ## Version 1.33.4: July 8, 2026 ### Bug Fixes * Fix the wording for the `#include` errors detected message. [#8227](https://github.com/microsoft/vscode-cpptools/issues/8227) From c83423f9653705c508cbc3b376e0881d891d395e Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Tue, 28 Jul 2026 19:02:56 +0000 Subject: [PATCH 2/2] Update version to 1.33.5. --- Extension/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension/package.json b/Extension/package.json index 2badea735..1321404ff 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.4-main", + "version": "1.33.5-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md",