You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Extension/CHANGELOG.md
+14
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,19 @@
1
1
# C/C++ for Visual Studio Code Changelog
2
2
3
+
### Version 1.23.1: November 6, 2024
4
+
### Bug Fixes
5
+
* A potential fix for a crash during process shutdown (in `uv_run`). [#12668](https://github.com/microsoft/vscode-cpptools/issues/12668)
6
+
* Fix a performance issue where some LSP requests would delay other LSP requests. [#12905](https://github.com/microsoft/vscode-cpptools/issues/12905)
7
+
* A potential fix for a crash in cpptools (in `report_intellisense_results`).
8
+
* Fix a random deadlock in `handle_edits`.
9
+
* Other internal fixes.
10
+
11
+
## Version 1.22.11: November 5, 2024
12
+
### Bug Fixes
13
+
* Fix system includes incorrectly being treated as non-system includes when specified with `-I`. [#12842](https://github.com/microsoft/vscode-cpptools/issues/12842)
14
+
* Fix inactive region ranges when multi-byte UTF-8 characters are used. [#12879](https://github.com/microsoft/vscode-cpptools/issues/12879)
15
+
* Fix formatting with `.editorconfig` files. [#12921](https://github.com/microsoft/vscode-cpptools/issues/12921)
16
+
3
17
## Version 1.23.0: October 29, 2024
4
18
### Enhancements
5
19
* Update to clang-format and clang-tidy 19.1.2. [#12824](https://github.com/microsoft/vscode-cpptools/issues/12824)
return`The user is working on a ${chatContext.language} project. The project uses language version ${chatContext.standardVersion}, compiles using the ${chatContext.compiler} compiler, targets the ${chatContext.targetPlatform} platform, and targets the ${chatContext.targetArchitecture} architecture.`;
74
+
letcontextString="";
75
+
if(chatContext.language){
76
+
contextString+=`The user is working on a ${chatContext.language} project. `;
0 commit comments