From dae141447406457fd4240d39a818c03c892a45f6 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Mon, 31 Aug 2026 14:22:41 -0700 Subject: [PATCH 1/2] Add 1.34.2 changelog --- Extension/CHANGELOG.md | 10 ++++++++++ Extension/package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 3d50c118c..f2a89fc47 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,15 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.34.2: August 31, 2026 +### Enhancements +* Improve C/C++ file classification by supporting extensionless headers and additional extensions such as `.cppm` throughout extension features. [PR #14711](https://github.com/microsoft/vscode-cpptools/pull/14711) +* Update the bundled `clang-tidy` and `clang-format` from 22.1.3 to 23.1.0, including available `clang-tidy` check suggestions and documentation. [PR #14713](https://github.com/microsoft/vscode-cpptools/pull/14713) + +### Bug Fixes +* Fix high CPU and memory usage in workspaces with multiple symbolic links that point to ancestor directories. [#14689](https://github.com/microsoft/vscode-cpptools/issues/14689) +* Fix include completion and symbol navigation using stale recursive include data after files are replaced by directories or symbolic link roots change. +* Fix 'Find All References' misclassifying references in inactive preprocessor regions after falling back to header-only IntelliSense. + ## Version 1.34.1: August 28, 2026 ### Bug Fixes * Fix formatting not inserting the final newline requested by `InsertNewlineAtEOF`. [#12680](https://github.com/microsoft/vscode-cpptools/issues/12680) diff --git a/Extension/package.json b/Extension/package.json index fd39e0a54..5c42a5ecd 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.34.1-main", + "version": "1.34.2-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md", From 963a490c800321bb065d7180b21a598676e88d47 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Mon, 31 Aug 2026 15:16:42 -0700 Subject: [PATCH 2/2] Use non-module extension example --- Extension/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index f2a89fc47..c1232b567 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -2,7 +2,7 @@ ## Version 1.34.2: August 31, 2026 ### Enhancements -* Improve C/C++ file classification by supporting extensionless headers and additional extensions such as `.cppm` throughout extension features. [PR #14711](https://github.com/microsoft/vscode-cpptools/pull/14711) +* Improve C/C++ file classification by supporting extensionless headers and additional extensions such as `.hip` throughout extension features. [PR #14711](https://github.com/microsoft/vscode-cpptools/pull/14711) * Update the bundled `clang-tidy` and `clang-format` from 22.1.3 to 23.1.0, including available `clang-tidy` check suggestions and documentation. [PR #14713](https://github.com/microsoft/vscode-cpptools/pull/14713) ### Bug Fixes