diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d8795062..84de5e38c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2019, ubuntu-latest, macos-14] + os: [windows-2019, ubuntu-latest, macos-12] node: ['20.x'] runs-on: ${{ matrix.os }} diff --git a/Jenkinsfile b/Jenkinsfile index 5950ae72b..30ca74bd4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,6 +36,8 @@ pipeline { // THEIA_IDE_JENKINS_RELEASE_DRYRUN = 'true' msvs_version = '2019' GYP_MSVS_VERSION = '2019' + + NODE_OPTIONS = '--max_old_space_size=4096' } stages { stage('Build') { @@ -289,7 +291,6 @@ def buildInstaller(int sleepBetweenRetries) { } sh 'node --version' - sh 'export NODE_OPTIONS=--max_old_space_size=4096' sh 'printenv && yarn cache dir' try { sh(script: buildPackageCmd) @@ -380,7 +381,6 @@ def updateMetadata(String executable, String yaml, String platform, int sleepBet int maxRetry = 4 try { - sh "export NODE_OPTIONS=--max_old_space_size=4096" // make sure the npm dependencies are available to the update scripts sh "yarn install --force" sh "yarn electron update:blockmap -e ${executable}" diff --git a/applications/browser/package.json b/applications/browser/package.json index f54b3591d..81ad3b90c 100644 --- a/applications/browser/package.json +++ b/applications/browser/package.json @@ -3,7 +3,7 @@ "name": "theia-ide-browser-app", "description": "Eclipse Theia IDE browser product", "productName": "Theia IDE", - "version": "1.52.0", + "version": "1.53.0", "license": "MIT", "author": "Eclipse Theia ", "homepage": "https://github.com/eclipse-theia/theia-blueprint#readme", @@ -44,52 +44,53 @@ } }, "dependencies": { - "@theia/bulk-edit": "1.52.0", - "@theia/callhierarchy": "1.52.0", - "@theia/console": "1.52.0", - "@theia/core": "1.52.0", - "@theia/debug": "1.52.0", - "@theia/dev-container": "1.52.0", - "@theia/editor": "1.52.0", - "@theia/editor-preview": "1.52.0", - "@theia/external-terminal": "1.52.0", - "@theia/file-search": "1.52.0", - "@theia/filesystem": "1.52.0", - "@theia/getting-started": "1.52.0", - "@theia/keymaps": "1.52.0", - "@theia/markers": "1.52.0", - "@theia/memory-inspector": "1.52.0", - "@theia/messages": "1.52.0", - "@theia/metrics": "1.52.0", - "@theia/mini-browser": "1.52.0", - "@theia/monaco": "1.52.0", - "@theia/navigator": "1.52.0", - "@theia/outline-view": "1.52.0", - "@theia/output": "1.52.0", - "@theia/plugin-dev": "1.52.0", - "@theia/plugin-ext": "1.52.0", - "@theia/plugin-ext-vscode": "1.52.0", - "@theia/preferences": "1.52.0", - "@theia/process": "1.52.0", - "@theia/property-view": "1.52.0", - "@theia/remote": "1.52.0", - "@theia/scm": "1.52.0", - "@theia/search-in-workspace": "1.52.0", - "@theia/secondary-window": "1.52.0", - "@theia/task": "1.52.0", - "@theia/terminal": "1.52.0", - "@theia/timeline": "1.52.0", - "@theia/toolbar": "1.52.0", - "@theia/typehierarchy": "1.52.0", - "@theia/userstorage": "1.52.0", - "@theia/variable-resolver": "1.52.0", - "@theia/vsx-registry": "1.52.0", - "@theia/workspace": "1.52.0", + "@theia/bulk-edit": "1.53.0", + "@theia/callhierarchy": "1.53.0", + "@theia/collaboration": "1.53.0", + "@theia/console": "1.53.0", + "@theia/core": "1.53.0", + "@theia/debug": "1.53.0", + "@theia/dev-container": "1.53.0", + "@theia/editor": "1.53.0", + "@theia/editor-preview": "1.53.0", + "@theia/external-terminal": "1.53.0", + "@theia/file-search": "1.53.0", + "@theia/filesystem": "1.53.0", + "@theia/getting-started": "1.53.0", + "@theia/keymaps": "1.53.0", + "@theia/markers": "1.53.0", + "@theia/memory-inspector": "1.53.0", + "@theia/messages": "1.53.0", + "@theia/metrics": "1.53.0", + "@theia/mini-browser": "1.53.0", + "@theia/monaco": "1.53.0", + "@theia/navigator": "1.53.0", + "@theia/outline-view": "1.53.0", + "@theia/output": "1.53.0", + "@theia/plugin-dev": "1.53.0", + "@theia/plugin-ext": "1.53.0", + "@theia/plugin-ext-vscode": "1.53.0", + "@theia/preferences": "1.53.0", + "@theia/process": "1.53.0", + "@theia/property-view": "1.53.0", + "@theia/remote": "1.53.0", + "@theia/scm": "1.53.0", + "@theia/search-in-workspace": "1.53.0", + "@theia/secondary-window": "1.53.0", + "@theia/task": "1.53.0", + "@theia/terminal": "1.53.0", + "@theia/timeline": "1.53.0", + "@theia/toolbar": "1.53.0", + "@theia/typehierarchy": "1.53.0", + "@theia/userstorage": "1.53.0", + "@theia/variable-resolver": "1.53.0", + "@theia/vsx-registry": "1.53.0", + "@theia/workspace": "1.53.0", "fs-extra": "^9.0.1", - "theia-ide-product-ext": "1.52.0" + "theia-ide-product-ext": "1.53.0" }, "devDependencies": { - "@theia/cli": "1.52.0" + "@theia/cli": "1.53.0" }, "scripts": { "clean": "theia clean && rimraf node_modules", diff --git a/applications/electron/electron-builder.yml b/applications/electron/electron-builder.yml index cbeab07a4..780b5fad1 100644 --- a/applications/electron/electron-builder.yml +++ b/applications/electron/electron-builder.yml @@ -2,7 +2,7 @@ appId: eclipse.theia productName: TheiaIDE copyright: Copyright © 2020-2023 Eclipse Foundation, Inc electronDist: ../../node_modules/electron/dist -electronVersion: 28.3.3 +electronVersion: 30.4.0 # Although it is generally not recommended to disable asar, it is required for Theia. # Enabling this leads to: process ERROR Error: spawn ENOTDIR # because binaries can not be executed from the asar archive. diff --git a/applications/electron/package.json b/applications/electron/package.json index aff9ee2a8..6827602ab 100644 --- a/applications/electron/package.json +++ b/applications/electron/package.json @@ -3,7 +3,7 @@ "name": "theia-ide-electron-app", "description": "Eclipse Theia IDE product", "productName": "Theia IDE", - "version": "1.52.0", + "version": "1.53.0", "main": "scripts/theia-electron-main.js", "license": "MIT", "author": "Eclipse Theia ", @@ -53,55 +53,56 @@ } }, "dependencies": { - "@theia/bulk-edit": "1.52.0", - "@theia/callhierarchy": "1.52.0", - "@theia/console": "1.52.0", - "@theia/core": "1.52.0", - "@theia/debug": "1.52.0", - "@theia/dev-container": "1.52.0", - "@theia/editor": "1.52.0", - "@theia/editor-preview": "1.52.0", - "@theia/electron": "1.52.0", - "@theia/external-terminal": "1.52.0", - "@theia/file-search": "1.52.0", - "@theia/filesystem": "1.52.0", - "@theia/getting-started": "1.52.0", - "@theia/keymaps": "1.52.0", - "@theia/markers": "1.52.0", - "@theia/memory-inspector": "1.52.0", - "@theia/messages": "1.52.0", - "@theia/metrics": "1.52.0", - "@theia/mini-browser": "1.52.0", - "@theia/monaco": "1.52.0", - "@theia/navigator": "1.52.0", - "@theia/outline-view": "1.52.0", - "@theia/output": "1.52.0", - "@theia/plugin-dev": "1.52.0", - "@theia/plugin-ext": "1.52.0", - "@theia/plugin-ext-vscode": "1.52.0", - "@theia/preferences": "1.52.0", - "@theia/process": "1.52.0", - "@theia/property-view": "1.52.0", - "@theia/remote": "1.52.0", - "@theia/scm": "1.52.0", - "@theia/search-in-workspace": "1.52.0", - "@theia/secondary-window": "1.52.0", - "@theia/task": "1.52.0", - "@theia/terminal": "1.52.0", - "@theia/timeline": "1.52.0", - "@theia/toolbar": "1.52.0", - "@theia/typehierarchy": "1.52.0", - "@theia/userstorage": "1.52.0", - "@theia/variable-resolver": "1.52.0", - "@theia/vsx-registry": "1.52.0", - "@theia/workspace": "1.52.0", + "@theia/bulk-edit": "1.53.0", + "@theia/callhierarchy": "1.53.0", + "@theia/collaboration": "1.53.0", + "@theia/console": "1.53.0", + "@theia/core": "1.53.0", + "@theia/debug": "1.53.0", + "@theia/dev-container": "1.53.0", + "@theia/editor": "1.53.0", + "@theia/editor-preview": "1.53.0", + "@theia/electron": "1.53.0", + "@theia/external-terminal": "1.53.0", + "@theia/file-search": "1.53.0", + "@theia/filesystem": "1.53.0", + "@theia/getting-started": "1.53.0", + "@theia/keymaps": "1.53.0", + "@theia/markers": "1.53.0", + "@theia/memory-inspector": "1.53.0", + "@theia/messages": "1.53.0", + "@theia/metrics": "1.53.0", + "@theia/mini-browser": "1.53.0", + "@theia/monaco": "1.53.0", + "@theia/navigator": "1.53.0", + "@theia/outline-view": "1.53.0", + "@theia/output": "1.53.0", + "@theia/plugin-dev": "1.53.0", + "@theia/plugin-ext": "1.53.0", + "@theia/plugin-ext-vscode": "1.53.0", + "@theia/preferences": "1.53.0", + "@theia/process": "1.53.0", + "@theia/property-view": "1.53.0", + "@theia/remote": "1.53.0", + "@theia/scm": "1.53.0", + "@theia/search-in-workspace": "1.53.0", + "@theia/secondary-window": "1.53.0", + "@theia/task": "1.53.0", + "@theia/terminal": "1.53.0", + "@theia/timeline": "1.53.0", + "@theia/toolbar": "1.53.0", + "@theia/typehierarchy": "1.53.0", + "@theia/userstorage": "1.53.0", + "@theia/variable-resolver": "1.53.0", + "@theia/vsx-registry": "1.53.0", + "@theia/workspace": "1.53.0", "fs-extra": "^9.0.1", - "theia-ide-launcher-ext": "1.52.0", - "theia-ide-product-ext": "1.52.0", - "theia-ide-updater-ext": "1.52.0" + "theia-ide-launcher-ext": "1.53.0", + "theia-ide-product-ext": "1.53.0", + "theia-ide-updater-ext": "1.53.0" }, "devDependencies": { - "@theia/cli": "1.52.0", + "@theia/cli": "1.53.0", "@types/js-yaml": "^3.12.0", "@types/yargs": "17.0.7", "@wdio/cli": "^6.10.2", @@ -111,7 +112,7 @@ "app-builder-lib": "24.13.2", "chai": "^4.3.10", "concurrently": "^3.5.0", - "electron": "^28.2.8", + "electron": "^30.1.2", "electron-builder": "24.13.2", "electron-chromedriver": "^28.2.8", "electron-mocha": "^12.3.0", @@ -145,4 +146,4 @@ "lint": "eslint --ext js,jsx,ts,tsx scripts && eslint --ext js,jsx,ts,tsx test", "lint:fix": "eslint --ext js,jsx,ts,tsx scripts --fix && eslint --ext js,jsx,ts,tsx test -fix" } -} \ No newline at end of file +} diff --git a/lerna.json b/lerna.json index c4f1c3949..81f95ef40 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "4.0.0", - "version": "1.52.0", + "version": "1.53.0", "useWorkspaces": true, "npmClient": "yarn", "command": { diff --git a/next/Jenkinsfile b/next/Jenkinsfile index 589d003e2..8153297cf 100644 --- a/next/Jenkinsfile +++ b/next/Jenkinsfile @@ -12,6 +12,9 @@ pipeline { timeout(time: 5, unit: 'HOURS') disableConcurrentBuilds() } + environment { + NODE_OPTIONS = '--max_old_space_size=4096' + } stages { stage('Build') { parallel { @@ -137,8 +140,6 @@ def buildNext(boolean runTests, int sleepBetweenRetries) { sh "git merge FETCH_HEAD" sh "node --version" - sh "export NODE_OPTIONS=--max_old_space_size=4096" - // regular build sh "printenv && yarn cache dir" diff --git a/package.json b/package.json index fd9fb37ef..ebc844a41 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "1.52.0", + "version": "1.53.0", "license": "MIT", "author": "Rob Moran ", "homepage": "https://github.com/eclipse-theia/theia-blueprint#readme", @@ -17,7 +17,7 @@ }, "devDependencies": { "@eclipse-dash/nodejs-wrapper": "^0.0.1", - "@theia/cli": "1.52.0", + "@theia/cli": "1.53.0", "@typescript-eslint/eslint-plugin": "^4.25.0", "@typescript-eslint/eslint-plugin-tslint": "^4.25.0", "@typescript-eslint/parser": "^4.25.0", @@ -81,7 +81,7 @@ "@types/puppeteer": "^5.4.0", "@yarnpkg/parsers": "3.0.0-rc.44", "**/multer": "1.4.4-lts.1", - "**/nan": "2.18.0", + "**/nan": "2.20.0", "**/cpu-features": "0.0.9" } } \ No newline at end of file diff --git a/theia-extensions/launcher/package.json b/theia-extensions/launcher/package.json index 43a29f61c..c8dc14cf6 100644 --- a/theia-extensions/launcher/package.json +++ b/theia-extensions/launcher/package.json @@ -1,6 +1,6 @@ { "name": "theia-ide-launcher-ext", - "version": "1.52.0", + "version": "1.53.0", "keywords": [ "theia-extension" ], @@ -18,7 +18,7 @@ "src" ], "dependencies": { - "@theia/core": "1.52.0", + "@theia/core": "1.53.0", "@vscode/sudo-prompt": "9.3.1", "body-parser": "^1.17.2", "fs-extra": "^4.0.2" diff --git a/theia-extensions/product/package.json b/theia-extensions/product/package.json index d941cbfd3..0c25dda29 100644 --- a/theia-extensions/product/package.json +++ b/theia-extensions/product/package.json @@ -1,13 +1,13 @@ { "private": true, "name": "theia-ide-product-ext", - "version": "1.52.0", + "version": "1.53.0", "description": "Eclipse Theia IDE Product Branding", "dependencies": { - "@theia/core": "1.52.0", - "@theia/getting-started": "1.52.0", - "@theia/vsx-registry": "1.52.0", - "@theia/workspace": "1.52.0", + "@theia/core": "1.53.0", + "@theia/getting-started": "1.53.0", + "@theia/vsx-registry": "1.53.0", + "@theia/workspace": "1.53.0", "inversify": "^6.0.1" }, "devDependencies": { diff --git a/theia-extensions/updater/package.json b/theia-extensions/updater/package.json index d3396ece0..f16d5c377 100644 --- a/theia-extensions/updater/package.json +++ b/theia-extensions/updater/package.json @@ -1,12 +1,12 @@ { "private": true, "name": "theia-ide-updater-ext", - "version": "1.52.0", + "version": "1.53.0", "description": "Eclipse Theia IDE Updater", "dependencies": { - "@theia/core": "1.52.0", - "@theia/output": "1.52.0", - "@theia/preferences": "1.52.0", + "@theia/core": "1.53.0", + "@theia/output": "1.53.0", + "@theia/preferences": "1.53.0", "electron-log": "^4.3.0", "electron-updater": "5.3.0", "fs-extra": "^10.0.0", diff --git a/yarn.lock b/yarn.lock index ffb1703fb..5b4aff4db 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1908,18 +1908,18 @@ dependencies: defer-to-connect "^2.0.0" -"@theia/application-manager@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/application-manager/-/application-manager-1.52.0.tgz#417df4632178de05019b2649c4e4f33bf73d8b98" - integrity sha512-COyof6s28zZUvwvRmFSPs25G7ZeU/3Jj7X3pv37C2IwTF9dkYx8+IkvMzP7Z/2EedEcRkmITIra2QGoL9xoL/g== +"@theia/application-manager@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/application-manager/-/application-manager-1.53.0.tgz#47e53605032d952ffc231559e0646f5f40060424" + integrity sha512-adprTSPQa0tQwXFm2y1sM4M7AsOTdNqsyhny7H77GY5517Hqx0m6ghuQmk0GKKAdZautfsWqHVASAOUPyVWGDg== dependencies: "@babel/core" "^7.10.0" "@babel/plugin-transform-classes" "^7.10.0" "@babel/plugin-transform-runtime" "^7.10.0" "@babel/preset-env" "^7.10.0" - "@theia/application-package" "1.52.0" - "@theia/ffmpeg" "1.52.0" - "@theia/native-webpack-plugin" "1.52.0" + "@theia/application-package" "1.53.0" + "@theia/ffmpeg" "1.53.0" + "@theia/native-webpack-plugin" "1.53.0" "@types/fs-extra" "^4.0.2" "@types/semver" "^7.5.0" babel-loader "^8.2.2" @@ -1949,12 +1949,12 @@ worker-loader "^3.0.8" yargs "^15.3.1" -"@theia/application-package@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/application-package/-/application-package-1.52.0.tgz#2605629bef51482f975f0ff07dbc82348f105354" - integrity sha512-y1WDJgIjtsq2dVi6zmepXyMe5Y2taonCI74igWhWu06xYFrA1loQLjdfO+Ja3gqeS8oS5+IqYr0fmFMzHR0Flg== +"@theia/application-package@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/application-package/-/application-package-1.53.0.tgz#b3bae7ef9b23dccfa015e4aba4ee66d20e9b71a4" + integrity sha512-Pc2JqNVM+wPZB9esNBNzePqdN6TF2tjJGzTdwUdN8roeJWq5gf6y64h/+EHQ/U4h+ORD/yrZ/kq5nWR8lU2cUw== dependencies: - "@theia/request" "1.52.0" + "@theia/request" "1.53.0" "@types/fs-extra" "^4.0.2" "@types/semver" "^7.5.0" "@types/write-json-file" "^2.2.1" @@ -1967,40 +1967,40 @@ tslib "^2.6.2" write-json-file "^2.2.0" -"@theia/bulk-edit@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/bulk-edit/-/bulk-edit-1.52.0.tgz#6ccea06404d5c1695f748e0f58518b37828967d9" - integrity sha512-ZvCiCjnnPNQ7K7wP7oUswHfEMdF9VhgrDaJj+YIjuwzS1woKFXMy4A7KgOOK4i4X2bcWgUYYw/z/6vtnVz5UBg== +"@theia/bulk-edit@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/bulk-edit/-/bulk-edit-1.53.0.tgz#208a8356c05da03b22f55405150df8bde67783ec" + integrity sha512-AcQaLJd5wgrcLGkdVS6+XMx/gEqvNjDyx+IHtGLIOat1U6WIs0RSENUCssFneegNt8vycyDFEtsRZoU7GtC3bQ== dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/monaco" "1.52.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/monaco" "1.53.0" "@theia/monaco-editor-core" "1.83.101" - "@theia/workspace" "1.52.0" + "@theia/workspace" "1.53.0" tslib "^2.6.2" -"@theia/callhierarchy@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/callhierarchy/-/callhierarchy-1.52.0.tgz#5d66a373887f969ae59e10e2750b156491bea9f2" - integrity sha512-iXWy5isRgB94vhFy66lR5/2yzqlUHphQvJ/oqx0xcsSTSymIeQKUHBlUzlxz6Pt6kXguTBbW2JEYXHleQI3kJg== +"@theia/callhierarchy@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/callhierarchy/-/callhierarchy-1.53.0.tgz#8e7520782e2536245e1588bb9190a29004644e76" + integrity sha512-WFgQdRqYmDZHRNDnfu81RSVzdUr9cEYrpe/IKPotGFkl3liOJuOBR/sYNveam9Mu5dotqnMzrjongkORPn8Jbg== dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" ts-md5 "^1.2.2" tslib "^2.6.2" -"@theia/cli@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/cli/-/cli-1.52.0.tgz#d0f6cf5a2565f1c00030c1e983a30a65ea41db68" - integrity sha512-72ypn0bgwN2h7GHsJ1oPTL6HrOkCB0sgvkPIuSA8+nStm+Yipn6mb7wRJT7BRYOpa4r92jaa6WPhSmWChij3qw== - dependencies: - "@theia/application-manager" "1.52.0" - "@theia/application-package" "1.52.0" - "@theia/ffmpeg" "1.52.0" - "@theia/localization-manager" "1.52.0" - "@theia/ovsx-client" "1.52.0" - "@theia/request" "1.52.0" +"@theia/cli@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/cli/-/cli-1.53.0.tgz#7eb8fb5e0a3f4c8417383d30eec6126c75ee3bc0" + integrity sha512-KaY2lgAZVaiQGflFYN0MrmQOG8dW3/cSpo5x1k2yrosF+B0NxIUhv6Y9xZcbjiMu73w9RS7hL6FwWY3WnECxCw== + dependencies: + "@theia/application-manager" "1.53.0" + "@theia/application-package" "1.53.0" + "@theia/ffmpeg" "1.53.0" + "@theia/localization-manager" "1.53.0" + "@theia/ovsx-client" "1.53.0" + "@theia/request" "1.53.0" "@types/chai" "^4.2.7" "@types/mocha" "^10.0.0" "@types/node-fetch" "^2.5.7" @@ -2021,21 +2021,39 @@ tslib "^2.6.2" yargs "^15.3.1" -"@theia/console@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/console/-/console-1.52.0.tgz#66322fe600c4eb7a0fcdc393d3973263be77f122" - integrity sha512-KaGCw6+brKF/jj/Muz8u0T3D+K/RfTKXOIgUooyFTP5mf7JKtqqoY66B6jnT1Je7esG1670ONsrcGvwC8pBu7w== +"@theia/collaboration@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/collaboration/-/collaboration-1.53.0.tgz#e0b48815291fd1fb2c80350134093679f77ee3b2" + integrity sha512-2hWKO9t2EH0wl/HeUtY4f9NERGqu47M6+dJ/JYnpxhIG0pU+W+TK3YucXDkHyUVe63B53on+iFqz3bMgJFYgzg== dependencies: - "@theia/core" "1.52.0" - "@theia/monaco" "1.52.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/monaco" "1.53.0" + "@theia/monaco-editor-core" "1.83.101" + "@theia/workspace" "1.53.0" + lib0 "^0.2.52" + open-collaboration-protocol "0.2.0" + open-collaboration-yjs "0.2.0" + socket.io-client "^4.5.3" + y-protocols "^1.0.6" + yjs "^13.6.7" + +"@theia/console@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/console/-/console-1.53.0.tgz#edeccf55fbadcd40d17929d177e0c3341e83ae36" + integrity sha512-+fyzUfbloAfbsbkEwRBdrhO6MAsA/6HV733Uz3LBT8TQVvUGW9oA46hwmDEHYtrSnrIWjde6N4sp/6vbQpW4mA== + dependencies: + "@theia/core" "1.53.0" + "@theia/monaco" "1.53.0" "@theia/monaco-editor-core" "1.83.101" anser "^2.0.1" tslib "^2.6.2" -"@theia/core@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/core/-/core-1.52.0.tgz#8e4f139eb513875340c6ccf3181bdcefbc5c29e1" - integrity sha512-HkknVfIYX+SEtguk8VO/lcPu9HSZhwWFWIvTswQ3j/9xH00zMDHqDGYSygUXyi1QYVpgtwQTWlMwWzSZZvwfpQ== +"@theia/core@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/core/-/core-1.53.0.tgz#e3eacfc2ce20abd57ff3793409f139a9731b4268" + integrity sha512-KsJOBdLh7uXTNP8klBlvjofS6GQhK/a7iNmBRU/h7wKOOZwiIbSMPO16NahXTQQ5kRF4nCREBvEQ7Z2eMeqFXw== dependencies: "@babel/runtime" "^7.10.0" "@phosphor/algorithm" "1" @@ -2048,8 +2066,8 @@ "@phosphor/signaling" "1" "@phosphor/virtualdom" "1" "@phosphor/widgets" "1" - "@theia/application-package" "1.52.0" - "@theia/request" "1.52.0" + "@theia/application-package" "1.53.0" + "@theia/request" "1.53.0" "@types/body-parser" "^1.16.4" "@types/cookie" "^0.3.3" "@types/dompurify" "^2.2.2" @@ -2108,110 +2126,110 @@ ws "^8.17.1" yargs "^15.3.1" -"@theia/debug@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/debug/-/debug-1.52.0.tgz#6309a5e58d27e7e06cd8a1cf21249f71af2c9de7" - integrity sha512-UJOHKf7IOIQnZCWR9UHZhMlPWSGW1nkdHDhzSrR1Q0kH9J0C1JCAycPJbinxZb27o9HdrILyN+OFNtKrxRXvaw== - dependencies: - "@theia/console" "1.52.0" - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/markers" "1.52.0" - "@theia/monaco" "1.52.0" +"@theia/debug@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/debug/-/debug-1.53.0.tgz#bfa8311122f8e74a42bac7cfe72fed05ad663538" + integrity sha512-kayWzvg50Dbd4sjwPy75mpbDWFB8/9y0YN3JscwmJ2uwVt6RG29dbrpi1HMf9Ye0wXnbqDW0wY25nJD8cRiibw== + dependencies: + "@theia/console" "1.53.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/markers" "1.53.0" + "@theia/monaco" "1.53.0" "@theia/monaco-editor-core" "1.83.101" - "@theia/output" "1.52.0" - "@theia/process" "1.52.0" - "@theia/task" "1.52.0" - "@theia/terminal" "1.52.0" - "@theia/test" "1.52.0" - "@theia/variable-resolver" "1.52.0" - "@theia/workspace" "1.52.0" + "@theia/output" "1.53.0" + "@theia/process" "1.53.0" + "@theia/task" "1.53.0" + "@theia/terminal" "1.53.0" + "@theia/test" "1.53.0" + "@theia/variable-resolver" "1.53.0" + "@theia/workspace" "1.53.0" "@vscode/debugprotocol" "^1.51.0" fast-deep-equal "^3.1.3" jsonc-parser "^2.2.0" p-debounce "^2.1.0" tslib "^2.6.2" -"@theia/dev-container@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/dev-container/-/dev-container-1.52.0.tgz#d0bef0dd4365c23944214764db3683822dcb4c5c" - integrity sha512-JD875bWFZPH7sjRwdUQ1WCzHribvig7aecq+GRpeUu2ZxtPnhQJ2euN0YHVDTIulgBcgwbyHqY/kmD1Vht3B5g== +"@theia/dev-container@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/dev-container/-/dev-container-1.53.0.tgz#a1e271f02c66429bff75600c83c57d3dc5028b33" + integrity sha512-o6ByqGdKgSmHEcDIxHq0a9WXWonXkvgiuL7hAo9a7PhvlyWC8TyeMW79t8CMAYHo7RyXGGbHTWPaQIFML09SYQ== dependencies: - "@theia/core" "1.52.0" - "@theia/output" "1.52.0" - "@theia/remote" "1.52.0" - "@theia/workspace" "1.52.0" + "@theia/core" "1.53.0" + "@theia/output" "1.53.0" + "@theia/remote" "1.53.0" + "@theia/workspace" "1.53.0" dockerode "^4.0.2" jsonc-parser "^2.2.0" uuid "^8.0.0" -"@theia/editor-preview@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/editor-preview/-/editor-preview-1.52.0.tgz#c002e34499c81bb85b1b89534d2aa7b3307d837b" - integrity sha512-C0Rpi/+UouoAYY1YH4KBkaZLcLx4JdzRX5Ivx/Ky6FEH3+VYygHKiYKs+I2B179XTIxidfnRgonjvbSiPWmhxg== +"@theia/editor-preview@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/editor-preview/-/editor-preview-1.53.0.tgz#34c6042fcccc3f9a5a5828ac50585a927a7c28b9" + integrity sha512-3ZKVvi0Hn++X1r+fc2rIUti5ZbL+EPJzht5odtST1Jm0f2KaQ4A2Rtt6XfCcaiN/17AGryan3uShk8Skg7t2xQ== dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/navigator" "1.52.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/navigator" "1.53.0" tslib "^2.6.2" -"@theia/editor@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/editor/-/editor-1.52.0.tgz#c722e617c89085cc2cac4a4ca6b2efe87d788a88" - integrity sha512-oJg0h780gWzP/Xnxwm8UHWHmimOR4h/EBoXKSRQXkr/cryRoRi3N1A4KU5zRO0bazj5jEphHLTMLAk5YkcVPhw== +"@theia/editor@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/editor/-/editor-1.53.0.tgz#904b9a687d08c012fda1c8e481bcf1563bd6c67e" + integrity sha512-YeJhR5fUC5hZ/69BL9O6uErXdGnew8BjqseEI83caUGMxM9ftP+rePb145lMwlUa6eY/N5gttN9iA8b6upoZtg== dependencies: - "@theia/core" "1.52.0" - "@theia/variable-resolver" "1.52.0" + "@theia/core" "1.53.0" + "@theia/variable-resolver" "1.53.0" tslib "^2.6.2" -"@theia/electron@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/electron/-/electron-1.52.0.tgz#701b5c75432c784ad32c514d9ac06249cca4a051" - integrity sha512-4nrYoee7x8RvM6azTLvBlJ6mEi3NKalizHEsVKbJGqJxt/KVfLftuo9sH+6DFCUba6j0B4vY70PfG3IAKaBwmQ== +"@theia/electron@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/electron/-/electron-1.53.0.tgz#89b68a32325e6c44e68c4108f8ed937c2d8af3d7" + integrity sha512-Y5Uze8Key02CXRVcaJyNUglkO9zzVAtP9CLiAvvlMheQ/k/k/9OaS2k63+D33R5oFUC2D4luqW+/Zw7qA8+sXg== dependencies: electron-store "^8.0.0" fix-path "^3.0.0" native-keymap "^2.2.1" -"@theia/external-terminal@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/external-terminal/-/external-terminal-1.52.0.tgz#81b8f596420fc0a8447e9e6c30995f9b9c18ccee" - integrity sha512-3MKc4AG4t/geR5x0q5GRP2Xnq9yoAl3ywYlGJ7Mp1JB3x9YOLIGyJb5RiqJajlTLc8gduLmB/5K6vDxHXUHKkg== +"@theia/external-terminal@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/external-terminal/-/external-terminal-1.53.0.tgz#ca5fac9f4ab77ae1422da949934be5791db36815" + integrity sha512-wwVErdSS72E0EvatYS7IG9hvaacnT9VFGrSj9bD1xL6WWni8akqNIG/rGZXdKZvewfhPBCrvmsE567YB3ghWcg== dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/workspace" "1.52.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/workspace" "1.53.0" tslib "^2.6.2" -"@theia/ffmpeg@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/ffmpeg/-/ffmpeg-1.52.0.tgz#0d06827a51d5cf6f8f778c769380114bec659b0c" - integrity sha512-kyHSaBqR+19jR2ObQOkExLflnWFQe5XsYkxbj/GnOc/G1AhPLGVnv+nKNh3fNdFVP2VhoOV0OIKntk+mzgJuKQ== +"@theia/ffmpeg@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/ffmpeg/-/ffmpeg-1.53.0.tgz#d0da8bab1af3817113f787e2de6e97f7c1091d1d" + integrity sha512-UrhwDxKkDQY8v8WtLpIdgvbWWXw5hnsqxb2bgbS95L+qbjc8BQL1flby5b3OI8BXrYs/jl3ElbGXiXLOy+UAZg== dependencies: "@electron/get" "^2.0.0" tslib "^2.6.2" unzipper "^0.9.11" -"@theia/file-search@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/file-search/-/file-search-1.52.0.tgz#c0a46ff5f5228f8f23b545fde6aa64a7bdb03594" - integrity sha512-hZJgq32THjxY8tHQKihjSKMksPcn5T3OFTCxWa/6rpdG0O3arNPWtEZaJEGd48Glj5Sfbi7AAGVSNU0+TQCCqg== - dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/process" "1.52.0" - "@theia/workspace" "1.52.0" +"@theia/file-search@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/file-search/-/file-search-1.53.0.tgz#1e0eccd80b85ba053f5979f095821a46ef369a1e" + integrity sha512-qVR4ih9jIbf8nw7QG3rROxFU++dROlKHNMNDYkc2StWY+jxqsRTPXXmRCNk84hP2HpRi2bwBbqjNxAj1nz+q1Q== + dependencies: + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/process" "1.53.0" + "@theia/workspace" "1.53.0" "@vscode/ripgrep" "^1.14.2" tslib "^2.6.2" -"@theia/filesystem@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/filesystem/-/filesystem-1.52.0.tgz#3e0127c0a84d1326b99d0abf194639caff9cf71c" - integrity sha512-EwUrvof23+IJKpTxAEHZGXybFHxeiy26NasbmMZsJVvxfm0OysOzdwvDoMf+TAkFANaP83hfzu/ufZz96xU4Zw== +"@theia/filesystem@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/filesystem/-/filesystem-1.53.0.tgz#7171a6288b65db42a43c368e3facf0a2be61942a" + integrity sha512-2X4dPz+PM/T4aji0pPwPHzG/wvmFm90O4NbGeSMjnbkSk/39NORsZf77cjxm9bbiidGUNX49yw68G3LB6rfyLw== dependencies: - "@theia/core" "1.52.0" + "@theia/core" "1.53.0" "@types/body-parser" "^1.17.0" "@types/multer" "^1.4.7" "@types/rimraf" "^2.0.2" @@ -2229,36 +2247,36 @@ tslib "^2.6.2" vscode-languageserver-textdocument "^1.0.1" -"@theia/getting-started@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/getting-started/-/getting-started-1.52.0.tgz#0117b2f3caddfeb1ff59393cd8c3da09454d5bb1" - integrity sha512-h5pkdi/aOcXSDmQ9VSpfJjKWlqlw0mgtGW5Ltx5yNQkw6LilnpSJrKQYVi6Gl2x8zFR+gA634f8HPiWA+E5GzQ== - dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/keymaps" "1.52.0" - "@theia/preview" "1.52.0" - "@theia/workspace" "1.52.0" +"@theia/getting-started@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/getting-started/-/getting-started-1.53.0.tgz#03887b0fa87ef01d0af06c21bba53ad2f58a61d6" + integrity sha512-dsDklHUsrEZ3k1Ayx1RH2+Iv+pfS6iCmZk23AijgRfdZjqNZxI2nRCY0rpJREcNUMHLGN0dBMha8M2T61CfU3A== + dependencies: + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/keymaps" "1.53.0" + "@theia/preview" "1.53.0" + "@theia/workspace" "1.53.0" tslib "^2.6.2" -"@theia/keymaps@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/keymaps/-/keymaps-1.52.0.tgz#391f1b0c7097e3672b122110dbf0813bf0448141" - integrity sha512-bzDl1N8dBwPSbYdGtblbjlwjePfwYvs+s5zoIbLg4/cBzxLB7LWY5JfoFAA4gD85XP/Gg0iC/JKtJEV+CIyumw== +"@theia/keymaps@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/keymaps/-/keymaps-1.53.0.tgz#bd77e83248d992a5da9a835695cb4d781c5f12b2" + integrity sha512-37N8UthVCYsGUsQgqY5CE2dRSsgi3SVGaLfL1ThHhCqj6iLlkv4arIDdIlJomzy9Fz1rJRKjGN8WX2F4bvWYCQ== dependencies: - "@theia/core" "1.52.0" - "@theia/monaco" "1.52.0" + "@theia/core" "1.53.0" + "@theia/monaco" "1.53.0" "@theia/monaco-editor-core" "1.83.101" - "@theia/preferences" "1.52.0" - "@theia/userstorage" "1.52.0" + "@theia/preferences" "1.53.0" + "@theia/userstorage" "1.53.0" jsonc-parser "^2.2.0" tslib "^2.6.2" -"@theia/localization-manager@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/localization-manager/-/localization-manager-1.52.0.tgz#54f656d6e01d0e32972ca1a334dbb42e36a650f8" - integrity sha512-q1BXtTTT3TMgQD6ZG6WeMpNnpfOpJGkzqPYL1YQAGbpUq+vMTjvoEDC7UKcGcYLJ2VIYBKpqqJj5pJzzdLYNlA== +"@theia/localization-manager@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/localization-manager/-/localization-manager-1.53.0.tgz#27a639f76cf6f46391ce48d87f72a14462dd3778" + integrity sha512-EW901Lac1XJKAVhomJX7Zlo9oUzJY/pCntWX67FcokWE7x3HlhDo8onandjiDpYj3kd4Ybyd6NAyqXX8Va6s6A== dependencies: "@types/bent" "^7.0.1" "@types/fs-extra" "^4.0.2" @@ -2270,53 +2288,53 @@ tslib "^2.6.2" typescript "~5.4.5" -"@theia/markers@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/markers/-/markers-1.52.0.tgz#75a38198ef24bc03122dcbeeb8a998fa169137b9" - integrity sha512-6+rRWVb+5GtnX9/9Fwq0k72e0wAWbqSPfBGgwLrFf1frqTjtso8ArbVTiRuAb00JcWJBL7nNCbbMXMgCLYhh7g== +"@theia/markers@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/markers/-/markers-1.53.0.tgz#173a0ecc3d48d5f791939d5c53def391de049e5a" + integrity sha512-TGNkB+jCLv4KqgpSoZRst5iyQjDmJ6fbbC+xj1OP3hG6ggUUoAO8XLXY1fmddRQSsJtGrJbELN4IMUYksZ6eDQ== dependencies: - "@theia/core" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/workspace" "1.52.0" + "@theia/core" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/workspace" "1.53.0" tslib "^2.6.2" -"@theia/memory-inspector@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/memory-inspector/-/memory-inspector-1.52.0.tgz#3f277609636c1c5fe380e3e0d997ddcfe3791158" - integrity sha512-WvfjIFcDyEXP0Sk+BLtpObpzec4k7EKxEeqSux3ni9PKutL5qyr2qY7/feR8+MABsoKVIcoMef4CcOPnVss2fg== +"@theia/memory-inspector@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/memory-inspector/-/memory-inspector-1.53.0.tgz#476b30cfaee2e3e50da247989aed272a59453b1a" + integrity sha512-aDlmXHZHfmYN5tkfHXScfnCzr+t03FIjIMkbeS/bgwgVDjWGgpJIUrH0YfZm0M5dpoyjPP4fSdUzCAWrQ77wxQ== dependencies: - "@theia/core" "1.52.0" - "@theia/debug" "1.52.0" + "@theia/core" "1.53.0" + "@theia/debug" "1.53.0" "@vscode/debugprotocol" "^1.51.0" long "^4.0.0" tslib "^2.6.2" -"@theia/messages@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/messages/-/messages-1.52.0.tgz#f1dd0d5eaacf005c9f973324048bff0b9f35ed6a" - integrity sha512-1rb+gDCRnpi/oC9LlW6grnx5Xs0x14i7mJQwzUtTR3XpMLPJSBUGxp2JgBKfBkQiRQ3sWYm7tkyN/BmdZREaEQ== +"@theia/messages@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/messages/-/messages-1.53.0.tgz#46c65220fdf5737eea786c7ea8641c8d12f81475" + integrity sha512-2d4+FHaRasngL3OPr2Q0zlAV9TB+HEbwfrBNWL4g2w8oNG4TSnxbxy06gZWDmb4lxzNo0cTiz/pzIIO96RMROA== dependencies: - "@theia/core" "1.52.0" + "@theia/core" "1.53.0" react-perfect-scrollbar "^1.5.3" ts-md5 "^1.2.2" tslib "^2.6.2" -"@theia/metrics@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/metrics/-/metrics-1.52.0.tgz#c8033388c544a6226b5b7101465ff18cdfafb69d" - integrity sha512-7xQ5Xc26hMbWzGZpFg8DAvts20/3B2zd9tFMvf5Oi/DK5RQyo4bdWbWzrNp/RXCIiwuKc4Z9jStOwRPhiwRzfQ== +"@theia/metrics@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/metrics/-/metrics-1.53.0.tgz#f5c7393a47d572990876d35abfc6de4612b332ee" + integrity sha512-9ovpmJV1y/EIl/hTpv6vYWDmlyYXz8RxquDxnlH6B7LdkRYX9lF1htETTJr3ckHbk8ePOUGptOtMUVBqNZn9Zw== dependencies: - "@theia/core" "1.52.0" + "@theia/core" "1.53.0" prom-client "^10.2.0" tslib "^2.6.2" -"@theia/mini-browser@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/mini-browser/-/mini-browser-1.52.0.tgz#c6819f51d7c2ff1e47ea2e600c84d753ab76a688" - integrity sha512-FdCisJyohtdEmpYoSqpMH/gyW9a4Rioxk7g/0P3viQfSD8vsReiZK5dDy74g5+yMTvPzBumfjecLcsuC7xna3w== +"@theia/mini-browser@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/mini-browser/-/mini-browser-1.53.0.tgz#79aac90f9a8f49b70e4c5a4db04a96f8f6665bd7" + integrity sha512-qfYJzCej3pqOx1eksEDUsUuL9KihzOPGKeCvd4GIimROoG4HJ32+g9GtZtIQGJM7+L+G942617gJkUpf0qQzgQ== dependencies: - "@theia/core" "1.52.0" - "@theia/filesystem" "1.52.0" + "@theia/core" "1.53.0" + "@theia/filesystem" "1.53.0" "@types/mime-types" "^2.1.0" mime-types "^2.1.18" pdfobject "^2.0.201604172" @@ -2328,18 +2346,18 @@ resolved "https://registry.yarnpkg.com/@theia/monaco-editor-core/-/monaco-editor-core-1.83.101.tgz#a0577396fb4c69540536df2d7fed2de4399c4fde" integrity sha512-UaAi6CEvain/qbGD3o6Ufe8plLyzAVQ53p9Ke+MoBYDhb391+r+MuK++JtITqIrXqoa8OCjbt8wQxEFSNNO0Mw== -"@theia/monaco@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/monaco/-/monaco-1.52.0.tgz#475bb5ccb79713b61c056e33890e072d6114f6a9" - integrity sha512-d0u0LRb+5rEDbsI13uRDcoPfJECYS/+RLRgRXzAjsKbb7iCmz1vrSejQH7yO/dEFHOxOojkTd97bMfZb2b7TyA== +"@theia/monaco@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/monaco/-/monaco-1.53.0.tgz#5a087413de62681a6dc2507e5d07f0c3018317c4" + integrity sha512-knrWtgqv6V5yfyQXE1zU6UVjg8o+H7VfpMiBGH6pfoIxFRKJ3J4uThG0+qQE1xzCdfhb7IylAJN0m6yo1eFYyg== dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/markers" "1.52.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/markers" "1.53.0" "@theia/monaco-editor-core" "1.83.101" - "@theia/outline-view" "1.52.0" - "@theia/workspace" "1.52.0" + "@theia/outline-view" "1.53.0" + "@theia/workspace" "1.53.0" fast-plist "^0.1.2" idb "^4.0.5" jsonc-parser "^2.2.0" @@ -2347,138 +2365,140 @@ vscode-oniguruma "1.6.1" vscode-textmate "^9.0.0" -"@theia/native-webpack-plugin@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/native-webpack-plugin/-/native-webpack-plugin-1.52.0.tgz#2ae4ab0d0f7513ab0db9f5a83c9e6cb9153dbb8c" - integrity sha512-Pd8XOA4g3f0qjq/zccXetGeKC/5dnarIC5gMU4DwK5g2OilDR1lBJzPkauh5VMwQWQnTI0IcfmmxwbkRDoLmMA== +"@theia/native-webpack-plugin@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/native-webpack-plugin/-/native-webpack-plugin-1.53.0.tgz#599cdbbdc30db206e641a87987dddd117f61431c" + integrity sha512-LoDbFZgd8AhlieAD/fOAzinp06dJpUYrCMruivTxB/STj4CNeVp4u65lYsjiakkuO/QYG6vGlVh1qEr+8qiX2w== dependencies: tslib "^2.6.2" webpack "^5.76.0" -"@theia/navigator@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/navigator/-/navigator-1.52.0.tgz#b0479acb0868963036fc90c5cc9bce23f4a68bd9" - integrity sha512-fPn2HhNtHiCp6SznNbNDwBqSwf8/tDFV2DLxLdeWHeIFAjSyLgTBIgwFdUrBH5zFov9A4dutoUGW8n4WsX0nLw== +"@theia/navigator@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/navigator/-/navigator-1.53.0.tgz#cbf0f6ad4295d73d86ac85048992648fc28af275" + integrity sha512-c2jGvL+uETGG7vd7iInwoPdmV747HDaGxFBrxG08Wy8PvzQXKxA2izc1yC0PxFaKmj3Ux5J2G/Fqo2eZEg6cVQ== dependencies: - "@theia/core" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/workspace" "1.52.0" + "@theia/core" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/workspace" "1.53.0" minimatch "^5.1.0" tslib "^2.6.2" -"@theia/notebook@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/notebook/-/notebook-1.52.0.tgz#d6fdd6506463ce1aa7c79e22137a6e3b7d13d71d" - integrity sha512-3b78uL0xuc1koX+4l0KTAiq/TEPvFRcg85cyBHv9wazpNrQXa4ydBr1B85Dj6E6ecBUTDOkhMRqczqJI6fpPUg== +"@theia/notebook@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/notebook/-/notebook-1.53.0.tgz#ddca55433d747b83a6f0ac1dad64028e8200d1bb" + integrity sha512-BFipRHteY7pISkOKCrVdCLiFcqbCGIc8zfmTwkAPreVUSpnAVCV59C2BfCGlXQLIMkcOkeLizWSJ1uWcjcmfog== dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/monaco" "1.52.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/monaco" "1.53.0" "@theia/monaco-editor-core" "1.83.101" - "@theia/outline-view" "1.52.0" + "@theia/outline-view" "1.53.0" + advanced-mark.js "^2.6.0" react-perfect-scrollbar "^1.5.8" tslib "^2.6.2" -"@theia/outline-view@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/outline-view/-/outline-view-1.52.0.tgz#e53b66b0c038fc9cf8f317f28d384d1f84b24105" - integrity sha512-waHi1W8nngcSLQnZH7ZEUI0CRw4vjPnM/biOyF3xbPBbgdCoBlDBTTh848yw3prcQSmfQHt9NPLwJS2jjHpq2w== +"@theia/outline-view@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/outline-view/-/outline-view-1.53.0.tgz#5746f8c5be621db65848eaa7d474428c80db9931" + integrity sha512-zKOjsrho8rQoXi/NhNKdrV4BLGRqI852E/pJKURjaS2X1dRkn31gW9RfK6YSFYEgCEo3tbott7Gi2icIoA9WWw== dependencies: - "@theia/core" "1.52.0" + "@theia/core" "1.53.0" tslib "^2.6.2" -"@theia/output@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/output/-/output-1.52.0.tgz#2a2099c6e4a5aac460b97496a0cd1cbea8ae08b7" - integrity sha512-JOYI5ZmChGynunKvLnLCcuCka7L/21V6uHRaWfM9dcSTzxiK9xw2+2mD8yTz9yO5fa69khEoPuWuKWxOnDpqfg== +"@theia/output@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/output/-/output-1.53.0.tgz#42bc3251a0f52f3c963cc3692d27fdf194394e1a" + integrity sha512-HGpEg0vdqUh6WBXlCpUkW9FllY+lX74ws5zzrxWHwNUXzI/kEZndsqq5XN9mh889kFDgcyx0ZC1g2STpsKu8DA== dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/monaco" "1.52.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/monaco" "1.53.0" "@theia/monaco-editor-core" "1.83.101" "@types/p-queue" "^2.3.1" p-queue "^2.4.2" tslib "^2.6.2" -"@theia/ovsx-client@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/ovsx-client/-/ovsx-client-1.52.0.tgz#d98d90d6367742841ee75a5d34cd9518ac25a182" - integrity sha512-0/DB5BYq9QZcSDahJDC7Sa0MRJOKe2cnUDl6z1qTZO7R5qXvnc3mk5odOcE0Xa2Ty4wbQuP+g/kf8RDj0RDFzg== +"@theia/ovsx-client@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/ovsx-client/-/ovsx-client-1.53.0.tgz#0236e15b75e2a5bcbcbbb7b23157ee117d3820e1" + integrity sha512-fLomJfu/ch3pfGxtWFGKXbaYWxIWZSW/YEiM55Miu8TycOeOCeFxaGneEqovhPKbQUx3IKpRzFXqHnLBGiXnwQ== dependencies: - "@theia/request" "1.52.0" + "@theia/request" "1.53.0" + limiter "^2.1.0" semver "^7.5.4" tslib "^2.6.2" -"@theia/plugin-dev@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/plugin-dev/-/plugin-dev-1.52.0.tgz#ca16c501ce083da73f6cb54ca4af888122d549b3" - integrity sha512-UTbtfR2IMuqfEqMQnKb06NSBHovhFw6cKecVJU8e97sc/OfUjmdPqVwk97ul3fp768mc/Gj6v6h5B5Mz7/e16g== - dependencies: - "@theia/core" "1.52.0" - "@theia/debug" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/output" "1.52.0" - "@theia/plugin-ext" "1.52.0" - "@theia/workspace" "1.52.0" +"@theia/plugin-dev@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/plugin-dev/-/plugin-dev-1.53.0.tgz#1c0c134eabb82e0892db37bbfa9e373595ee8a16" + integrity sha512-mahmJCghjiumCrsH8bZk7DXSw3/W1QI0lql8LZY7Tfm9cLbBykBc/uC+Cb7rkrpdBXUaZq8XgPb4Cn6caLH4lg== + dependencies: + "@theia/core" "1.53.0" + "@theia/debug" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/output" "1.53.0" + "@theia/plugin-ext" "1.53.0" + "@theia/workspace" "1.53.0" ps-tree "^1.2.0" tslib "^2.6.2" -"@theia/plugin-ext-vscode@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/plugin-ext-vscode/-/plugin-ext-vscode-1.52.0.tgz#99ee696fdd78cd28fe8e77c0f02a9e390c037808" - integrity sha512-be1kxXQ0BJqxCjJjW2Oodb13lv/E4Rr4Cj1bT2rtjpuCcus9C8lWu5GgKmJarCVwW/CKhOdc7WgdcgnRwX2SJQ== - dependencies: - "@theia/callhierarchy" "1.52.0" - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/monaco" "1.52.0" +"@theia/plugin-ext-vscode@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/plugin-ext-vscode/-/plugin-ext-vscode-1.53.0.tgz#0b71bf39ee8f65b0843dc5091fb345d736d9e6cf" + integrity sha512-9wzdGCtTzev+kXJrKd+MquajRLbPkRFEhzPiHBfgpmQU5xCO39biXczGNKKKkw7k2iQXkxa+m2YLAHaBzDIQfw== + dependencies: + "@theia/callhierarchy" "1.53.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/monaco" "1.53.0" "@theia/monaco-editor-core" "1.83.101" - "@theia/navigator" "1.52.0" - "@theia/outline-view" "1.52.0" - "@theia/plugin" "1.52.0" - "@theia/plugin-ext" "1.52.0" - "@theia/terminal" "1.52.0" - "@theia/typehierarchy" "1.52.0" - "@theia/userstorage" "1.52.0" - "@theia/workspace" "1.52.0" + "@theia/navigator" "1.53.0" + "@theia/outline-view" "1.53.0" + "@theia/plugin" "1.53.0" + "@theia/plugin-ext" "1.53.0" + "@theia/terminal" "1.53.0" + "@theia/typehierarchy" "1.53.0" + "@theia/userstorage" "1.53.0" + "@theia/workspace" "1.53.0" decompress "^4.2.1" filenamify "^4.1.0" tslib "^2.6.2" -"@theia/plugin-ext@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/plugin-ext/-/plugin-ext-1.52.0.tgz#beba111d5512b3082ef6e9007079dec887be35b9" - integrity sha512-pqQ6INPjM++dmdIveGvufOnJQasfWzxrd/997Dw101G16zldCfhn6R4CiZRc0z1xbvSCnoEKkcB9Yn8tAICYgQ== - dependencies: - "@theia/bulk-edit" "1.52.0" - "@theia/callhierarchy" "1.52.0" - "@theia/console" "1.52.0" - "@theia/core" "1.52.0" - "@theia/debug" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/editor-preview" "1.52.0" - "@theia/file-search" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/markers" "1.52.0" - "@theia/messages" "1.52.0" - "@theia/monaco" "1.52.0" +"@theia/plugin-ext@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/plugin-ext/-/plugin-ext-1.53.0.tgz#df87d099501ed36a37bcf8863a828a7a3578b96e" + integrity sha512-Hkvd8TaTpiwzB7qFzC1TGejJza4/XKkumFsQIq9eqjFPnF8X2Q1CtcfJjb71a7xbv8ohXF8I0Coiltnv3Q7vLA== + dependencies: + "@theia/bulk-edit" "1.53.0" + "@theia/callhierarchy" "1.53.0" + "@theia/console" "1.53.0" + "@theia/core" "1.53.0" + "@theia/debug" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/editor-preview" "1.53.0" + "@theia/file-search" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/markers" "1.53.0" + "@theia/messages" "1.53.0" + "@theia/monaco" "1.53.0" "@theia/monaco-editor-core" "1.83.101" - "@theia/navigator" "1.52.0" - "@theia/notebook" "1.52.0" - "@theia/output" "1.52.0" - "@theia/plugin" "1.52.0" - "@theia/preferences" "1.52.0" - "@theia/scm" "1.52.0" - "@theia/search-in-workspace" "1.52.0" - "@theia/task" "1.52.0" - "@theia/terminal" "1.52.0" - "@theia/test" "1.52.0" - "@theia/timeline" "1.52.0" - "@theia/typehierarchy" "1.52.0" - "@theia/variable-resolver" "1.52.0" - "@theia/workspace" "1.52.0" + "@theia/navigator" "1.53.0" + "@theia/notebook" "1.53.0" + "@theia/output" "1.53.0" + "@theia/plugin" "1.53.0" + "@theia/preferences" "1.53.0" + "@theia/scm" "1.53.0" + "@theia/search-in-workspace" "1.53.0" + "@theia/task" "1.53.0" + "@theia/terminal" "1.53.0" + "@theia/test" "1.53.0" + "@theia/timeline" "1.53.0" + "@theia/typehierarchy" "1.53.0" + "@theia/variable-resolver" "1.53.0" + "@theia/workspace" "1.53.0" "@types/mime" "^2.0.1" "@vscode/debugprotocol" "^1.51.0" "@vscode/proxy-agent" "^0.13.2" @@ -2497,70 +2517,70 @@ vhost "^3.0.2" vscode-textmate "^9.0.0" -"@theia/plugin@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/plugin/-/plugin-1.52.0.tgz#30decc85671d4a4053f76ff265f422aa987cce4e" - integrity sha512-ePtEw7EJF9nZuLTYUAZANMbVbQwkyuGA7MOKdDRfadwe5HMjGSu0f8GB8ZV8uoQCRR0PkqJaPUSZu4qYx/qL7g== +"@theia/plugin@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/plugin/-/plugin-1.53.0.tgz#442ec7834fc67c0a15997be199f272ac0ed17d66" + integrity sha512-cO826Wa06wzVIXCvsqPJXg2V2qWOQjLjo6MktBpRtQurhIhI/9xDhZ7w3pBGjzMb9UFFaLrOivSv4wHU8Z3udA== -"@theia/preferences@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/preferences/-/preferences-1.52.0.tgz#f23d1a6d4a35c484ea557784f8ee55b36dd49e58" - integrity sha512-57uiG6/7Jrur//g/iNMFdOAoQEfCXjyKB6PXNlrUscz7mWtsD3jnON0DjuFbBFEMspauhjsl8RVn0PK6G5cuxQ== +"@theia/preferences@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/preferences/-/preferences-1.53.0.tgz#ea1199ce845d951437965d4a2f5bed645004215f" + integrity sha512-5dvskLMrwM94EltgfVD3uojhSUxNqiHkZfzWvnNOaXqEQxsZWlSUx6pTwRcWXDQsPQh6EOkf3wCAu/ubM6SFCg== dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/monaco" "1.52.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/monaco" "1.53.0" "@theia/monaco-editor-core" "1.83.101" - "@theia/userstorage" "1.52.0" - "@theia/workspace" "1.52.0" + "@theia/userstorage" "1.53.0" + "@theia/workspace" "1.53.0" async-mutex "^0.3.1" fast-deep-equal "^3.1.3" jsonc-parser "^2.2.0" p-debounce "^2.1.0" tslib "^2.6.2" -"@theia/preview@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/preview/-/preview-1.52.0.tgz#23b1c1508f9407041951cc214a3d19f3e0394aee" - integrity sha512-chHeBSydY7aBsLQ/b002gpEBagm4mr15Wj6B7P82w860vI6eKbGeSEgGQ2akyh0l8rVCaUCd2Oe9vYg3950NrA== +"@theia/preview@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/preview/-/preview-1.53.0.tgz#61903ff19e77e040b39fbf4967690ea3434fd140" + integrity sha512-muXhrlzxb8ZhaT7svFDGYD8zNl8+1+c+1o8KuYN+urfKRg1vSJ4dm/FnB73R0Oj1q2PyBtNm8fHUJaa3QQRs8A== dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/mini-browser" "1.52.0" - "@theia/monaco" "1.52.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/mini-browser" "1.53.0" + "@theia/monaco" "1.53.0" "@types/highlight.js" "^10.1.0" "@types/markdown-it-anchor" "^4.0.1" highlight.js "10.4.1" markdown-it-anchor "~5.0.0" tslib "^2.6.2" -"@theia/process@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/process/-/process-1.52.0.tgz#d86ab49a3f3e067b3f497338d62953e5488bfe36" - integrity sha512-oKnXrHCtJ9VM8OObNW7RcIYWC0oWPqR5u+ndHOthB1UeyQhDMA/3KLzRSImfxApSy7R0QfkbO58/zhgAOeI3Qg== +"@theia/process@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/process/-/process-1.53.0.tgz#ee985c1010062da2b6dcccc6106f6d93ac75a0b8" + integrity sha512-xLQGHtZaaZElKckgyuCIzhhLYMi6eBja7rI98V4wWDQXhSqv62paxD+eqPCOP09JA7YsR/zGycCZmBSKZPeQaA== dependencies: - "@theia/core" "1.52.0" + "@theia/core" "1.53.0" node-pty "0.11.0-beta24" string-argv "^0.1.1" tslib "^2.6.2" -"@theia/property-view@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/property-view/-/property-view-1.52.0.tgz#c54b7ae930c20da9655bc7165b445b11e92806a4" - integrity sha512-KDn+mbc+VzK5PHd5gs2QACJNxEfD8PLHxPzGUnsiofkFrWBjAk3ZicXI2xS9aj8+1jJc1jaQwetFtYeF3PLKKw== +"@theia/property-view@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/property-view/-/property-view-1.53.0.tgz#8098b07db930c5bb57eae41c3bb215a4b2f3e233" + integrity sha512-stWcbu/BpO0I/VqlK9TwX3to19ZeghxjjZfy7th0A3XILBM0KY++3Z9mJOs60sKAcjvqbC97dAFrATuh4o8Ahw== dependencies: - "@theia/core" "1.52.0" - "@theia/filesystem" "1.52.0" + "@theia/core" "1.53.0" + "@theia/filesystem" "1.53.0" tslib "^2.6.2" -"@theia/remote@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/remote/-/remote-1.52.0.tgz#342ca934874a8468b5a6c1a3ed1d4ab0d6427d9d" - integrity sha512-vkbx8WMONJkOogQRxRPmrCgSdeazT22cP9R3j3Onn3OiK89dR/DMta/EgfGpn9sivvRNY366APTU+4foVI95Mw== +"@theia/remote@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/remote/-/remote-1.53.0.tgz#a5223c36951ecb001bd8aaad8364f71ef396e641" + integrity sha512-7GOcD4IC6Ea3yvC3UVKYg5XXi+AsCAGzZT5Tq2v6lyntcdWMOd/97uLF20Yh955HYnT0HcuVE4pdSHkH+1nJfw== dependencies: - "@theia/core" "1.52.0" - "@theia/filesystem" "1.52.0" + "@theia/core" "1.53.0" + "@theia/filesystem" "1.53.0" archiver "^5.3.1" decompress "^4.2.1" decompress-tar "^4.0.0" @@ -2574,24 +2594,24 @@ ssh2-sftp-client "^9.1.0" tslib "^2.6.2" -"@theia/request@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/request/-/request-1.52.0.tgz#bc057d971595a1f68ea296d23906993938cfb1ee" - integrity sha512-7FgMzyvDD3ChS4WZbvTnnSO7PndlHbbDf9tWYqkrZ9Olw6Sc/YCSWinJVBr2Fi+XxoPYUHbxLfvjM7oaNDS9cw== +"@theia/request@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/request/-/request-1.53.0.tgz#c3da936eef3c634907f7d9164db9b502ae6a3385" + integrity sha512-NML0rOz4tXRap0Z436ErwxFCCC4pl7wle7ojyrTr3LXjD5V/MqlErePlRG5F74b+/JRhikSndIAkQvcp74jy1A== dependencies: http-proxy-agent "^5.0.0" https-proxy-agent "^5.0.0" tslib "^2.6.2" -"@theia/scm@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/scm/-/scm-1.52.0.tgz#408a5c3170bdcda783f64bbaeb4a313baebf9cfe" - integrity sha512-Jww8I1iGgAu5phST3Ctq1dYgsa13z8gNpy8lQGMFdXhkLafRBqBKmG6hnQpZwxQ73qEvi2yP6OS9htHBc/+F6w== +"@theia/scm@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/scm/-/scm-1.53.0.tgz#d22ff9e56ab90c9319437cd4f54ce132a256afc2" + integrity sha512-WXigySDw0d19kKiyhFXG0tQS1SKsrIBAfAJ+HiSfB3nGm/WrzGcN1Y2mXQQsnogRZJzVnpT1zkJvuoeePxQ7HQ== dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/monaco" "1.52.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/monaco" "1.53.0" "@theia/monaco-editor-core" "1.83.101" "@types/diff" "^5.2.1" diff "^5.2.0" @@ -2600,161 +2620,162 @@ ts-md5 "^1.2.2" tslib "^2.6.2" -"@theia/search-in-workspace@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/search-in-workspace/-/search-in-workspace-1.52.0.tgz#0db007fbe793fd28358b33f9dae780d96c977501" - integrity sha512-vhqOja3vuas3wRBXqx//LwYQdfxpeJq7IzoRcglVgWzVvt2oSzvcC1u0mAs8vNBY6VJLlqH8L1zPl+UH2TIaig== - dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/navigator" "1.52.0" - "@theia/process" "1.52.0" - "@theia/workspace" "1.52.0" +"@theia/search-in-workspace@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/search-in-workspace/-/search-in-workspace-1.53.0.tgz#869a9b35f24a19db47d54d65ac619930a82b3df8" + integrity sha512-Ak53seCS/8hgN2jTiJGJh8Ih5Rhcxgv2+nXePslhpiy78SiwQoirFBuyDCWvwu5sV0+5Ii7ENz0b9z9hxreI0g== + dependencies: + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/navigator" "1.53.0" + "@theia/process" "1.53.0" + "@theia/workspace" "1.53.0" "@vscode/ripgrep" "^1.14.2" minimatch "^5.1.0" react-autosize-textarea "^7.0.0" tslib "^2.6.2" -"@theia/secondary-window@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/secondary-window/-/secondary-window-1.52.0.tgz#ee6591466ab71bd2d1a8bd1a463075ae1cf05935" - integrity sha512-b1whI2he4zxaAzGX1bcFwl3+aK2PwM1+F5TyC1Outp5Rrlad/lgX+Dt6xv19uxNzbz+YDBSBkh6MaEZ5SwzrVg== +"@theia/secondary-window@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/secondary-window/-/secondary-window-1.53.0.tgz#53b798a7eaa61273e5c461daa8fe4b2d2deb1f35" + integrity sha512-HLKjtfWEsoMTtx5xOyE0fJ85Ml1JKxR9Z8GLS2faleaL5QSF7sJRfOiQ/1+lFkZfmLEqCzQFCeph8kydb164zg== dependencies: - "@theia/core" "1.52.0" + "@theia/core" "1.53.0" tslib "^2.6.2" -"@theia/task@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/task/-/task-1.52.0.tgz#74030eb135fb852bf05388d6525fee3c1f4fd154" - integrity sha512-x3/7zoOAMPs1e9ZYmfN1KasRhtmgKwCTkS2ULYplCjn7ltWRol3e/KRSrKsqK1MoUUdvEEDCgtN+xy4qGgGfoA== - dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/markers" "1.52.0" - "@theia/monaco" "1.52.0" +"@theia/task@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/task/-/task-1.53.0.tgz#7b741003d3c0876c81b08b8e478659e1664f155a" + integrity sha512-3ixJgu3P0lj295l6f+LEriiFnXxKwFkzE+7KE3o/fCWUvhO6onCzv/aKVTLUaRPIfD29LU3Py69lC/hKo6Stmg== + dependencies: + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/markers" "1.53.0" + "@theia/monaco" "1.53.0" "@theia/monaco-editor-core" "1.83.101" - "@theia/process" "1.52.0" - "@theia/terminal" "1.52.0" - "@theia/userstorage" "1.52.0" - "@theia/variable-resolver" "1.52.0" - "@theia/workspace" "1.52.0" + "@theia/process" "1.53.0" + "@theia/terminal" "1.53.0" + "@theia/userstorage" "1.53.0" + "@theia/variable-resolver" "1.53.0" + "@theia/workspace" "1.53.0" async-mutex "^0.3.1" jsonc-parser "^2.2.0" p-debounce "^2.1.0" tslib "^2.6.2" -"@theia/terminal@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/terminal/-/terminal-1.52.0.tgz#123af801a0676a53c6563e12a5b183981ae368b8" - integrity sha512-LQEHi+siXuQJIQtLaL7ozAyMpkAXzUe07W3WXCQ+CLbaowXDXU5GgF9YjE0Jtd+TPrI0iEL7Vo26aIbAVU5clg== - dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/file-search" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/process" "1.52.0" - "@theia/variable-resolver" "1.52.0" - "@theia/workspace" "1.52.0" +"@theia/terminal@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/terminal/-/terminal-1.53.0.tgz#c6e8805def70fd9e0d2ac2a9af410b31e7672fd9" + integrity sha512-DtGb937ccS+9msTSAzIglOXpfzp2VlgNCgyNed2Ninu4nGz4Od+4hojqrUu11jeCU1rTHGkGK34oy880l09vlQ== + dependencies: + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/file-search" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/process" "1.53.0" + "@theia/variable-resolver" "1.53.0" + "@theia/workspace" "1.53.0" tslib "^2.6.2" xterm "^5.3.0" xterm-addon-fit "^0.8.0" xterm-addon-search "^0.13.0" -"@theia/test@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/test/-/test-1.52.0.tgz#167681553eba696fe3a74f60c5fa88245c083076" - integrity sha512-0R0/5ojFmsWYn/UBhb9x6zCoqXIXVOqrJujehTz+fwnoTsx/mT4KGrMIVSbQflLANLdfC196qx1IvBTi4lG3oQ== - dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/navigator" "1.52.0" - "@theia/terminal" "1.52.0" +"@theia/test@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/test/-/test-1.53.0.tgz#21a5b7b0416f69e0aab5603debc8ea5b1ed5b391" + integrity sha512-mp8buz8iePEaUVvE+uyOtKEpLGbs57ZAlu64QgDrAc6cAzUSWiQIVK53m1hBttTY8Hk1hpqWrXsGIlK5+LaApw== + dependencies: + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/navigator" "1.53.0" + "@theia/terminal" "1.53.0" xterm "^4.16.0" xterm-addon-fit "^0.5.0" -"@theia/timeline@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/timeline/-/timeline-1.52.0.tgz#b7fcf1a622482635de25a77709aaad20281068d2" - integrity sha512-loCJHSw3ub/uZiQ3TyxS+c5wFSF1iMnPux5dZiPr8ZhP/DxEMl57kH3nUl4JMWb8O49emFlnSQt2d+6ZWFWZdA== +"@theia/timeline@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/timeline/-/timeline-1.53.0.tgz#a8d9ad909eea19b4a23df315f86330f27752b982" + integrity sha512-UnYFthLx/FKaFkEnb1StngOi4znHwLryA6tVbYd4XdfM55gk8sJCzk+SEvCUxlsbMM9WxTSc+Q6R5Jj/OzT29w== dependencies: - "@theia/core" "1.52.0" - "@theia/navigator" "1.52.0" + "@theia/core" "1.53.0" + "@theia/navigator" "1.53.0" tslib "^2.6.2" -"@theia/toolbar@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/toolbar/-/toolbar-1.52.0.tgz#2c82df90dbe122a964b1e8c2e1a12883f46e91b8" - integrity sha512-peLOh6H1eNqiHyh+9CN2xs5qrZM4Ati1bt0WfilGXxTc9iS8auHJknCl7uaF2ELk2dZdPhNKqrYF+agJd7Njxw== - dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" - "@theia/file-search" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/monaco" "1.52.0" +"@theia/toolbar@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/toolbar/-/toolbar-1.53.0.tgz#e00e30b96666c93d5926d7c945279092c8269dc9" + integrity sha512-AVyvXxWCODhZp9eQ9LixzR9BbXTFpJ8gUFvHxbcqR1MXrG7Llv9S+t6OmKEdFmuyZgWiIe7i9EHCAZpOnnI21Q== + dependencies: + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" + "@theia/file-search" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/monaco" "1.53.0" "@theia/monaco-editor-core" "1.83.101" - "@theia/search-in-workspace" "1.52.0" - "@theia/userstorage" "1.52.0" - "@theia/workspace" "1.52.0" + "@theia/search-in-workspace" "1.53.0" + "@theia/userstorage" "1.53.0" + "@theia/workspace" "1.53.0" ajv "^6.5.3" jsonc-parser "^2.2.0" perfect-scrollbar "^1.3.0" tslib "^2.6.2" -"@theia/typehierarchy@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/typehierarchy/-/typehierarchy-1.52.0.tgz#223701f7ed36f20784c3a205325a7c00e42078d8" - integrity sha512-9LqcQDhyi8qz/Bpfy/W+jcJnwtrme5E5gumWHYL5lCqiIc6PmPPq9HCZeBciL7YWqt7ALBSKkX1CPpwQfjt4EA== +"@theia/typehierarchy@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/typehierarchy/-/typehierarchy-1.53.0.tgz#5733e2a7e371c6963e5a650b8a366064c06430fc" + integrity sha512-rqJvPI00QOkuh8bmyzxKuwejnQydLJs3u8KU7SJJyN4N+MR4mrRI5DU+0NB5/u+ogwNiCq7+0Ttmk6A0nXdpcA== dependencies: - "@theia/core" "1.52.0" - "@theia/editor" "1.52.0" + "@theia/core" "1.53.0" + "@theia/editor" "1.53.0" tslib "^2.6.2" -"@theia/userstorage@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/userstorage/-/userstorage-1.52.0.tgz#54a591b9916731618de2e0615c9578c86390b9ef" - integrity sha512-iTUdPDxWBaxvUQ+HC0nwRZYrIbZzdQE3Ja86cv2ce2q9+QouVnCNCeD2/Q21Lc1ZkWK/nAmLFTOFSZMwQ4PDFQ== +"@theia/userstorage@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/userstorage/-/userstorage-1.53.0.tgz#a39a7181c404831d9fe86a7cc54de18871db0440" + integrity sha512-vR+w9gIeWfU4mZpVLO9RIoyfXAWbtSEe1TTKRGd5vAXgRa7vGrVDtkp+hH6QbBQ5BlqcVYHDHmnXBaNOjtQubA== dependencies: - "@theia/core" "1.52.0" - "@theia/filesystem" "1.52.0" + "@theia/core" "1.53.0" + "@theia/filesystem" "1.53.0" tslib "^2.6.2" -"@theia/variable-resolver@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/variable-resolver/-/variable-resolver-1.52.0.tgz#964dcf5e4ca36f6cf8c8a2cba7cb493a91f117c9" - integrity sha512-OWIRatDbMLxK0fcz8gxlTLD+m0CoI4uSLrD1hinUyToNvr4Y+/NPx9k6pBkx42NxYDrWNKE1L9jnG8cUeDU2gA== +"@theia/variable-resolver@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/variable-resolver/-/variable-resolver-1.53.0.tgz#2f06d5c0adffa2d7ecf9562ca9f4b0d7a019f82c" + integrity sha512-g0ZzZrlKay4wXvX7JXrunIpx7eUVdPi0MLBHURBP0TDJoO+C+K0csDTUv3xxRUkiMYuyYq93n4xXHedQFW7AzQ== dependencies: - "@theia/core" "1.52.0" + "@theia/core" "1.53.0" tslib "^2.6.2" -"@theia/vsx-registry@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/vsx-registry/-/vsx-registry-1.52.0.tgz#ac4f6135fcaf77105b0409fb142de9748958f941" - integrity sha512-rQWKG2/C7UYD04dFO9OGx1tYmx2bgMirEKztPRAh1+iHO83kiZQLTWQ2im3TnjWZ9pIPmUxX+evntdZxTT/Hhw== - dependencies: - "@theia/core" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/navigator" "1.52.0" - "@theia/ovsx-client" "1.52.0" - "@theia/plugin-ext" "1.52.0" - "@theia/plugin-ext-vscode" "1.52.0" - "@theia/preferences" "1.52.0" - "@theia/workspace" "1.52.0" +"@theia/vsx-registry@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/vsx-registry/-/vsx-registry-1.53.0.tgz#7824a3634d7f88a419740263b3ad55557659c48c" + integrity sha512-rmbaZZhFh3xnNArLSvh0Wrc/D7MJsPt3Vnkld5xHpWPLsP4FVX/KAftTrtg32VJ70gMj8xgsrTNC+B3NUH1+7Q== + dependencies: + "@theia/core" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/navigator" "1.53.0" + "@theia/ovsx-client" "1.53.0" + "@theia/plugin-ext" "1.53.0" + "@theia/plugin-ext-vscode" "1.53.0" + "@theia/preferences" "1.53.0" + "@theia/workspace" "1.53.0" + limiter "^2.1.0" luxon "^2.4.0" p-debounce "^2.1.0" semver "^7.5.4" tslib "^2.6.2" -"@theia/workspace@1.52.0": - version "1.52.0" - resolved "https://registry.npmjs.org/@theia/workspace/-/workspace-1.52.0.tgz#189c3b498783bedf6bcf80454b0166be1034ca58" - integrity sha512-gjwwvHFSOemBxeXiek94v4YU0wbedDn2XY3hjX73gQEl7fRWMocAAPsME4f5tpFT9x00rag5C/nc9oI6RYbpnA== +"@theia/workspace@1.53.0": + version "1.53.0" + resolved "https://registry.yarnpkg.com/@theia/workspace/-/workspace-1.53.0.tgz#d036612504dda7559dbfe9e8ccdd47499d292451" + integrity sha512-gETQompEP7K+SObA1NLZ6WgFTlD7f9XY7EjLb4BP/3JkLISCF1Y5V1YP64E6x4d2RXtxrHtnHGC11VnGCIiGjg== dependencies: - "@theia/core" "1.52.0" - "@theia/filesystem" "1.52.0" - "@theia/variable-resolver" "1.52.0" + "@theia/core" "1.53.0" + "@theia/filesystem" "1.53.0" + "@theia/variable-resolver" "1.53.0" jsonc-parser "^2.2.0" tslib "^2.6.2" valid-filename "^2.0.1" @@ -3147,13 +3168,20 @@ "@types/node" "*" form-data "^4.0.0" -"@types/node@*", "@types/node@>=10.0.0", "@types/node@^18.11.18": +"@types/node@*", "@types/node@>=10.0.0": version "18.19.33" resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.33.tgz#98cd286a1b8a5e11aa06623210240bcc28e95c48" integrity sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A== dependencies: undici-types "~5.26.4" +"@types/node@^20.9.0": + version "20.16.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.16.2.tgz#9e388f503a5af306e8c63319334887390966a11e" + integrity sha512-91s/n4qUPV/wg8eE9KHYW1kouTfDk2FPGjXbBMfRWP/2vg1rCXNQL1OCabwGs0XSdukuK+MwCDXE30QpSeMUhQ== + dependencies: + undici-types "~6.19.2" + "@types/normalize-package-data@^2.4.0": version "2.4.4" resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" @@ -3903,6 +3931,11 @@ add-stream@^1.0.0: resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" integrity sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ== +advanced-mark.js@^2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/advanced-mark.js/-/advanced-mark.js-2.6.0.tgz#86ea8b81152b543db91b1602df4e69282c3b0083" + integrity sha512-b6Q7iNkXk1BTUvmbvtig+/p3Z54qDQqOoOKPJUZXYtCdgeZPz/qj9xZs6GKKQA2/OIOrlNwSt/OvyIq06eYPVw== + agent-base@5: version "5.1.1" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-5.1.1.tgz#e8fb3f242959db44d63be665db7a8e739537a32c" @@ -6307,13 +6340,13 @@ electron-window@^0.8.0: dependencies: is-electron-renderer "^2.0.0" -electron@^28.2.8: - version "28.3.3" - resolved "https://registry.yarnpkg.com/electron/-/electron-28.3.3.tgz#2df898f653c4f77b66b4cf3eeba79d8bea6d03c0" - integrity sha512-ObKMLSPNhomtCOBAxFS8P2DW/4umkh72ouZUlUKzXGtYuPzgr1SYhskhFWgzAsPtUzhL2CzyV2sfbHcEW4CXqw== +electron@^30.1.2: + version "30.4.0" + resolved "https://registry.yarnpkg.com/electron/-/electron-30.4.0.tgz#66641a644059147f0e597e49999599e23dcdbfe3" + integrity sha512-ric3KLPQ9anXYjtTDkj5NbEcXZqRUwqxrxTviIjLdMdHqd5O+hkSHEzXgbSJUOt+7uw+zZuybn9+IM9y7iEpqg== dependencies: "@electron/get" "^2.0.0" - "@types/node" "^18.11.18" + "@types/node" "^20.9.0" extract-zip "^2.0.1" emoji-regex@^8.0.0: @@ -7056,6 +7089,11 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" +fflate@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/fflate/-/fflate-0.8.2.tgz#fc8631f5347812ad6028bbe4a2308b2792aa1dea" + integrity sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A== + figures@3.2.0, figures@^3.0.0: version "3.2.0" resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" @@ -8614,6 +8652,11 @@ isobject@^3.0.1: resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== +isomorphic.js@^0.2.4: + version "0.2.5" + resolved "https://registry.yarnpkg.com/isomorphic.js/-/isomorphic.js-0.2.5.tgz#13eecf36f2dba53e85d355e11bf9d4208c6f7f88" + integrity sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw== + iterator.prototype@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.2.tgz#5e29c8924f01916cb9335f1ff80619dcff22b0c0" @@ -9023,6 +9066,13 @@ levn@^0.4.1: prelude-ls "^1.2.1" type-check "~0.4.0" +lib0@^0.2.52, lib0@^0.2.85, lib0@^0.2.86, lib0@^0.2.94: + version "0.2.97" + resolved "https://registry.yarnpkg.com/lib0/-/lib0-0.2.97.tgz#a68d7c88577ac1910cdbe5204bac070f07c8e0b4" + integrity sha512-Q4d1ekgvufi9FiHkkL46AhecfNjznSL9MRNoJRQ76gBHS9OqU2ArfQK0FvBpuxgWeJeNI0LVgAYMIpsGeX4gYg== + dependencies: + isomorphic.js "^0.2.4" + libnpmaccess@^6.0.3: version "6.0.4" resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-6.0.4.tgz#2dd158bd8a071817e2207d3b201d37cf1ad6ae6b" @@ -9942,10 +9992,10 @@ mute-stream@0.0.8, mute-stream@~0.0.4: resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== -nan@2.18.0, nan@^2.14.0, nan@^2.17.0, nan@^2.18.0: - version "2.18.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.18.0.tgz#26a6faae7ffbeb293a39660e88a76b82e30b7554" - integrity sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w== +nan@2.20.0, nan@^2.14.0, nan@^2.17.0, nan@^2.18.0: + version "2.20.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.20.0.tgz#08c5ea813dd54ed16e5bd6505bf42af4f7838ca3" + integrity sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw== nano@^10.1.3: version "10.1.3" @@ -10503,6 +10553,26 @@ onetime@^5.1.0, onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" +open-collaboration-protocol@0.2.0, open-collaboration-protocol@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/open-collaboration-protocol/-/open-collaboration-protocol-0.2.0.tgz#f3f93f22bb5fbb46e3fd31e6bb87f52a9ce6526b" + integrity sha512-ZaLMTMyVoJJ0vPjoMXGhNZqiycbfyJPbNCkbI9uHTOYRsvZqreRAFhSd7p9RbxLJNS5xeQGNSfldrhhec94Bmg== + dependencies: + base64-js "^1.5.1" + fflate "^0.8.2" + msgpackr "^1.10.2" + semver "^7.6.2" + socket.io-client "^4.7.5" + +open-collaboration-yjs@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/open-collaboration-yjs/-/open-collaboration-yjs-0.2.0.tgz#7c7e30dba444b9f6947fe76ae02a7c3fdaec6172" + integrity sha512-HT2JU/HJObIaQMF/MHt5/5VdOnGn+bVTaTJnyYfyaa/vjqg4Z4Glas3Hc9Ua970ssP3cOIRUQoHQumM0giaxrw== + dependencies: + lib0 "^0.2.94" + open-collaboration-protocol "^0.2.0" + y-protocols "^1.0.6" + open@^7.4.2: version "7.4.2" resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" @@ -12047,6 +12117,11 @@ semver@^7.0.0, semver@^7.1.1, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semve resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.1.tgz#60bfe090bf907a25aa8119a72b9f90ef7ca281b2" integrity sha512-f/vbBsu+fOiYt+lmwZV0rVwJScl46HppnOA1ZvIuBWKOTlllpyJ3bfVax76/OrhCH38dyxoDIA8K7uB963IYgA== +semver@^7.6.2: + version "7.6.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + send@0.18.0: version "0.18.0" resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" @@ -12281,7 +12356,7 @@ socket.io-adapter@~2.5.2: debug "~4.3.4" ws "~8.11.0" -socket.io-client@^4.5.3: +socket.io-client@^4.5.3, socket.io-client@^4.7.5: version "4.7.5" resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.7.5.tgz#919be76916989758bdc20eec63f7ee0ae45c05b7" integrity sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ== @@ -13354,6 +13429,11 @@ undici-types@~5.26.4: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== +undici-types@~6.19.2: + version "6.19.8" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02" + integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== + unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" @@ -14082,6 +14162,13 @@ xterm@^5.3.0: resolved "https://registry.yarnpkg.com/xterm/-/xterm-5.3.0.tgz#867daf9cc826f3d45b5377320aabd996cb0fce46" integrity sha512-8QqjlekLUFTrU6x7xck1MsPzPA571K5zNqWm0M0oroYEWVOptZ0+ubQSkQ3uxIEhcIHRujJy6emDWX4A7qyFzg== +y-protocols@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/y-protocols/-/y-protocols-1.0.6.tgz#66dad8a95752623443e8e28c0e923682d2c0d495" + integrity sha512-vHRF2L6iT3rwj1jub/K5tYcTT/mEYDUppgNPXwp8fmLpui9f7Yeq3OEtTLVF012j39QnV+KEQpNqoN7CWU7Y9Q== + dependencies: + lib0 "^0.2.85" + y18n@^4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" @@ -14223,6 +14310,13 @@ yauzl@^2.10.0, yauzl@^2.4.2, yauzl@^2.9.2: buffer-crc32 "~0.2.3" fd-slicer "~1.1.0" +yjs@^13.6.7: + version "13.6.18" + resolved "https://registry.yarnpkg.com/yjs/-/yjs-13.6.18.tgz#d1575203478bc99ad1b89c098e7d4bacb7f91c3b" + integrity sha512-GBTjO4QCmv2HFKFkYIJl7U77hIB1o22vSCSQD1Ge8ZxWbIbn8AltI4gyXbtL+g5/GJep67HCMq3Y5AmNwDSyEg== + dependencies: + lib0 "^0.2.86" + yn@3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"