Skip to content

Commit

Permalink
Perform yarn upgrade (#13748)
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 authored Dec 11, 2024
1 parent 9ddca02 commit f6d6da0
Show file tree
Hide file tree
Showing 7 changed files with 1,901 additions and 1,620 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,4 @@
"ms-vscode.references-view",
"ms-python.vscode-pylance"
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ export class ImageFileContribution implements ContainerCreationContribution {
await new Promise<void>((res, rej) => api.pull(containerConfig.image, options, (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.56.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.56.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,504 changes: 1,888 additions & 1,616 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit f6d6da0

Please sign in to comment.