Skip to content

Commit

Permalink
Theia 1.31.1
Browse files Browse the repository at this point in the history
+ upgrade dependencies
* Update workflow files to node 14
* use python 3.10.8
  • Loading branch information
jfaltermeier committed Nov 3, 2022
1 parent 6c6f21a commit f3fcad9
Show file tree
Hide file tree
Showing 6 changed files with 885 additions and 893 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-2019, ubuntu-18.04, macos-10.15]
node: ['12.x']
node: ['14.x']

runs-on: ${{ matrix.os }}
timeout-minutes: 60
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Use Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: '3.10.8'

- name: Build and package
shell: bash
Expand Down
90 changes: 45 additions & 45 deletions applications/electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "theia-blueprint",
"description": "Eclipse Theia blueprint product",
"productName": "Theia Blueprint",
"version": "1.30.0",
"version": "1.31.1",
"main": "scripts/theia-electron-main.js",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"author": "Eclipse Theia <[email protected]>",
Expand Down Expand Up @@ -42,53 +42,53 @@
}
},
"dependencies": {
"@theia/bulk-edit": "1.30.0",
"@theia/callhierarchy": "1.30.0",
"@theia/console": "1.30.0",
"@theia/core": "1.30.0",
"@theia/debug": "1.30.0",
"@theia/editor": "1.30.0",
"@theia/editor-preview": "1.30.0",
"@theia/electron": "1.30.0",
"@theia/external-terminal": "1.30.0",
"@theia/file-search": "1.30.0",
"@theia/filesystem": "1.30.0",
"@theia/getting-started": "1.30.0",
"@theia/git": "1.30.0",
"@theia/keymaps": "1.30.0",
"@theia/markers": "1.30.0",
"@theia/messages": "1.30.0",
"@theia/memory-inspector": "1.30.0",
"@theia/metrics": "1.30.0",
"@theia/mini-browser": "1.30.0",
"@theia/monaco": "1.30.0",
"@theia/navigator": "1.30.0",
"@theia/outline-view": "1.30.0",
"@theia/output": "1.30.0",
"@theia/plugin-dev": "1.30.0",
"@theia/plugin-ext": "1.30.0",
"@theia/plugin-ext-vscode": "1.30.0",
"@theia/preferences": "1.30.0",
"@theia/process": "1.30.0",
"@theia/property-view": "1.30.0",
"@theia/scm": "1.30.0",
"@theia/scm-extra": "1.30.0",
"@theia/search-in-workspace": "1.30.0",
"@theia/task": "1.30.0",
"@theia/terminal": "1.30.0",
"@theia/timeline": "1.30.0",
"@theia/toolbar": "1.30.0",
"@theia/typehierarchy": "1.30.0",
"@theia/userstorage": "1.30.0",
"@theia/variable-resolver": "1.30.0",
"@theia/vsx-registry": "1.30.0",
"@theia/workspace": "1.30.0",
"@theia/bulk-edit": "1.31.1",
"@theia/callhierarchy": "1.31.1",
"@theia/console": "1.31.1",
"@theia/core": "1.31.1",
"@theia/debug": "1.31.1",
"@theia/editor": "1.31.1",
"@theia/editor-preview": "1.31.1",
"@theia/electron": "1.31.1",
"@theia/external-terminal": "1.31.1",
"@theia/file-search": "1.31.1",
"@theia/filesystem": "1.31.1",
"@theia/getting-started": "1.31.1",
"@theia/git": "1.31.1",
"@theia/keymaps": "1.31.1",
"@theia/markers": "1.31.1",
"@theia/messages": "1.31.1",
"@theia/memory-inspector": "1.31.1",
"@theia/metrics": "1.31.1",
"@theia/mini-browser": "1.31.1",
"@theia/monaco": "1.31.1",
"@theia/navigator": "1.31.1",
"@theia/outline-view": "1.31.1",
"@theia/output": "1.31.1",
"@theia/plugin-dev": "1.31.1",
"@theia/plugin-ext": "1.31.1",
"@theia/plugin-ext-vscode": "1.31.1",
"@theia/preferences": "1.31.1",
"@theia/process": "1.31.1",
"@theia/property-view": "1.31.1",
"@theia/scm": "1.31.1",
"@theia/scm-extra": "1.31.1",
"@theia/search-in-workspace": "1.31.1",
"@theia/task": "1.31.1",
"@theia/terminal": "1.31.1",
"@theia/timeline": "1.31.1",
"@theia/toolbar": "1.31.1",
"@theia/typehierarchy": "1.31.1",
"@theia/userstorage": "1.31.1",
"@theia/variable-resolver": "1.31.1",
"@theia/vsx-registry": "1.31.1",
"@theia/workspace": "1.31.1",
"fs-extra": "^9.0.1",
"theia-blueprint-updater": "1.30.0",
"theia-blueprint-product": "1.30.0"
"theia-blueprint-updater": "1.31.1",
"theia-blueprint-product": "1.31.1"
},
"devDependencies": {
"@theia/cli": "1.30.0",
"@theia/cli": "1.31.1",
"@types/js-yaml": "^3.12.0",
"@types/yargs": "17.0.7",
"@wdio/cli": "^6.10.2",
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.30.0",
"version": "1.31.1",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"author": "Rob Moran <[email protected]>",
"homepage": "https://github.com/eclipse-theia/theia-blueprint#readme",
Expand All @@ -16,7 +16,7 @@
"node": ">=12.14.1"
},
"devDependencies": {
"@theia/cli": "1.30.0",
"@theia/cli": "1.31.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
Expand Down
10 changes: 5 additions & 5 deletions theia-extensions/theia-blueprint-product/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"private": true,
"name": "theia-blueprint-product",
"version": "1.30.0",
"version": "1.31.1",
"description": "Eclipse Theia Blueprint Product Branding",
"dependencies": {
"@theia/core": "1.30.0",
"@theia/getting-started": "1.30.0",
"@theia/vsx-registry": "1.30.0",
"@theia/workspace": "1.30.0",
"@theia/core": "1.31.1",
"@theia/getting-started": "1.31.1",
"@theia/vsx-registry": "1.31.1",
"@theia/workspace": "1.31.1",
"inversify": "^5.1.1"
},
"devDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions theia-extensions/theia-blueprint-updater/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"private": true,
"name": "theia-blueprint-updater",
"version": "1.30.0",
"version": "1.31.1",
"description": "Eclipse Theia Blueprint Updater",
"dependencies": {
"@theia/core": "1.30.0",
"@theia/output": "1.30.0",
"@theia/preferences": "1.30.0",
"@theia/core": "1.31.1",
"@theia/output": "1.31.1",
"@theia/preferences": "1.31.1",
"electron-log": "^4.3.0",
"electron-updater": "4.3.9",
"fs-extra": "^10.0.0",
Expand Down
Loading

0 comments on commit f3fcad9

Please sign in to comment.