Skip to content

Commit

Permalink
Perform yarn upgrade
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jfaltermeier committed Aug 29, 2024
1 parent ad3dd29 commit d810836
Show file tree
Hide file tree
Showing 6 changed files with 2,082 additions and 1,665 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ export class ImageFileContribution implements ContainerCreationContribution {
await new Promise<void>((res, rej) => api.pull(containerConfig.image, {}, (err, stream) => {
if (err) {
rej(err);
} else if (stream === undefined) {
rej('Stream is undefined');
} else {
api.modem.followProgress(stream, (error, output) => error ?
rej(error) :
Expand Down
5 changes: 4 additions & 1 deletion packages/scm/src/browser/scm-commit-widget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,10 @@ export class ScmCommitWidget extends ReactWidget implements StatefulWidget {
onChange={this.setInputValue}
ref={this.inputRef}
rows={1}
maxRows={6} /* from VS Code */>
maxRows={6} /* from VS Code */
onPointerEnterCapture={undefined}
onPointerLeaveCapture={undefined}
>
</TextareaAutosize>;
return <div className={ScmCommitWidget.Styles.INPUT_MESSAGE_CONTAINER}>
{textArea}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ export class SearchInWorkspaceTextArea extends React.Component<TextareaAttribute
ref={this.textarea}
rows={1}
spellCheck={false}
onPointerEnterCapture={undefined}
onPointerLeaveCapture={undefined}
>
</TextareaAutosize>
);
Expand Down
3 changes: 2 additions & 1 deletion sample-plugins/sample-namespace/plugin-a/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"version": "1.52.0",
"main": "extension.js",
"license": "EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0",
"publisher": "sample-publisher",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-theia/theia.git"
Expand All @@ -29,4 +30,4 @@
}
]
}
}
}
3 changes: 2 additions & 1 deletion sample-plugins/sample-namespace/plugin-b/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"version": "1.52.0",
"main": "extension.js",
"license": "EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0",
"publisher": "sample-publisher",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-theia/theia.git"
Expand All @@ -29,4 +30,4 @@
}
]
}
}
}
Loading

0 comments on commit d810836

Please sign in to comment.