From 5c588fba0ccf2a58c45f07a2a23396e8b4f594fa Mon Sep 17 00:00:00 2001 From: Ben McMorran Date: Wed, 25 Sep 2024 15:04:48 -0700 Subject: [PATCH 1/2] Remove parametersSchema for #cpp (#12768) --- Extension/package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/Extension/package.json b/Extension/package.json index 8d8395e3fb..11b24d2498 100644 --- a/Extension/package.json +++ b/Extension/package.json @@ -6451,7 +6451,6 @@ "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)", - "parametersSchema": {}, "when": "(config.C_Cpp.experimentalFeatures =~ /^[eE]nabled$/)", "supportedContentTypes": [ "text/plain" From 24314254dbfc9f3edaca7e20203b31ae4a32f949 Mon Sep 17 00:00:00 2001 From: Colen Garoutte-Carson <49173979+Colengms@users.noreply.github.com> Date: Wed, 25 Sep 2024 15:39:41 -0700 Subject: [PATCH 2/2] Update changelog for 1.22.6 (#12769) --- Extension/CHANGELOG.md | 6 ++++++ Extension/package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index a2a5cc18de..bb3296e247 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,11 @@ # C/C++ for Visual Studio Code Changelog +## Version 1.22.6: September 25, 2024 +### Bug Fixes +* Fix an issue with usage of `#cpp` with Copilot chat. [vscode-copilot-release#1634](https://github.com/microsoft/vscode-copilot-release/issues/1634) +* Fix a performance regression with tag parsing. +* Fix a document buffer issue related to edits within files containing multi-byte characters. + ## Version 1.22.5: September 24, 2024 ### Enhancement * Add the database path to the `C/C++: Log Diagnostics` output. diff --git a/Extension/package.json b/Extension/package.json index 11b24d2498..64b046ed60 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.22.5-main", + "version": "1.22.6-main", "publisher": "ms-vscode", "icon": "LanguageCCPP_color_128x.png", "readme": "README.md",