From b137df0bcd99b89194e3a199676efa069960abf2 Mon Sep 17 00:00:00 2001 From: Ben McMorran Date: Mon, 14 Oct 2024 11:59:51 -0700 Subject: [PATCH 1/2] React to breaking changes in lmTools API (#12838) --- Extension/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Extension/package.json b/Extension/package.json index 99310ee1c2..9b238c6676 100644 --- a/Extension/package.json +++ b/Extension/package.json @@ -6444,10 +6444,10 @@ ], "languageModelTools": [ { - "id": "cpptools-lmtool-configuration", - "name": "cpp", + "name": "cpptools-lmtool-configuration", + "toolReferenceName": "cpp", "displayName": "%c_cpp.languageModelTools.configuration.displayName%", - "canBeInvokedManually": true, + "canBeReferencedInPrompt": true, "userDescription": "%c_cpp.languageModelTools.configuration.userDescription%", "modelDescription": "For the active C or C++ file, this tool provides: the language (C, C++, or CUDA), the language standard version (such as C++11, C++14, C++17, or C++20), the compiler (such as GCC, Clang, or MSVC), the target platform (such as x86, x64, or ARM), and the target architecture (such as 32-bit or 64-bit).", "icon": "$(file-code)", From f9e067f5d11bbef4ef487a46c0caeae201411128 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Mon, 14 Oct 2024 12:05:29 -0700 Subject: [PATCH 2/2] Last minute updates for 1.22.9. --- Extension/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index 71a2ad23eb..3e83e1a790 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,6 +1,6 @@ # C/C++ for Visual Studio Code Changelog -## Version 1.22.9: October 10, 2024 +## Version 1.22.9: October 14, 2024 ### Performance Improvements * 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)