Skip to content

Commit

Permalink
Update to Theia 1.43.0
Browse files Browse the repository at this point in the history
* Upgrade dependencies
* Update jenkins job for windows to ensure that we download the correct version of node-gyp

Contributed on behalf of STMicroelectronics
  • Loading branch information
tortmayr committed Oct 30, 2023
1 parent c70b99f commit 1947f37
Show file tree
Hide file tree
Showing 8 changed files with 536 additions and 523 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ spec:
steps {
script {
sh "npm config set msvs_version 2017"
sh "npx node-gyp install 14.20.0"
sh "npx node-gyp@9.4.0 install 14.20.0"

// analyze memory usage
bat "wmic ComputerSystem get TotalPhysicalMemory"
Expand Down
84 changes: 42 additions & 42 deletions applications/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "blueprint-browser-app",
"description": "Eclipse Theia blueprint browser product",
"productName": "Theia Blueprint",
"version": "1.42.1",
"version": "1.43.0",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"author": "Eclipse Theia <theia-dev@eclipse.org>",
"homepage": "https://github.com/eclipse-theia/theia-blueprint#readme",
Expand Down Expand Up @@ -44,50 +44,50 @@
}
},
"dependencies": {
"@theia/bulk-edit": "1.42.1",
"@theia/callhierarchy": "1.42.1",
"@theia/console": "1.42.1",
"@theia/core": "1.42.1",
"@theia/debug": "1.42.1",
"@theia/editor": "1.42.1",
"@theia/editor-preview": "1.42.1",
"@theia/external-terminal": "1.42.1",
"@theia/file-search": "1.42.1",
"@theia/filesystem": "1.42.1",
"@theia/getting-started": "1.42.1",
"@theia/keymaps": "1.42.1",
"@theia/markers": "1.42.1",
"@theia/memory-inspector": "1.42.1",
"@theia/messages": "1.42.1",
"@theia/metrics": "1.42.1",
"@theia/mini-browser": "1.42.1",
"@theia/monaco": "1.42.1",
"@theia/navigator": "1.42.1",
"@theia/outline-view": "1.42.1",
"@theia/output": "1.42.1",
"@theia/plugin-dev": "1.42.1",
"@theia/plugin-ext": "1.42.1",
"@theia/plugin-ext-vscode": "1.42.1",
"@theia/preferences": "1.42.1",
"@theia/process": "1.42.1",
"@theia/property-view": "1.42.1",
"@theia/scm": "1.42.1",
"@theia/search-in-workspace": "1.42.1",
"@theia/secondary-window": "1.42.1",
"@theia/task": "1.42.1",
"@theia/terminal": "1.42.1",
"@theia/timeline": "1.42.1",
"@theia/toolbar": "1.42.1",
"@theia/typehierarchy": "1.42.1",
"@theia/userstorage": "1.42.1",
"@theia/variable-resolver": "1.42.1",
"@theia/vsx-registry": "1.42.1",
"@theia/workspace": "1.42.1",
"@theia/bulk-edit": "1.43.0",
"@theia/callhierarchy": "1.43.0",
"@theia/console": "1.43.0",
"@theia/core": "1.43.0",
"@theia/debug": "1.43.0",
"@theia/editor": "1.43.0",
"@theia/editor-preview": "1.43.0",
"@theia/external-terminal": "1.43.0",
"@theia/file-search": "1.43.0",
"@theia/filesystem": "1.43.0",
"@theia/getting-started": "1.43.0",
"@theia/keymaps": "1.43.0",
"@theia/markers": "1.43.0",
"@theia/memory-inspector": "1.43.0",
"@theia/messages": "1.43.0",
"@theia/metrics": "1.43.0",
"@theia/mini-browser": "1.43.0",
"@theia/monaco": "1.43.0",
"@theia/navigator": "1.43.0",
"@theia/outline-view": "1.43.0",
"@theia/output": "1.43.0",
"@theia/plugin-dev": "1.43.0",
"@theia/plugin-ext": "1.43.0",
"@theia/plugin-ext-vscode": "1.43.0",
"@theia/preferences": "1.43.0",
"@theia/process": "1.43.0",
"@theia/property-view": "1.43.0",
"@theia/scm": "1.43.0",
"@theia/search-in-workspace": "1.43.0",
"@theia/secondary-window": "1.43.0",
"@theia/task": "1.43.0",
"@theia/terminal": "1.43.0",
"@theia/timeline": "1.43.0",
"@theia/toolbar": "1.43.0",
"@theia/typehierarchy": "1.43.0",
"@theia/userstorage": "1.43.0",
"@theia/variable-resolver": "1.43.0",
"@theia/vsx-registry": "1.43.0",
"@theia/workspace": "1.43.0",
"fs-extra": "^9.0.1",
"blueprint-product-ext": "1.42.1"
"blueprint-product-ext": "1.43.0"
},
"devDependencies": {
"@theia/cli": "1.42.1"
"@theia/cli": "1.43.0"
},
"scripts": {
"clean": "theia clean && rimraf node_modules",
Expand Down
92 changes: 46 additions & 46 deletions applications/electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "blueprint-electron-app",
"description": "Eclipse Theia blueprint product",
"productName": "Theia Blueprint",
"version": "1.42.1",
"version": "1.43.0",
"main": "scripts/theia-electron-main.js",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"author": "Eclipse Theia <theia-dev@eclipse.org>",
Expand Down Expand Up @@ -46,61 +46,61 @@
}
},
"dependencies": {
"@theia/bulk-edit": "1.42.1",
"@theia/callhierarchy": "1.42.1",
"@theia/console": "1.42.1",
"@theia/core": "1.42.1",
"@theia/debug": "1.42.1",
"@theia/editor": "1.42.1",
"@theia/editor-preview": "1.42.1",
"@theia/electron": "1.42.1",
"@theia/external-terminal": "1.42.1",
"@theia/file-search": "1.42.1",
"@theia/filesystem": "1.42.1",
"@theia/getting-started": "1.42.1",
"@theia/keymaps": "1.42.1",
"@theia/markers": "1.42.1",
"@theia/memory-inspector": "1.42.1",
"@theia/messages": "1.42.1",
"@theia/metrics": "1.42.1",
"@theia/mini-browser": "1.42.1",
"@theia/monaco": "1.42.1",
"@theia/navigator": "1.42.1",
"@theia/outline-view": "1.42.1",
"@theia/output": "1.42.1",
"@theia/plugin-dev": "1.42.1",
"@theia/plugin-ext": "1.42.1",
"@theia/plugin-ext-vscode": "1.42.1",
"@theia/preferences": "1.42.1",
"@theia/process": "1.42.1",
"@theia/property-view": "1.42.1",
"@theia/secondary-window": "1.42.1",
"@theia/scm": "1.42.1",
"@theia/search-in-workspace": "1.42.1",
"@theia/task": "1.42.1",
"@theia/terminal": "1.42.1",
"@theia/timeline": "1.42.1",
"@theia/toolbar": "1.42.1",
"@theia/typehierarchy": "1.42.1",
"@theia/userstorage": "1.42.1",
"@theia/variable-resolver": "1.42.1",
"@theia/vsx-registry": "1.42.1",
"@theia/workspace": "1.42.1",
"@theia/bulk-edit": "1.43.0",
"@theia/callhierarchy": "1.43.0",
"@theia/console": "1.43.0",
"@theia/core": "1.43.0",
"@theia/debug": "1.43.0",
"@theia/editor": "1.43.0",
"@theia/editor-preview": "1.43.0",
"@theia/electron": "1.43.0",
"@theia/external-terminal": "1.43.0",
"@theia/file-search": "1.43.0",
"@theia/filesystem": "1.43.0",
"@theia/getting-started": "1.43.0",
"@theia/keymaps": "1.43.0",
"@theia/markers": "1.43.0",
"@theia/memory-inspector": "1.43.0",
"@theia/messages": "1.43.0",
"@theia/metrics": "1.43.0",
"@theia/mini-browser": "1.43.0",
"@theia/monaco": "1.43.0",
"@theia/navigator": "1.43.0",
"@theia/outline-view": "1.43.0",
"@theia/output": "1.43.0",
"@theia/plugin-dev": "1.43.0",
"@theia/plugin-ext": "1.43.0",
"@theia/plugin-ext-vscode": "1.43.0",
"@theia/preferences": "1.43.0",
"@theia/process": "1.43.0",
"@theia/property-view": "1.43.0",
"@theia/secondary-window": "1.43.0",
"@theia/scm": "1.43.0",
"@theia/search-in-workspace": "1.43.0",
"@theia/task": "1.43.0",
"@theia/terminal": "1.43.0",
"@theia/timeline": "1.43.0",
"@theia/toolbar": "1.43.0",
"@theia/typehierarchy": "1.43.0",
"@theia/userstorage": "1.43.0",
"@theia/variable-resolver": "1.43.0",
"@theia/vsx-registry": "1.43.0",
"@theia/workspace": "1.43.0",
"fs-extra": "^9.0.1",
"blueprint-updater-ext": "1.42.1",
"blueprint-product-ext": "1.42.1",
"blueprint-launcher-ext": "1.42.1"
"blueprint-updater-ext": "1.43.0",
"blueprint-product-ext": "1.43.0",
"blueprint-launcher-ext": "1.43.0"
},
"devDependencies": {
"@theia/cli": "1.42.1",
"@theia/cli": "1.43.0",
"@types/js-yaml": "^3.12.0",
"@types/yargs": "17.0.7",
"@wdio/cli": "^6.10.2",
"@wdio/local-runner": "^6.10.2",
"@wdio/mocha-framework": "^6.8.0",
"@wdio/spec-reporter": "^6.8.1",
"app-builder-lib": "22.10.5",
"chai": "^4.2.0",
"chai": "^4.3.10",
"electron": "^23.2.4",
"electron-builder": "23.6.0",
"electron-chromedriver": "9.0.0",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"version": "1.42.1",
"version": "1.43.0",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"author": "Rob Moran <github@thegecko.org>",
"homepage": "https://github.com/eclipse-theia/theia-blueprint#readme",
Expand All @@ -16,7 +16,7 @@
"node": ">=12.14.1"
},
"devDependencies": {
"@theia/cli": "1.42.1",
"@theia/cli": "1.43.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
Expand Down
4 changes: 2 additions & 2 deletions theia-extensions/launcher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blueprint-launcher-ext",
"version": "1.42.1",
"version": "1.43.0",
"keywords": [
"theia-extension"
],
Expand All @@ -18,7 +18,7 @@
"src"
],
"dependencies": {
"@theia/core": "1.42.1",
"@theia/core": "1.43.0",
"body-parser": "^1.17.2",
"fs-extra": "^4.0.2",
"@vscode/sudo-prompt": "9.3.1"
Expand Down
10 changes: 5 additions & 5 deletions theia-extensions/product/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"private": true,
"name": "blueprint-product-ext",
"version": "1.42.1",
"version": "1.43.0",
"description": "Eclipse Theia Blueprint Product Branding",
"dependencies": {
"@theia/core": "1.42.1",
"@theia/getting-started": "1.42.1",
"@theia/vsx-registry": "1.42.1",
"@theia/workspace": "1.42.1",
"@theia/core": "1.43.0",
"@theia/getting-started": "1.43.0",
"@theia/vsx-registry": "1.43.0",
"@theia/workspace": "1.43.0",
"inversify": "^6.0.1"
},
"devDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions theia-extensions/updater/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"private": true,
"name": "blueprint-updater-ext",
"version": "1.42.1",
"version": "1.43.0",
"description": "Eclipse Theia Blueprint Updater",
"dependencies": {
"@theia/core": "1.42.1",
"@theia/output": "1.42.1",
"@theia/preferences": "1.42.1",
"@theia/core": "1.43.0",
"@theia/output": "1.43.0",
"@theia/preferences": "1.43.0",
"electron-log": "^4.3.0",
"electron-updater": "5.3.0",
"fs-extra": "^10.0.0",
Expand Down
Loading

0 comments on commit 1947f37

Please sign in to comment.