Skip to content

Commit f6d6da0

Browse files
authored
Perform yarn upgrade (#13748)
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 9ddca02 commit f6d6da0

File tree

7 files changed

+1901
-1620
lines changed

7 files changed

+1901
-1620
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,4 @@
119119
"ms-vscode.references-view",
120120
"ms-python.vscode-pylance"
121121
]
122-
}
122+
}

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

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ export class ImageFileContribution implements ContainerCreationContribution {
4343
await new Promise<void>((res, rej) => api.pull(containerConfig.image, options, (err, stream) => {
4444
if (err) {
4545
rej(err);
46+
} else if (stream === undefined) {
47+
rej('Stream is undefined');
4648
} else {
4749
api.modem.followProgress(stream, (error, output) => error ?
4850
rej(error) :

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}

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
);

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.56.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+
}

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.56.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+
}

yarn.lock

+1,888-1,616
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)