Skip to content

Commit 1cf0785

Browse files
committed
merge from main
2 parents 3bb4f1f + 2431425 commit 1cf0785

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

Extension/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# C/C++ for Visual Studio Code Changelog
22

3+
## Version 1.22.6: September 25, 2024
4+
### Bug Fixes
5+
* Fix an issue with usage of `#cpp` with Copilot chat. [vscode-copilot-release#1634](https://github.com/microsoft/vscode-copilot-release/issues/1634)
6+
* Fix a performance regression with tag parsing.
7+
* Fix a document buffer issue related to edits within files containing multi-byte characters.
8+
9+
## Version 1.22.5: September 24, 2024
10+
### Enhancement
11+
* Add the database path to the `C/C++: Log Diagnostics` output.
12+
13+
### Bug Fixes
14+
* Fix some synchronization and crash issues with `handle_edits`. [#12747](https://github.com/microsoft/vscode-cpptools/issues/12747)
15+
* Fix usage of `#cpp` with Copilot chat. [PR #12755](https://github.com/microsoft/vscode-cpptools/pull/12755)
16+
* Fix some document buffer issues.
17+
318
## Version 1.22.4: September 19, 2024
419
### Enhancements
520
* Performance improvements related to how custom configurations are processed. [#12632](https://github.com/microsoft/vscode-cpptools/issues/12632)

Extension/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "cpptools",
33
"displayName": "C/C++",
44
"description": "C/C++ IntelliSense, debugging, and code browsing.",
5-
"version": "1.22.4-main",
5+
"version": "1.22.6-main",
66
"publisher": "ms-vscode",
77
"icon": "LanguageCCPP_color_128x.png",
88
"readme": "README.md",
@@ -6462,7 +6462,6 @@
64626462
"userDescription": "%c_cpp.languageModelTools.configuration.userDescription%",
64636463
"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).",
64646464
"icon": "$(file-code)",
6465-
"parametersSchema": {},
64666465
"when": "(config.C_Cpp.experimentalFeatures =~ /^[eE]nabled$/)",
64676466
"supportedContentTypes": [
64686467
"text/plain"

0 commit comments

Comments
 (0)