8000 Merge for 1.25.2 by sean-mcmanus · Pull Request #13551 · microsoft/vscode-cpptools · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge for 1.25.2 #13551

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
# C/C++ for Visual Studio Code Changelog

## Version 1.25.2: April 25, 2025
### Bug Fixes
* Fix a crash in `read_double`. [#13435](https://github.com/Microsoft/vscode-cpptools/issues/13435)
* Fix a crash with Copilot hover.

## Version 1.25.1: April 22, 2025
### Enhancement
* Add a configuration warning message explaining why paths in quotes can't be found. [#11955](https://github.com/microsoft/vscode-cpptools/issues/11955)

### Bug Fixes
* Fix no error appearing in the configuration UI when an invalid `compilerPath` is used. [#12661](https://github.com/microsoft/vscode-cpptools/issues/12661)
* Fix the 'Debug C/C++ File' button sometimes disappearing. [#13400](https://github.com/microsoft/vscode-cpptools/issues/13400)
* Fix some cases of a tag parser crash with `read_double`. [#13435](https://github.com/Microsoft/vscode-cpptools/issues/13435)
* Fix issues with the `recursiveIncludes` properties in the configuration UI editor. [PR #13498](https://github.com/microsoft/vscode-cpptools/pull/13498)
* Update clang-tidy and clang-format from 20.1.2 to 20.1.3 (which has some bug fixes).
* Fix some translation issues.
Expand Down
10 changes: 5 additions & 5 deletions Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cpptools",
"displayName": "C/C++",
"description": "C/C++ IntelliSense, debugging, and code browsing.",
"version": "1.25.1-main",
"version": "1.25.2-main",
"publisher": "ms-vscode",
"icon": "LanguageCCPP_color_128x.png",
"readme": "README.md",
Expand Down Expand Up @@ -900,31 +900,31 @@
"C_Cpp.default.recursiveIncludes.reduce": {
"type": "string",
"enum": [
"",
"always",
"never",
"default"
],
"default": "default",
"markdownDescription": "%c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription%",
"scope": "resource"
},
"C_Cpp.default.recursiveIncludes.priority": {
"type": "string",
"enum": [
"",
"beforeSystemIncludes",
"afterSystemIncludes"
],
"default": "afterSystemIncludes",
"markdownDescription": "%c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription%",
"scope": "resource"
},
"C_Cpp.default.recursiveIncludes.order": {
"type": "string",
"enum": [
"",
"depthFirst",
"breadthFirst"
],
"default": "depthFirst",
"markdownDescription": "%c_cpp.configuration.default.recursiveIncludes.order.markdownDescription%",
"scope": "resource"
},
Expand Down Expand Up @@ -6651,4 +6651,4 @@
"postcss": "^8.4.31",
"gulp-typescript/**/glob-parent": "^5.1.2"
}
}
}
0