Skip to content

Commit 9cf7cda

Browse files
authored
Merge pull request #13551 from microsoft/main
Merge for 1.25.2
2 parents 248788d + 4639ac6 commit 9cf7cda

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

Extension/CHANGELOG.md

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

3+
## Version 1.25.2: April 25, 2025
4+
### Bug Fixes
5+
* Fix a crash in `read_double`. [#13435](https://github.com/Microsoft/vscode-cpptools/issues/13435)
6+
* Fix a crash with Copilot hover.
7+
38
## Version 1.25.1: April 22, 2025
49
### Enhancement
510
* Add a configuration warning message explaining why paths in quotes can't be found. [#11955](https://github.com/microsoft/vscode-cpptools/issues/11955)
611

712
### Bug Fixes
813
* Fix no error appearing in the configuration UI when an invalid `compilerPath` is used. [#12661](https://github.com/microsoft/vscode-cpptools/issues/12661)
914
* Fix the 'Debug C/C++ File' button sometimes disappearing. [#13400](https://github.com/microsoft/vscode-cpptools/issues/13400)
10-
* Fix some cases of a tag parser crash with `read_double`. [#13435](https://github.com/Microsoft/vscode-cpptools/issues/13435)
1115
* Fix issues with the `recursiveIncludes` properties in the configuration UI editor. [PR #13498](https://github.com/microsoft/vscode-cpptools/pull/13498)
1216
* Update clang-tidy and clang-format from 20.1.2 to 20.1.3 (which has some bug fixes).
1317
* Fix some translation issues.

Extension/package.json

Lines changed: 5 additions & 5 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.25.1-main",
5+
"version": "1.25.2-main",
66
"publisher": "ms-vscode",
77
"icon": "LanguageCCPP_color_128x.png",
88
"readme": "README.md",
@@ -900,31 +900,31 @@
900900
"C_Cpp.default.recursiveIncludes.reduce": {
901901
"type": "string",
902902
"enum": [
903+
"",
903904
"always",
904905
"never",
905906
"default"
906907
],
907-
"default": "default",
908908
"markdownDescription": "%c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription%",
909909
"scope": "resource"
910910
},
911911
"C_Cpp.default.recursiveIncludes.priority": {
912912
"type": "string",
913913
"enum": [
914+
"",
914915
"beforeSystemIncludes",
915916
"afterSystemIncludes"
916917
],
917-
"default": "afterSystemIncludes",
918918
"markdownDescription": "%c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription%",
919919
"scope": "resource"
920920
},
921921
"C_Cpp.default.recursiveIncludes.order": {
922922
"type": "string",
923923
"enum": [
924+
"",
924925
"depthFirst",
925926
"breadthFirst"
926927
],
927-
"default": "depthFirst",
928928
"markdownDescription": "%c_cpp.configuration.default.recursiveIncludes.order.markdownDescription%",
929929
"scope": "resource"
930930
},
@@ -6651,4 +6651,4 @@
66516651
"postcss": "^8.4.31",
66526652
"gulp-typescript/**/glob-parent": "^5.1.2"
66536653
}
6654-
}
6654+
}

0 commit comments

Comments
 (0)