File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# C/C++ for Visual Studio Code Change Log
22
3+ ## Version 1.1.3: December 3, 2020
4+ ### Bug Fixes
5+ * Disable the "join Insiders" prompt for Linux CodeSpaces. [ #6491 ] ( https://github.com/microsoft/vscode-cpptools/issues/6491 )
6+ * Fix "shell" tasks giving error "Cannot read property ` includes ` of undefined". [ #6538 ] ( https://github.com/microsoft/vscode-cpptools/issues/6538 )
7+ * Fix various task variables not getting resolved with ` cppbuild ` tasks. [ #6538 ] ( https://github.com/microsoft/vscode-cpptools/issues/6538 )
8+ * Fix warnings not appearing with ` cppbuild ` tasks. [ #6556 ] ( https://github.com/microsoft/vscode-cpptools/issues/6556 )
9+ * Fix endless CPU/memory usage if the cpptools process crashes. [ #6603 ] ( https://github.com/microsoft/vscode-cpptools/issues/6603 )
10+
311## Version 1.1.2: November 17, 2020
412### Bug Fix
513* Fix resolution of ` ${fileDirname} ` with ` cppbuild ` tasks. [ #6386 ] ( https://github.com/microsoft/vscode-cpptools/issues/6386 )
Original file line number Diff line number Diff line change 23472347 "@types/plist" : " ^3.0.2" ,
23482348 "@types/semver" : " ^7.1.0" ,
23492349 "@types/tmp" : " ^0.1.0" ,
2350- "@types/vscode" : " 1.44 .0" ,
2350+ "@types/vscode" : " 1.49 .0" ,
23512351 "@types/webpack" : " ^4.39.0" ,
23522352 "@types/which" : " ^1.3.2" ,
23532353 "@types/yauzl" : " ^2.9.1" ,
Original file line number Diff line number Diff line change @@ -246,7 +246,9 @@ export class CppProperties {
246246 }
247247
248248 private onConfigurationsChanged ( ) : void {
249- this . configurationsChanged . fire ( this . Configurations ) ;
249+ if ( this . Configurations ) {
250+ this . configurationsChanged . fire ( this . Configurations ) ;
251+ }
250252 }
251253
252254 private onSelectionChanged ( ) : void {
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ const localize: nls.LocalizeFunc = nls.loadMessageBundle();
1313
1414export class ReferencesTreeDataProvider implements vscode . TreeDataProvider < TreeNode > {
1515 private referencesModel : ReferencesModel | undefined ;
16- private readonly _onDidChangeTreeData = new vscode . EventEmitter < TreeNode > ( ) ;
17- readonly onDidChangeTreeData : vscode . Event < TreeNode > ;
16+ private readonly _onDidChangeTreeData = new vscode . EventEmitter < void > ( ) ;
17+ readonly onDidChangeTreeData : vscode . Event < void > ;
1818
1919 constructor ( ) {
2020 this . onDidChangeTreeData = this . _onDidChangeTreeData . event ;
Original file line number Diff line number Diff line change 204204 dependencies :
205205 source-map "^0.6.1"
206206
207- " @types/vscode@1.44 .0 " :
208- version "1.44 .0"
209- resolved "https://registry.yarnpkg.com/@types/vscode/-/vscode-1.44 .0.tgz#62ecfe3d0e38942fce556574da54ee1013c775b7 "
210- integrity sha512-WJZtZlinE3meRdH+I7wTsIhpz/GLhqEQwmPGeh4s1irWLwMzCeTV8WZ+pgPTwrDXoafVUWwo1LiZ9HJVHFlJSQ ==
207+ " @types/vscode@1.49 .0 " :
208+ version "1.49 .0"
209+ resolved "https://registry.yarnpkg.com/@types/vscode/-/vscode-1.49 .0.tgz#f3731d97d7e8b2697510eb26f6e6d04ee8c17352 "
210+ integrity sha512-wfNQmLmm1VdMBr6iuNdprWmC1YdrgZ9dQzadv+l2eSjJlElOdJw8OTm4RU4oGTBcfvG6RZI2jOcppkdSS18mZw ==
211211
212212" @types/webpack-sources@* " :
213213 version "0.1.6"
You can’t perform that action at this time.
0 commit comments