From 91316f6abe746e63dfa8448473f4625c7a4968f8 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Wed, 16 Apr 2025 14:42:02 -0700 Subject: [PATCH 1/4] Update version and changelog for 1.25.1. --- Extension/CHANGELOG.md | 11 ++++++++++- Extension/package.json | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index df74ab20a..c55209082 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,11 +1,20 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.25.1: April 17, 2025 +### Enhancement +* Add a configuration warning message explaining why paths in quotes can't be found. [#11955](https://github.com/microsoft/vscode-cpptools/issues/11955) + +### Bug Fixes +* Fix the 'Debug C/C++ File' button sometimes disappearing. [#13400](https://github.com/microsoft/vscode-cpptools/issues/13400) +* Fix some cases of a tag parser crash with `read_double`. [#13435](https://github.com/Microsoft/vscode-cpptools/issues/13435) +* Fix issues with the `recursiveIncludes` properties in the configuration UI editor. [PR #13498](https://github.com/microsoft/vscode-cpptools/pull/13498) +* Fix some translation issues. + ## Version 1.25.0: April 10, 2025 ### Enhancement * Improve the description of the `C_Cpp.copilotHover` setting. [PR #13461](https://github.com/microsoft/vscode-cpptools/pull/13461) ### Bug Fixes -* Fix a crash during tag parsing (in `read_double`). [#13435](https://github.com/Microsoft/vscode-cpptools/issues/13435) * Fix the handling of default file associations for certain file extensions. [PR #13455](https://github.com/microsoft/vscode-cpptools/pull/13455) * Fix shell parsing of the arguments of a full command line in `compilerPath`. [PR #13468](https://github.com/microsoft/vscode-cpptools/pull/13468) * Fix C and CUDA files being interpreted as C++ in `compile_commands.json`. [#13471](https://github.com/microsoft/vscode-cpptools/issues/13471) diff --git a/Extension/package.json b/Extension/package.json index 91d1169e6..2a8ef1a61 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.25.0-main", + "version": "1.25.1-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md", From e8eb4c32d3a7b72f32554c510e220aa23980ae19 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Thu, 17 Apr 2025 10:24:36 -0700 Subject: [PATCH 2/4] Update. --- Extension/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index c55209082..82f98cdea 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -5,6 +5,7 @@ * Add a configuration warning message explaining why paths in quotes can't be found. [#11955](https://github.com/microsoft/vscode-cpptools/issues/11955) ### Bug Fixes +* Fix no error appearing in the configuration UI when an invalid `compilerPath` is used. [#12661](https://github.com/microsoft/vscode-cpptools/issues/12661) * Fix the 'Debug C/C++ File' button sometimes disappearing. [#13400](https://github.com/microsoft/vscode-cpptools/issues/13400) * Fix some cases of a tag parser crash with `read_double`. [#13435](https://github.com/Microsoft/vscode-cpptools/issues/13435) * Fix issues with the `recursiveIncludes` properties in the configuration UI editor. [PR #13498](https://github.com/microsoft/vscode-cpptools/pull/13498) From 8ad7f345112df71582b7900258270bf139e41b19 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Thu, 17 Apr 2025 12:50:53 -0700 Subject: [PATCH 3/4] More updates. --- Extension/CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 82f98cdea..2d8f92f4a 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,6 +1,6 @@ # C/C++ for Visual Studio Code Changelog -## Version 1.25.1: April 17, 2025 +## Version 1.25.1: April 21, 2025 ### Enhancement * Add a configuration warning message explaining why paths in quotes can't be found. [#11955](https://github.com/microsoft/vscode-cpptools/issues/11955) @@ -9,6 +9,7 @@ * Fix the 'Debug C/C++ File' button sometimes disappearing. [#13400](https://github.com/microsoft/vscode-cpptools/issues/13400) * Fix some cases of a tag parser crash with `read_double`. [#13435](https://github.com/Microsoft/vscode-cpptools/issues/13435) * Fix issues with the `recursiveIncludes` properties in the configuration UI editor. [PR #13498](https://github.com/microsoft/vscode-cpptools/pull/13498) +* Update clang-tidy and clang-format from 20.1.2 to 20.1.3 (which has some bug fixes). * Fix some translation issues. ## Version 1.25.0: April 10, 2025 From 4cf040b4ea04d8703f8b65cb0b533821a783e072 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Mon, 21 Apr 2025 13:57:57 -0700 Subject: [PATCH 4/4] Update date. --- Extension/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 2d8f92f4a..592bd66d5 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,6 +1,6 @@ # C/C++ for Visual Studio Code Changelog -## Version 1.25.1: April 21, 2025 +## Version 1.25.1: April 22, 2025 ### Enhancement * Add a configuration warning message explaining why paths in quotes can't be found. [#11955](https://github.com/microsoft/vscode-cpptools/issues/11955)