Skip to content

Commit

Permalink
Update changelog and @types/vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-mcmanus committed Dec 2, 2020
1 parent 2cca514 commit b102143
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
8 changes: 8 additions & 0 deletions Extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# C/C++ for Visual Studio Code Change Log

## Version 1.1.3: December 3, 2020
### Bug Fixes
* Disable the "join Insiders" prompt for Linux CodeSpaces. [#6491](https://github.com/microsoft/vscode-cpptools/issues/6491)
* Fix "shell" tasks giving error "Cannot read property `includes` of undefined". [#6538](https://github.com/microsoft/vscode-cpptools/issues/6538)
* Fix various task variables not getting resolved with `cppbuild` tasks. [#6538](https://github.com/microsoft/vscode-cpptools/issues/6538)
* Fix warnings not appearing with `cppbuild` tasks. [#6556](https://github.com/microsoft/vscode-cpptools/issues/6556)
* Fix endless CPU/memory usage if the cpptools process crashes. [#6603](https://github.com/microsoft/vscode-cpptools/issues/6603)

## Version 1.1.2: November 17, 2020
### Bug Fix
* Fix resolution of `${fileDirname}` with `cppbuild` tasks. [#6386](https://github.com/microsoft/vscode-cpptools/issues/6386)
Expand Down
2 changes: 1 addition & 1 deletion Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2347,7 +2347,7 @@
"@types/plist": "^3.0.2",
"@types/semver": "^7.1.0",
"@types/tmp": "^0.1.0",
"@types/vscode": "1.44.0",
"@types/vscode": "1.49.0",
"@types/webpack": "^4.39.0",
"@types/which": "^1.3.2",
"@types/yauzl": "^2.9.1",
Expand Down
4 changes: 3 additions & 1 deletion Extension/src/LanguageServer/configurations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,9 @@ export class CppProperties {
}

private onConfigurationsChanged(): void {
this.configurationsChanged.fire(this.Configurations);
if (this.Configurations) {
this.configurationsChanged.fire(this.Configurations);
}
}

private onSelectionChanged(): void {
Expand Down
4 changes: 2 additions & 2 deletions Extension/src/LanguageServer/referencesTreeDataProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const localize: nls.LocalizeFunc = nls.loadMessageBundle();

export class ReferencesTreeDataProvider implements vscode.TreeDataProvider<TreeNode> {
private referencesModel: ReferencesModel | undefined;
private readonly _onDidChangeTreeData = new vscode.EventEmitter<TreeNode>();
readonly onDidChangeTreeData: vscode.Event<TreeNode>;
private readonly _onDidChangeTreeData = new vscode.EventEmitter<void>();
readonly onDidChangeTreeData: vscode.Event<void>;

constructor() {
this.onDidChangeTreeData = this._onDidChangeTreeData.event;
Expand Down
8 changes: 4 additions & 4 deletions Extension/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,10 @@
dependencies:
source-map "^0.6.1"

"@types/vscode@1.44.0":
version "1.44.0"
resolved "https://registry.yarnpkg.com/@types/vscode/-/vscode-1.44.0.tgz#62ecfe3d0e38942fce556574da54ee1013c775b7"
integrity sha512-WJZtZlinE3meRdH+I7wTsIhpz/GLhqEQwmPGeh4s1irWLwMzCeTV8WZ+pgPTwrDXoafVUWwo1LiZ9HJVHFlJSQ==
"@types/vscode@1.49.0":
version "1.49.0"
resolved "https://registry.yarnpkg.com/@types/vscode/-/vscode-1.49.0.tgz#f3731d97d7e8b2697510eb26f6e6d04ee8c17352"
integrity sha512-wfNQmLmm1VdMBr6iuNdprWmC1YdrgZ9dQzadv+l2eSjJlElOdJw8OTm4RU4oGTBcfvG6RZI2jOcppkdSS18mZw==

"@types/webpack-sources@*":
version "0.1.6"
Expand Down

0 comments on commit b102143

Please sign in to comment.