Skip to content

Commit 6dfbc1f

Browse files
committed
Perform yarn upgrade
The commit performs a `yarn upgrade` of the framework to better represent what downstream applications pull with our version ranges, and to resolve known security vulnerabilities which were pulled by our lockfile. The changes also make sure that our declared ranges for dependencies are correct and fixes any compilation errors. Contributed on behalf of STMicroelectronics
1 parent beabfba commit 6dfbc1f

File tree

7 files changed

+2010
-1639
lines changed

7 files changed

+2010
-1639
lines changed

Diff for: package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
},
99
"resolutions": {
1010
"**/@types/node": "18",
11-
"**/nan": "2.20.0"
11+
"**/nan": "2.20.0",
12+
"@vscode/vsce": "2.25.0"
1213
},
1314
"devDependencies": {
1415
"@types/chai": "4.3.0",
@@ -115,4 +116,4 @@
115116
"vscode.microsoft-authentication",
116117
"ms-vscode.references-view"
117118
]
118-
}
119+
}

Diff for: packages/dev-container/src/electron-node/devcontainer-contributions/main-container-creation-contributions.ts

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ export class ImageFileContribution implements ContainerCreationContribution {
4040
await new Promise<void>((res, rej) => api.pull(containerConfig.image, {}, (err, stream) => {
4141
if (err) {
4242
rej(err);
43+
} else if (stream === undefined) {
44+
rej('Stream is undefined');
4345
} else {
4446
api.modem.followProgress(stream, (error, output) => error ?
4547
rej(error) :

Diff for: packages/scm/src/browser/scm-commit-widget.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,10 @@ export class ScmCommitWidget extends ReactWidget implements StatefulWidget {
142142
onChange={this.setInputValue}
143143
ref={this.inputRef}
144144
rows={1}
145-
maxRows={6} /* from VS Code */>
145+
maxRows={6} /* from VS Code */
146+
onPointerEnterCapture={undefined}
147+
onPointerLeaveCapture={undefined}
148+
>
146149
</TextareaAutosize>;
147150
return <div className={ScmCommitWidget.Styles.INPUT_MESSAGE_CONTAINER}>
148151
{textArea}

Diff for: packages/search-in-workspace/src/browser/components/search-in-workspace-textarea.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ export class SearchInWorkspaceTextArea extends React.Component<TextareaAttribute
146146
ref={this.textarea}
147147
rows={1}
148148
spellCheck={false}
149+
onPointerEnterCapture={undefined}
150+
onPointerLeaveCapture={undefined}
149151
>
150152
</TextareaAutosize>
151153
);

Diff for: sample-plugins/sample-namespace/plugin-a/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"version": "1.53.0",
55
"main": "extension.js",
66
"license": "EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0",
7+
"publisher": "sample-publisher",
78
"repository": {
89
"type": "git",
910
"url": "https://github.com/eclipse-theia/theia.git"
@@ -29,4 +30,4 @@
2930
}
3031
]
3132
}
32-
}
33+
}

Diff for: sample-plugins/sample-namespace/plugin-b/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"version": "1.53.0",
55
"main": "extension.js",
66
"license": "EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0",
7+
"publisher": "sample-publisher",
78
"repository": {
89
"type": "git",
910
"url": "https://github.com/eclipse-theia/theia.git"
@@ -29,4 +30,4 @@
2930
}
3031
]
3132
}
32-
}
33+
}

Diff for: yarn.lock

+1,995-1,634
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)