From 7af04f6153f5d73f233d0eda058c39d2260b87d3 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Wed, 24 Jun 2026 19:18:11 -0700 Subject: [PATCH 1/2] Fix errors in the previous changelog. (#14545) --- Extension/CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 577a7c798..4eae63bb2 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,8 +1,9 @@ # C/C++ for Visual Studio Code Changelog -## Version 1.33.1: June 24, 2026 +## Version 1.33.1: June 23, 2026 ### Bug Fixes -* Fix some crash regressions. +* Fix 'Find All References' dropping valid references when a template parameter type has a typedef alias in only one translation unit. [#14344](https://github.com/microsoft/vscode-cpptools/issues/14344) +* Fix a crash regression on file open. * 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. From 959a4d15d51ccf81791c2197f513a3c915c2508c Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Thu, 25 Jun 2026 19:31:20 -0700 Subject: [PATCH 2/2] Update changelog for 1.33.2. (#14547) * Update changelog for 1.33.2. --- Extension/CHANGELOG.md | 5 +++++ Extension/package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 4eae63bb2..13757a930 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,10 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.33.2: June 26, 2026 +### Bug Fixes +* Fix a regression with 'Find All References' with functions that exist in both C and C++ files. [#14546](https://github.com/microsoft/vscode-cpptools/issues/14546) +* Fix some regression crashes. + ## Version 1.33.1: June 23, 2026 ### Bug Fixes * Fix 'Find All References' dropping valid references when a template parameter type has a typedef alias in only one translation unit. [#14344](https://github.com/microsoft/vscode-cpptools/issues/14344) diff --git a/Extension/package.json b/Extension/package.json index e1fcedc58..cca7c7cc5 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.1-main", + "version": "1.33.2-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md",