From c9ffbb5ad9cfc6db9ea06954bc65637f491680fc Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Wed, 18 Jun 2025 13:40:31 -0700 Subject: [PATCH] Update changelog for 1.26.2. --- Extension/CHANGELOG.md | 16 ++++++++++++++++ Extension/ThirdPartyNotices.txt | 4 ++-- Extension/package.json | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 6a82a70af..7e5e4ad2f 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,21 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.26.2: June 19, 2025 +### Enhancement +* Add more return code and error logging when compiler querying fails. [#13679](https://github.com/microsoft/vscode-cpptools/issues/13679) + +### Bug Fixes +* Fix completion triggering from `.` on the last column of a multi-line comment block. [#13288](https://github.com/microsoft/vscode-cpptools/issues/13288) +* Fix `-iquote` not working after `-isystem`. [#13638](https://github.com/microsoft/vscode-cpptools/issues/13638) +* Minor debugger fixes. [PR #13654](https://github.com/microsoft/vscode-cpptools/pull/13654), [PR #13671](https://github.com/microsoft/vscode-cpptools/pull/13671) +* Fix `browse.path` merging with the configuration provider's `browse.path` with `"mergeConfigurations": false`. [#13660](https://github.com/microsoft/vscode-cpptools/issues/13660) +* Fix doxygen comments with `[in]`, `[in,out]`, etc. attributes. [#13682](https://github.com/microsoft/vscode-cpptools/issues/13682), [#13698](https://github.com/microsoft/vscode-cpptools/issues/13698) +* Fix old `defines` accumulating after `defines` are changed with `"mergeConfigurations": true`. [#13687](https://github.com/microsoft/vscode-cpptools/issues/13687) +* Fix changes to mergeable properties in `c_cpp_properties.json` not being used until a new configuration is requested with `"mergeConfigurations": true`. [#13688](https://github.com/microsoft/vscode-cpptools/issues/13688) +* Update the bundled `clang-format` and `clang-tidy` from 20.1.5 to 20.1.7 (for bug fixes). +* Fix an IntelliSense crash when calling `save_class_members`. +* Update and fix some translations. + ## Version 1.26.1: May 22, 2025 ### Bug Fixes * Fix include completion adding an extra `"` in `insert` mode. [#13615](https://github.com/microsoft/vscode-cpptools/issues/13615) diff --git a/Extension/ThirdPartyNotices.txt b/Extension/ThirdPartyNotices.txt index dfc2bbcaa..5dd05ff6b 100644 --- a/Extension/ThirdPartyNotices.txt +++ b/Extension/ThirdPartyNotices.txt @@ -1323,7 +1323,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI --------------------------------------------------------- -brace-expansion 1.1.11 - MIT +brace-expansion 1.1.12 - MIT https://github.com/juliangruber/brace-expansion Copyright (c) 2013 Julian Gruber @@ -1355,7 +1355,7 @@ SOFTWARE. --------------------------------------------------------- -brace-expansion 2.0.1 - MIT +brace-expansion 2.0.2 - MIT https://github.com/juliangruber/brace-expansion Copyright (c) 2013 Julian Gruber diff --git a/Extension/package.json b/Extension/package.json index 2e34687f9..dcc947ad6 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.26.1-main", + "version": "1.26.2-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md",