From d7bfae6ed1b25e3187ae17f019b31a2ccdeea54b Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Wed, 21 Aug 2024 13:24:07 -0700 Subject: [PATCH] Update changelog/version for 1.22.0 (#12602) * Update changelog and version for 1.22.0. --- Extension/CHANGELOG.md | 28 ++++++++++++++++++++++++++++ Extension/package.json | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 1fcc45e2a5..c63f367aad 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,33 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.22.0: August 21, 2024 +### Performance Improvements +* Switch to an alternative implementation of recursive includes (that sends all the paths instead of only the "used" paths). [#11780](https://github.com/microsoft/vscode-cpptools/issues/11780) + - Performance improvement: Configuration is no longer blocked on tag parsing of all dependent headers. + - Configuration change: Recursive include paths now always take precedence over system include paths (similar to compiler behavior and non-recursive includes). [#11485](https://github.com/microsoft/vscode-cpptools/issues/11485) +* Initialization performance improvements. [#12030](https://github.com/microsoft/vscode-cpptools/issues/12030) + - Some processing is parallelized and started earlier (populating the filename cache, discovering files). [#11954](https://github.com/microsoft/vscode-cpptools/issues/11954), [#12169](https://github.com/microsoft/vscode-cpptools/issues/12169) + - Some compiler configuration queries are cached in the database, and processing of compile_commands.json was improved. [#10029](https://github.com/microsoft/vscode-cpptools/issues/10029), [#12078](https://github.com/microsoft/vscode-cpptools/issues/12078) +* Improve the implementation of file buffers to reduce memory usage. + +### Enhancements +* Change the default C/C++ `"editor.stickyScroll.defaultModel"` to `"foldingProviderModel"`. [#12483](https://github.com/microsoft/vscode-cpptools/issues/12483) +* Add better validation for settings. [#12371](https://github.com/microsoft/vscode-cpptools/issues/12371) +* Various IntelliSense parsing updates/fixes. + +### Bug Fixes +* Stop logging duplicate compiler path messages. [#12445](https://github.com/microsoft/vscode-cpptools/issues/12445) +* Fix an issue where a file is incorrectly processed as C instead of C++. [#12466](https://github.com/microsoft/vscode-cpptools/issues/12466) +* Fix include path ordering being incorrect if there is a duplicate. [#12525](https://github.com/microsoft/vscode-cpptools/issues/12525) +* Fix a WebAssembly "Out of Memory" error. [#12529](https://github.com/microsoft/vscode-cpptools/issues/12529) +* Fix `-I` not being used if `-iquote` is also used for the same path. [#12551](https://github.com/microsoft/vscode-cpptools/issues/12551) +* Fix issues with relative paths on `nvcc` (CUDA) command lines not being handled correctly. [#12553](https://github.com/microsoft/vscode-cpptools/issues/12553) +* Fix a random crash when a child process is created. [#12585](https://github.com/microsoft/vscode-cpptools/issues/12585) +* Fix a crash on shutdown on macOS with a verbose logging level. [#12567](https://github.com/microsoft/vscode-cpptools/issues/12567) +* Fix some issues with recursive includes handling of symbolic links, multi-root, exclusion changes, and file/folder deletion. +* Fix unnecessary IntelliSense resetting when a new file or folder was created. +* Fix accumulation of stale signature help and completion requests. + ## Version 1.21.6: August 5, 2024 * Fix a cpptools-srv crash on shutdown. [#12354](https://github.com/microsoft/vscode-cpptools/issues/12354) diff --git a/Extension/package.json b/Extension/package.json index 862ff89be0..957914679f 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.21.6-main", + "version": "1.22.0-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md",