Skip to content

Commit 33dce28

Browse files
authored
Update changelog and version for 1.19.3 (#11941)
1 parent 406f1d6 commit 33dce28

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

Extension/CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# C/C++ for Visual Studio Code Changelog
22

3+
## Version 1.19.3: February 12, 2024
4+
### Enhancements
5+
* Enable support for fuzzy symbol seaches. [#2751](https://github.com/microsoft/vscode-cpptools/issues/2751)
6+
* Improve performance of symbol searches. [#7908](https://github.com/microsoft/vscode-cpptools/issues/7908), [#7914](https://github.com/microsoft/vscode-cpptools/issues/7914), [#11557](https://github.com/microsoft/vscode-cpptools/issues/11557)
7+
* Change the default setting value for `C_Cpp.intelliSenseUpdateDelay` from 2s to 1s. [#11932](https://github.com/microsoft/vscode-cpptools/pull/11932)
8+
9+
### Bug Fixes
10+
* Trim trailing spaces from include paths in the configuration UI. [#11862](https://github.com/microsoft/vscode-cpptools/issues/11862)
11+
* Fix comma delimited lists in `@param` Doxygen parameters. [#11868](https://github.com/microsoft/vscode-cpptools/issues/11868)
12+
* Fix incorrect errors for `compilerPath` in the configuration UI for compilers that can be found in PATH. [#11903](https://github.com/microsoft/vscode-cpptools/issues/11903)
13+
* Fix an issue with include sorting when formatting with clang-format. [#11914](https://github.com/microsoft/vscode-cpptools/issues/11914)
14+
* Fix issues related to support for C++ modules and parsing of related compiler arguments.
15+
* Remove the requirement that a file be open in the editor from various LSP requests.
16+
* Fix an issue that could result in the Outline pane not being populated.
17+
* Fix an issue where use of an explicit `compilerPath` to override the compiler in a `compile_commands.json` with also throw out the compiler arguments.
18+
* Fix some crashes reported by crash telemetry.
19+
* Address multiple issues with compiler querying of clang-cl.
20+
* Fix issues with the tag parsing status sometimes not being accurately reflected in the UI.
21+
* Fix an issue with configuring IntelliSense for a header file after having chosen an associated source file in which inclusion of the header is disabled or removed.
22+
* Fix a potential crash when using 'Find All References'.
23+
* Fix an issue in which the directory specified in a `compile_commands.json` was not being used as the current directory when querying the specified compiler path.
24+
* Fix document and workspace symbol requests being blocked by an IntelliSense request.
25+
326
## Version 1.19.2: January 22, 2024
427
### Enhancements
528
* Implement progressive population of IntelliSense results. [#7759](https://github.com/microsoft/vscode-cpptools/issues/7759)
@@ -15,7 +38,7 @@
1538
* Fix code analysis results getting cleared after there's a configuration update. [#11790](https://github.com/microsoft/vscode-cpptools/issues/11790)
1639
* Fix an exception getting thrown if IntelliSense is disabled but a configuration provider is registered. [#11795](https://github.com/microsoft/vscode-cpptools/issues/11795)
1740
* Fix German code analysis translations. [PR #11845](https://github.com/microsoft/vscode-cpptools/pull/11845)
18-
* Thank you for the contribution [@Sir2B (Tobias Obermayer)](https://github.com/Sir2B)
41+
* Thank you for the contribution. [@Sir2B (Tobias Obermayer)](https://github.com/Sir2B)
1942
* Fix an EACCES error when using include wildcards with system includes. [#11833](https://github.com/microsoft/vscode-cpptools/issues/11833)
2043
* Fix IntelliSense passes occurring while a user is typing, not honoring the `C_Cpp.intelliSenseUpdateDelay` setting.
2144
* Fix a call hierarchy bug leading to use of header-only TU's unnecessarily.

Extension/package.json

Lines changed: 1 addition & 1 deletion
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.19.2-main",
5+
"version": "1.19.3-main",
66
"publisher": "ms-vscode",
77
"icon": "LanguageCCPP_color_128x.png",
88
"readme": "README.md",

0 commit comments

Comments
 (0)