diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 684f6d223..89a4fc818 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,8 +1,9 @@ # C/C++ for Visual Studio Code Changelog -## Version 1.28.2: October 13, 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) * Update the bundled `clang-tidy` and `clang-format` from 20.1.7 to 21.1.3. ### Bug Fixes @@ -12,8 +13,9 @@ * Fix extension activation getting stuck when certain SSH config files are processed (by the SSH targets view feature). [#13966](https://github.com/microsoft/vscode-cpptools/issues/13966) * 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 missing C/C++ keyword completions for newer language standards. [#13982](https://github.com/microsoft/vscode-cpptools/issues/13982) * 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`). ## Version 1.27.7: September 18, 2025 diff --git a/Extension/cgmanifest.json b/Extension/cgmanifest.json index 83de24abe..92adbdc44 100644 --- a/Extension/cgmanifest.json +++ b/Extension/cgmanifest.json @@ -1,16 +1,6 @@ { "$schema": "https://json.schemastore.org/component-detection-manifest.json", "Registrations": [ - { - "Component": { - "Type": "git", - "Git": { - "RepositoryUrl": "https://github.com/llvm/llvm-project", - "CommitHash": "0d44201451f03ba907cdb268ddddfc3fa38a0ebd" - }, - "DevelopmentDependency": true - } - }, { "Component": { "Type": "git", 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",