From c818ba0718b1c0c548b0bd87d2b7310411f3c727 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Wed, 15 Oct 2025 03:51:56 -0700 Subject: [PATCH 1/2] Update changelog for 1.28.3. --- Extension/CHANGELOG.md | 2 +- Extension/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 6b408146b..5c3cce09c 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,6 +1,6 @@ # C/C++ for Visual Studio Code Changelog -## Version 1.28.2: October 14, 2025 +## Version 1.28.3: October 16, 2025 ### Enhancements * Add IntelliSense support for c23 `bool`, `true`, and `false`. [#13737](https://github.com/microsoft/vscode-cpptools/issues/13737) * Add missing C/C++ keyword completions for newer language standards. [#13982](https://github.com/microsoft/vscode-cpptools/issues/13982) diff --git a/Extension/package.json b/Extension/package.json index f0b6b9733..63cdd9e0c 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.28.2-main", + "version": "1.28.3-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md", From 0bf7cc956c6c76a2eb86bf9b042c1baaac0245e0 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Wed, 15 Oct 2025 04:45:47 -0700 Subject: [PATCH 2/2] Add another changelog entry. --- Extension/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 5c3cce09c..89a4fc818 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -14,6 +14,7 @@ * Fix document symbols randomly showing previous versions of symbols after they are modified. [#13967](https://github.com/microsoft/vscode-cpptools/issues/13967) * Prevent tag parsing of .js files to avoid a crash. [#13980](https://github.com/microsoft/vscode-cpptools/issues/13980) * Fix some invalid assumptions for cppbuild tasks. [PR #13989](https://github.com/microsoft/vscode-cpptools/pull/13989) +* Fix a random crash after changing settings while code analysis is running. * Fix a random memory corruption and deadlock (involving `task_deque`). * A potential fix for a crash (involving `line_offset_t`).