Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 5 additions & 10 deletions Extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
# C/C++ for Visual Studio Code Changelog

## Version 1.29.1: November 24, 2025
### Bug Fixes
* Fix omission of unpopulated Mac framework paths. [#13993](https://github.com/microsoft/vscode-cpptools/issues/13993)
* Fix IntelliSense with MSVC mode C++23 deduced type construction with `auto`. [#14041](https://github.com/microsoft/vscode-cpptools/issues/14041)
* Fix the handling of the cl.exe `/external:I` argument for IntelliSense configuration.
* Fix a potential memory corruption crash of cpptools-srv (related to PCH).
* Add translations of strings added in 1.29.0.

## Version 1.29.0: November 4, 2025
## Version 1.29.2: December 3, 2025
### New Feature
* Enable setting the VS developer environment without running VS Code from the developer command prompt. [#4742](https://github.com/microsoft/vscode-cpptools/issues/4742)

Expand All @@ -20,13 +12,16 @@
* Fix 'Find All References' and 'Rename' on `#define` macro definitions. [#6194](https://github.com/microsoft/vscode-cpptools/issues/6194)
* Fix anonymous enums not working in gcc/clang modes. [#10436](https://github.com/microsoft/vscode-cpptools/issues/10436)
* Fix Doxygen comments at the end of a function. [#13725](https://github.com/microsoft/vscode-cpptools/issues/13725)
* Fix mac framework search path detection to include paths passed in the `includePath` from a configuration provider. [#13993](https://github.com/microsoft/vscode-cpptools/issues/13993)
* Fix mac framework search path detection to include paths passed in the `includePath` from a configuration provider, and fix omission of unpopulated Mac framework paths. [#13993](https://github.com/microsoft/vscode-cpptools/issues/13993)
* Fix formatting with `clang-tidy` randomly getting stuck on Windows (on a call to `GetOverlappedResult`). [#14025](https://github.com/microsoft/vscode-cpptools/issues/14025)
* Fix IntelliSense with MSVC mode C++23 deduced type construction with `auto`. [#14041](https://github.com/microsoft/vscode-cpptools/issues/14041)
* Fix code analysis re-running automatically after a settings change when diagnostics already exist if it was manually instead of automatically invoked.
* Reduce the memory usage in a couple cases to reduce the chance of a `bad_alloc` in cpptools.
* Update `clang-format` and `clang-tidy` from 21.1.3 to 21.1.4 (fixes some formatting bugs).
* Fix the handling of the cl.exe `/external:I` argument for IntelliSense configuration.
* Fix a case where a large file could cause a `bad_alloc` in cpptools-srv on Windows.
* Update the default compiler search to include newer versions of clang/gcc.
* Fix a potential memory corruption crash of cpptools-srv (related to PCH).
* Fix a crash in `detect_encoding`.

## Version 1.28.3: October 16, 2025
Expand Down
2 changes: 1 addition & 1 deletion Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cpptools",
"displayName": "C/C++",
"description": "C/C++ IntelliSense, debugging, and code browsing.",
"version": "1.29.1-main",
"version": "1.29.2-main",
"publisher": "ms-vscode",
"icon": "LanguageCCPP_color_128x.png",
"readme": "README.md",
Expand Down
Loading