From 6d13b00018d8b148b05d2099ddfe09cfe4b6daf6 Mon Sep 17 00:00:00 2001 From: Giacomo Cusinato <7659518+giacomocusinato@users.noreply.github.com> Date: Tue, 11 Mar 2025 21:49:58 +0700 Subject: [PATCH] chore: use `theia@1.48.3` --- arduino-ide-extension/package.json | 44 +- .../theia/core/electron-window-service.ts | 8 +- electron-app/package.json | 30 +- package.json | 2 +- yarn.lock | 817 +++++++++++------- 5 files changed, 525 insertions(+), 376 deletions(-) diff --git a/arduino-ide-extension/package.json b/arduino-ide-extension/package.json index 87c9fe73..e69f7204 100644 --- a/arduino-ide-extension/package.json +++ b/arduino-ide-extension/package.json @@ -24,29 +24,29 @@ }, "dependencies": { "@grpc/grpc-js": "^1.8.14", - "@theia/application-package": "1.47.0", - "@theia/core": "1.47.0", - "@theia/debug": "1.47.0", - "@theia/editor": "1.47.0", - "@theia/electron": "1.47.0", - "@theia/filesystem": "1.47.0", - "@theia/keymaps": "1.47.0", - "@theia/markers": "1.47.0", - "@theia/messages": "1.47.0", - "@theia/monaco": "1.47.0", + "@theia/application-package": "1.48.3", + "@theia/core": "1.48.3", + "@theia/debug": "1.48.3", + "@theia/editor": "1.48.3", + "@theia/electron": "1.48.3", + "@theia/filesystem": "1.48.3", + "@theia/keymaps": "1.48.3", + "@theia/markers": "1.48.3", + "@theia/messages": "1.48.3", + "@theia/monaco": "1.48.3", "@theia/monaco-editor-core": "1.83.101", - "@theia/navigator": "1.47.0", - "@theia/outline-view": "1.47.0", - "@theia/output": "1.47.0", - "@theia/plugin-ext": "1.47.0", - "@theia/plugin-ext-vscode": "1.47.0", - "@theia/preferences": "1.47.0", - "@theia/scm": "1.47.0", - "@theia/search-in-workspace": "1.47.0", - "@theia/terminal": "1.47.0", - "@theia/test": "1.47.0", - "@theia/typehierarchy": "1.47.0", - "@theia/workspace": "1.47.0", + "@theia/navigator": "1.48.3", + "@theia/outline-view": "1.48.3", + "@theia/output": "1.48.3", + "@theia/plugin-ext": "1.48.3", + "@theia/plugin-ext-vscode": "1.48.3", + "@theia/preferences": "1.48.3", + "@theia/scm": "1.48.3", + "@theia/search-in-workspace": "1.48.3", + "@theia/terminal": "1.48.3", + "@theia/test": "1.48.3", + "@theia/typehierarchy": "1.48.3", + "@theia/workspace": "1.48.3", "@tippyjs/react": "^4.2.5", "@types/auth0-js": "^9.21.3", "@types/btoa": "^1.2.3", diff --git a/arduino-ide-extension/src/electron-browser/theia/core/electron-window-service.ts b/arduino-ide-extension/src/electron-browser/theia/core/electron-window-service.ts index 74787ae6..67adac60 100644 --- a/arduino-ide-extension/src/electron-browser/theia/core/electron-window-service.ts +++ b/arduino-ide-extension/src/electron-browser/theia/core/electron-window-service.ts @@ -1,8 +1,5 @@ import { Deferred } from '@theia/core/lib/common/promise-util'; -import type { - NewWindowOptions, - WindowSearchParams, -} from '@theia/core/lib/common/window'; +import type { NewWindowOptions } from '@theia/core/lib/common/window'; import { ElectronWindowService as TheiaElectronWindowService } from '@theia/core/lib/electron-browser/window/electron-window-service'; import { injectable, postConstruct } from '@theia/core/shared/inversify'; import { WindowServiceExt } from '../../../browser/theia/core/window-service-ext'; @@ -10,6 +7,7 @@ import { hasStartupTasks, StartupTasks, } from '../../../electron-common/startup-task'; +import { WindowReloadOptions } from '@theia/core/lib/browser/window/window-service'; @injectable() export class ElectronWindowService @@ -45,7 +43,7 @@ export class ElectronWindowService } // Overridden to support optional task owner params and make `tsc` happy. - override reload(options?: StartupTasks | WindowSearchParams): void { + override reload(options?: StartupTasks | WindowReloadOptions): void { if (hasStartupTasks(options)) { window.electronArduino.requestReload(options); } else { diff --git a/electron-app/package.json b/electron-app/package.json index 6d8dde28..3e62dc67 100644 --- a/electron-app/package.json +++ b/electron-app/package.json @@ -5,24 +5,24 @@ "license": "AGPL-3.0-or-later", "main": "./src-gen/backend/electron-main.js", "dependencies": { - "@theia/core": "1.47.0", - "@theia/debug": "1.47.0", - "@theia/editor": "1.47.0", - "@theia/electron": "1.47.0", - "@theia/filesystem": "1.47.0", - "@theia/keymaps": "1.47.0", - "@theia/messages": "1.47.0", - "@theia/monaco": "1.47.0", - "@theia/navigator": "1.47.0", - "@theia/plugin-ext": "1.47.0", - "@theia/plugin-ext-vscode": "1.47.0", - "@theia/preferences": "1.47.0", - "@theia/terminal": "1.47.0", - "@theia/workspace": "1.47.0", + "@theia/core": "1.48.3", + "@theia/debug": "1.48.3", + "@theia/editor": "1.48.3", + "@theia/electron": "1.48.3", + "@theia/filesystem": "1.48.3", + "@theia/keymaps": "1.48.3", + "@theia/messages": "1.48.3", + "@theia/monaco": "1.48.3", + "@theia/navigator": "1.48.3", + "@theia/plugin-ext": "1.48.3", + "@theia/plugin-ext-vscode": "1.48.3", + "@theia/preferences": "1.48.3", + "@theia/terminal": "1.48.3", + "@theia/workspace": "1.48.3", "arduino-ide-extension": "2.3.5" }, "devDependencies": { - "@theia/cli": "1.47.0", + "@theia/cli": "1.48.3", "7zip-min": "^1.4.4", "chmodr": "^1.2.0", "compression-webpack-plugin": "^9.0.0", diff --git a/package.json b/package.json index 69415035..1b29e9e5 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "**/ip": "^2.0.1" }, "devDependencies": { - "@theia/cli": "1.47.0", + "@theia/cli": "1.48.3", "@typescript-eslint/eslint-plugin": "^5.59.0", "@typescript-eslint/parser": "^5.59.0", "@xhmikosr/downloader": "^13.0.1", diff --git a/yarn.lock b/yarn.lock index 6f6a978d..78e5b3d4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2089,18 +2089,18 @@ dependencies: defer-to-connect "^2.0.1" -"@theia/application-manager@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/application-manager/-/application-manager-1.47.0.tgz#3f8a1521233685f02e9906f255cc5d0d908fe7c1" - integrity sha512-RmtU135IvP6fB6YkEC3Fgj1NzIlbVQbroWGY0nrrjDB9cGsG6TWWMKUYxoowimTP5pKz3sYuc4RAhfDpYN/GoA== +"@theia/application-manager@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/application-manager/-/application-manager-1.48.3.tgz#bb7816848edb82883e569f3475496cfdbd5a6f2c" + integrity sha512-yjFQfSr2rUz104gapdJWNPGlGSW3JVlSzAumn1Z+1P0vdeOUULRlLT43tyeJB4UCBbxQyTUV/fb9tlULwz7HBw== 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.47.0" - "@theia/ffmpeg" "1.47.0" - "@theia/native-webpack-plugin" "1.47.0" + "@theia/application-package" "1.48.3" + "@theia/ffmpeg" "1.48.3" + "@theia/native-webpack-plugin" "1.48.3" "@types/fs-extra" "^4.0.2" "@types/semver" "^7.5.0" babel-loader "^8.2.2" @@ -2122,7 +2122,6 @@ source-map "^0.6.1" source-map-loader "^2.0.1" source-map-support "^0.5.19" - string-replace-loader "^3.1.0" style-loader "^2.0.0" tslib "^2.6.2" umd-compat-loader "^2.1.2" @@ -2131,12 +2130,12 @@ worker-loader "^3.0.8" yargs "^15.3.1" -"@theia/application-package@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/application-package/-/application-package-1.47.0.tgz#01b3a2c81a876fed40d305dbea7f8fce612cc6be" - integrity sha512-qbyJNhgkqceFZylP7Ff3jIz9d3K4eaXnLbq0pfSFNl+PmhbwUUDi+IfaQgqJqRDnS9pamQrVWUarDgVXVcowWg== +"@theia/application-package@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/application-package/-/application-package-1.48.3.tgz#6a18ac06100ec457bf7dc9ffeb6518d7259ac933" + integrity sha512-kb74cZZuI7ufsEwAIg/L8fWXtiDbbpVuxC8+60SJwp8D1QTR1fNl3w5CmS+cUnkeb4mYI2G8VCvGHf1ngGdZJw== dependencies: - "@theia/request" "1.47.0" + "@theia/request" "1.48.3" "@types/fs-extra" "^4.0.2" "@types/semver" "^7.5.0" "@types/write-json-file" "^2.2.1" @@ -2149,40 +2148,40 @@ tslib "^2.6.2" write-json-file "^2.2.0" -"@theia/bulk-edit@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/bulk-edit/-/bulk-edit-1.47.0.tgz#c4df3727ea6f5aee4efc38c767684ee82a025d6c" - integrity sha512-Y1oaza7ZTdVfZoMinDtv3bJnPWba47gF+wuXC0tEhfxD1/CfLLtbFNFwdYmkok0TMgL223VAvTV9yKUdC1Wz3w== +"@theia/bulk-edit@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/bulk-edit/-/bulk-edit-1.48.3.tgz#bb371a6a39d7ae63ba07a6f9b0a17ce9278b7eca" + integrity sha512-3fOc1O3d2GSJIlkva9Uq/2/JhD7aJcfkaxHhB5Pv4+plLCq/praEAPzXFpEVZjk4SNzwZQEUFmQno7wpWvq/zg== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/monaco" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/monaco" "1.48.3" "@theia/monaco-editor-core" "1.83.101" - "@theia/workspace" "1.47.0" + "@theia/workspace" "1.48.3" tslib "^2.6.2" -"@theia/callhierarchy@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/callhierarchy/-/callhierarchy-1.47.0.tgz#722a775868e09b1107f2817f7a791b57151a0152" - integrity sha512-vkNwOshKpa4UgtGiMzm77h0Cu5XK2FdkusRAmX7r+d++OJOaPsy8v0YcPtJ1x2/Iox8aiPSe5moKh13fxxQ57A== +"@theia/callhierarchy@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/callhierarchy/-/callhierarchy-1.48.3.tgz#cae9a0e5c7432cdc0cb0a046243925128774a305" + integrity sha512-a8Ai920EDEB964lxO/Yweowm7v3NsSgt/8uywTQ5xPiFDI7xUYRgXEXtkJQQb6mEObM7FoPay3cM3PfZq83alA== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" ts-md5 "^1.2.2" tslib "^2.6.2" -"@theia/cli@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/cli/-/cli-1.47.0.tgz#7fe2f79c48b0cbe5ce84979c63bdf6fdcf4cee1a" - integrity sha512-ROwx2wxJzYVJ5BWTR4B/pyQbm2XhcKGj40iCpciBu1HbP6qlIrntjHSS0rZBt9tj15Uw28NI5vwqM8/kGdqn6A== +"@theia/cli@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/cli/-/cli-1.48.3.tgz#af556ba288273afd610d76b6e38e11821c434d11" + integrity sha512-9icWtaE8lVdGU2J8EaYGIA745ESDfRQDSV/Z/8aVDP3cp1SjfeJsMlOUtR/tMHaC6ynfwZ4osKx/NAElAbhGEg== dependencies: - "@theia/application-manager" "1.47.0" - "@theia/application-package" "1.47.0" - "@theia/ffmpeg" "1.47.0" - "@theia/localization-manager" "1.47.0" - "@theia/ovsx-client" "1.47.0" - "@theia/request" "1.47.0" + "@theia/application-manager" "1.48.3" + "@theia/application-package" "1.48.3" + "@theia/ffmpeg" "1.48.3" + "@theia/localization-manager" "1.48.3" + "@theia/ovsx-client" "1.48.3" + "@theia/request" "1.48.3" "@types/chai" "^4.2.7" "@types/mocha" "^10.0.0" "@types/node-fetch" "^2.5.7" @@ -2195,6 +2194,7 @@ limiter "^2.1.0" log-update "^4.0.0" mocha "^10.1.0" + patch-package "^8.0.0" puppeteer "19.7.2" puppeteer-core "19.7.2" puppeteer-to-istanbul "1.4.0" @@ -2202,21 +2202,21 @@ tslib "^2.6.2" yargs "^15.3.1" -"@theia/console@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/console/-/console-1.47.0.tgz#d4aa8af24de6c8deffb46a8bf10a8d094ac5c09b" - integrity sha512-ur9NfIXhR/ck+u35ddXfl72Nj04cNTpQiYnOz+wX5uGtL0WZh2j2orvFq8eJPErk7Ats5c/3GnJjUim9l2TlQg== +"@theia/console@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/console/-/console-1.48.3.tgz#27744b42d46b02b2a266600c4094e51708d0c71e" + integrity sha512-gKcopLDBNz3wkTP+6+Lcj3fno+jM0S8teywERfvZa/F1zTCesNKqnN9CinbD4Oz6enby/3T5PYn7KpUqea/mjw== dependencies: - "@theia/core" "1.47.0" - "@theia/monaco" "1.47.0" + "@theia/core" "1.48.3" + "@theia/monaco" "1.48.3" "@theia/monaco-editor-core" "1.83.101" anser "^2.0.1" tslib "^2.6.2" -"@theia/core@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/core/-/core-1.47.0.tgz#4572f384ff8181572a2c44f4b0763408c0619d3e" - integrity sha512-ChA/+HTy4xNcAtmH+d+tzD8EG+rmshvKD6qMiYCePQvcfNpoOgz8R8CY6U+vacmToXYOPFnKq+dSJYW/Qyesww== +"@theia/core@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/core/-/core-1.48.3.tgz#904a8a0cadeb67885356f6318d4aeb2f69b5d69f" + integrity sha512-jtBhvhUzV7qSuehh73zT4KFCsXHX6tVvogGocSda9POhm1FAXnUFrxk/gRKeA7YkxhJzgGjoEvI1dRaXFdYo3Q== dependencies: "@babel/runtime" "^7.10.0" "@phosphor/algorithm" "1" @@ -2229,8 +2229,8 @@ "@phosphor/signaling" "1" "@phosphor/virtualdom" "1" "@phosphor/widgets" "1" - "@theia/application-package" "1.47.0" - "@theia/request" "1.47.0" + "@theia/application-package" "1.48.3" + "@theia/request" "1.48.3" "@types/body-parser" "^1.16.4" "@types/cookie" "^0.3.3" "@types/dompurify" "^2.2.2" @@ -2289,86 +2289,86 @@ ws "^8.14.1" yargs "^15.3.1" -"@theia/debug@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/debug/-/debug-1.47.0.tgz#bd51f583c4124e9a40c4b27f83673f18969c771d" - integrity sha512-JrrPmpe5scUGzMUuNDwH2gn4lTiFnEJ4c2PUCtlHKhTpaIXrPG9Rzy+UQz/HI0vM1fGbhvpgu7AmPUXeciz6kg== +"@theia/debug@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/debug/-/debug-1.48.3.tgz#f773144b6464e682d792899b2f1b115060f6ae6c" + integrity sha512-SwUbfLzdk2Nsg47meowUfz/8zBD6W3RXNxhuUBildH1+mKh4Q607Lmksy93ZWlkWYn0xP/KCK5kNRLT2hWk5ag== dependencies: - "@theia/console" "1.47.0" - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/markers" "1.47.0" - "@theia/monaco" "1.47.0" + "@theia/console" "1.48.3" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/markers" "1.48.3" + "@theia/monaco" "1.48.3" "@theia/monaco-editor-core" "1.83.101" - "@theia/output" "1.47.0" - "@theia/process" "1.47.0" - "@theia/task" "1.47.0" - "@theia/terminal" "1.47.0" - "@theia/variable-resolver" "1.47.0" - "@theia/workspace" "1.47.0" + "@theia/output" "1.48.3" + "@theia/process" "1.48.3" + "@theia/task" "1.48.3" + "@theia/terminal" "1.48.3" + "@theia/variable-resolver" "1.48.3" + "@theia/workspace" "1.48.3" "@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/editor-preview@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/editor-preview/-/editor-preview-1.47.0.tgz#29a014ceb148757bcd556e84e8d976ee1f08db71" - integrity sha512-JMGQ84k+WI8bBwraPJTkbmNgXezZTKtvRJ5e2uqjP7pIk7m/L2fHaZQAFML0hfYLxQJDTp47LYb/+bDFkiD+fQ== +"@theia/editor-preview@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/editor-preview/-/editor-preview-1.48.3.tgz#ca0b62cd45f1527380095d3c1af860d0839f2aa0" + integrity sha512-0awFFIQwE2iprb+tE56uNKq5f3kkZYGq1gFPkATaG46TakoBy1TK9uTJs2h6yGDxfBw1FZIzloSE4tOghqfGlA== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/navigator" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/navigator" "1.48.3" tslib "^2.6.2" -"@theia/editor@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/editor/-/editor-1.47.0.tgz#b074ed5c4a540f1fd86b738774bc9dcc25dc46c9" - integrity sha512-/fFbznUGGW9DSfPGQCexKqmn3pWuefzHSd98lKtIpMYvlcxifAbhYiFAQC4mDNkSWu+qZ76eB3LtsV4rz+Imqg== +"@theia/editor@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/editor/-/editor-1.48.3.tgz#8a600c794237553188cf9073122d8e31734e50d7" + integrity sha512-8r60S0/pgqRnlw4ROeSHu+ScMHT0zIm7e18nKaadspZ/SBU3SOJRpFbBGzZHf+pm8vIy0uXnHKq5fbbOxyhFsg== dependencies: - "@theia/core" "1.47.0" - "@theia/variable-resolver" "1.47.0" + "@theia/core" "1.48.3" + "@theia/variable-resolver" "1.48.3" tslib "^2.6.2" -"@theia/electron@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/electron/-/electron-1.47.0.tgz#cad543b3a397dde6318e8c8a9951795ac62682b9" - integrity sha512-uIqg9K7ajsUn5qBQsBvS0zJAdAGWHNYSWliD4JnvrfnC0VxxLff1OEks0ZLhWBkTtI83NKgrxCEWstzHdfXONA== +"@theia/electron@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/electron/-/electron-1.48.3.tgz#797033f48ea00096f90ddd1aa031beabe46fc47d" + integrity sha512-MVgrW3C6ObQ23h9U2XSpMy+F8m8mTS7OklQNzEs+t9gqPUtnemB+lmZu5XvR7+29pdLXQ3SMDCqPofm0orOShw== dependencies: electron-store "^8.0.0" fix-path "^3.0.0" native-keymap "^2.2.1" -"@theia/ffmpeg@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/ffmpeg/-/ffmpeg-1.47.0.tgz#effda99e4757020fe9415a4ec777c9dadee87842" - integrity sha512-8lAkn3gdAjjCHGEYtX9EefMn+u7VhrOQCxs0GL8X7NQC5gKfNf7b+5IWDRjxdjRUO66ws6frpSWYZHX0tmHafw== +"@theia/ffmpeg@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/ffmpeg/-/ffmpeg-1.48.3.tgz#d0fa976c8b1221db4425f7149a1908b7c310fd02" + integrity sha512-HvLawxLi6FMeo/wFP1RxvQPjNJc0TSBil89bxR7g5+i6k7drQzGo+W69vV8Dx+CxJpnI70DIb+XOl0SSFXDmaw== dependencies: "@electron/get" "^2.0.0" tslib "^2.6.2" unzipper "^0.9.11" -"@theia/file-search@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/file-search/-/file-search-1.47.0.tgz#7a2665532ee37a1d8f5f3093756b7deb3d26f061" - integrity sha512-Xxr4rFR0JE8rzt4kIocunvN+5JAGf/dUKPX+Ey4X7/JrUsWKfZd/+V+CtxmSWKbtnqncTS++xn4kSB/vj0fjqA== +"@theia/file-search@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/file-search/-/file-search-1.48.3.tgz#ea3be260553b302cb09db31d7bfa3fe045f2cdf6" + integrity sha512-J3fMguqHA5Ii1b7/7UtTDFjpxAUk4gVJwxLDIwkPVjyZpVDE5cl7aZEzYNmcrOigTz+PVty16M/wjKlPJCsKQQ== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/process" "1.47.0" - "@theia/workspace" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/process" "1.48.3" + "@theia/workspace" "1.48.3" "@vscode/ripgrep" "^1.14.2" tslib "^2.6.2" -"@theia/filesystem@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/filesystem/-/filesystem-1.47.0.tgz#2fb7f1d212897bd7afce0e1fb4c307e364a1a308" - integrity sha512-Va+6zdN5JYvoYLJi7KOQPCmc54x1HEMECSKhMq2B9A/EtqSAhJAQN+45PhQ5Qhsv3/DCr70Avmgj6liwsL7wqQ== +"@theia/filesystem@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/filesystem/-/filesystem-1.48.3.tgz#1764332152c8e26e5013b0f5f21e621e1538b58e" + integrity sha512-qkh1dcZNHc4FSnnRSuBDIxWT9WlWFUNYAoSPcUrJ5SWfIsfHBa6X3lKXQAi8C4PwdwgiQsnvcYTkMLF/+3g9Mg== dependencies: - "@theia/core" "1.47.0" + "@theia/core" "1.48.3" "@types/body-parser" "^1.17.0" "@types/multer" "^1.4.7" "@types/rimraf" "^2.0.2" @@ -2386,23 +2386,23 @@ tslib "^2.6.2" vscode-languageserver-textdocument "^1.0.1" -"@theia/keymaps@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/keymaps/-/keymaps-1.47.0.tgz#d1acbb6e9797f31d56790ecd6a4031fa5ce71020" - integrity sha512-Emu+MH249PgA3xzmAE9jqwj6Qi3KAO1wFj+JApbjWVw0F9pBGIjTq8iYSUAVBprWwPk6u40pG93jouySgaToVg== +"@theia/keymaps@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/keymaps/-/keymaps-1.48.3.tgz#1707731ee46d78a30229194a8c48be4287191d46" + integrity sha512-/qTmSwzLyA+Joa414VmhPhwp/fcaAvewn/PZysdzESwyYhk2knLTSCJGVzmTxCvTDediGz4R7KEejkxifzRygA== dependencies: - "@theia/core" "1.47.0" - "@theia/monaco" "1.47.0" + "@theia/core" "1.48.3" + "@theia/monaco" "1.48.3" "@theia/monaco-editor-core" "1.83.101" - "@theia/preferences" "1.47.0" - "@theia/userstorage" "1.47.0" + "@theia/preferences" "1.48.3" + "@theia/userstorage" "1.48.3" jsonc-parser "^2.2.0" tslib "^2.6.2" -"@theia/localization-manager@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/localization-manager/-/localization-manager-1.47.0.tgz#918b95628e0de9a100ac556861a4164910e409cd" - integrity sha512-+FQh5wUYAFu5pNUVfkNpo504YaJ30/Ycpj5aq342XOnOQmvdT7Fq5vQ9tFkOY5YvlDmZATqBXytIGu73cXDWXQ== +"@theia/localization-manager@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/localization-manager/-/localization-manager-1.48.3.tgz#d2b46876606caea7f600784b0f1debfe4a7c5b25" + integrity sha512-Pg2dQrKfyL/d6WmasYcBbN1HRHF8wKfAPbJgRfRUE5aActZi/NGj3ilDwMc99xsQtPeuIHFyd/FBMuU4a5jqxw== dependencies: "@types/bent" "^7.0.1" "@types/fs-extra" "^4.0.2" @@ -2414,22 +2414,22 @@ tslib "^2.6.2" typescript "~4.5.5" -"@theia/markers@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/markers/-/markers-1.47.0.tgz#df9321b315974d984921d7ecc21f81b6b8fd0ed9" - integrity sha512-KpJCzKq++tXjtWiISXGIdS6pjIHGSBuI/6TFmfv6fwK+XEwnV7W0KkZ2F0gxQMKQV1jsl0SIK0biElt2J3dr7w== +"@theia/markers@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/markers/-/markers-1.48.3.tgz#687063d3cc45a78c5bc2702aa3535155808dc82d" + integrity sha512-Cc3xqaM8TfnhY0abb/VxtIIrffMea73nVEzjFPEgBGKgwW+1+6X4oeMuu37b1G4mKE2x6lmAfctuLwD7Mk90jQ== dependencies: - "@theia/core" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/workspace" "1.47.0" + "@theia/core" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/workspace" "1.48.3" tslib "^2.6.2" -"@theia/messages@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/messages/-/messages-1.47.0.tgz#c685cfc42dcc347ce5b00eb6a3677779d678648f" - integrity sha512-Yr32+K3K5T4Z4wVl/Sw/ckwrEGljIFcPPDkk/hr4VifMq/feJcPvaztfAfYw8i2HaGDWFjG/7Ck2Zl7q1aWKSw== +"@theia/messages@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/messages/-/messages-1.48.3.tgz#50c9ab35e49331f18a701a5896097c36f9273b05" + integrity sha512-Y2sfpnKQN9AzPHR0WKsCpjT2DOU/8b82KLVMuIx9XVMuML75Cyz0PJRlPIHg3OQ5rW2cR4ii77+1paRkCdhPrw== dependencies: - "@theia/core" "1.47.0" + "@theia/core" "1.48.3" react-perfect-scrollbar "^1.5.3" ts-md5 "^1.2.2" tslib "^2.6.2" @@ -2439,18 +2439,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.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/monaco/-/monaco-1.47.0.tgz#df5630bdddb86ed08cd36b5d4c4539146cc9dea5" - integrity sha512-Nm2urqzAMKevcHk54vEhe+iNO5n9MyaRNU8CHNZLE3e5xbuSI1EnllcjwJOqVCNDjPGM8iMfjiKMF9b4zQS/aA== +"@theia/monaco@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/monaco/-/monaco-1.48.3.tgz#091770642d4332524ccf7155a832e29f642dac5a" + integrity sha512-xOdU1wPChYcRUeiOGQIEdq9RcTpqRbcGEPbabisjWkeS3YMB+GX2HD2xu0g7DCY4fdx84+EGT9cdnS1koZaJEw== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/markers" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/markers" "1.48.3" "@theia/monaco-editor-core" "1.83.101" - "@theia/outline-view" "1.47.0" - "@theia/workspace" "1.47.0" + "@theia/outline-view" "1.48.3" + "@theia/workspace" "1.48.3" fast-plist "^0.1.2" idb "^4.0.5" jsonc-parser "^2.2.0" @@ -2458,121 +2458,122 @@ vscode-oniguruma "1.6.1" vscode-textmate "^9.0.0" -"@theia/native-webpack-plugin@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/native-webpack-plugin/-/native-webpack-plugin-1.47.0.tgz#b1594e078a5b1cbd56660de0dc6c890c69d3ba64" - integrity sha512-6m+gtU/u01ZrEhJ4mKl5tODngxGBt687JOvDdDA8ypW6U0ht/Bfe6q0x1EJCHAwuTWGSaJg7CoYY8AXaJYJcCw== +"@theia/native-webpack-plugin@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/native-webpack-plugin/-/native-webpack-plugin-1.48.3.tgz#213e1b6bd57622affa692e2ee7caff258c207cb2" + integrity sha512-kftpoRBH8NPi0sK1Cy4/P0zaykvTuNmuWDqn/QDFVw/Q5vfFTQqbHoIZe8czL8Gl/lF5sf5VHzAvsFFKJESyjw== dependencies: tslib "^2.6.2" webpack "^5.76.0" -"@theia/navigator@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/navigator/-/navigator-1.47.0.tgz#2c4c81d1564de69ce590d4830ac770f3465ecf6b" - integrity sha512-rEr6t+4Zj8MkS1ZMXRfkLy+NrhuWg805Q+dCNpQmI4V9juyJ4DjiHBDHohFOcBW9JMyIufgeOSyD3y+g5Xb+Gw== +"@theia/navigator@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/navigator/-/navigator-1.48.3.tgz#5eca91e5d5813224e3bcc1e20a0c59b5f6997c7a" + integrity sha512-19boWO4bCFX/HDHLm28u78tZ8GDVksD0hup7lBVd8lsVQflD5qyWOD/exjhd0FU44sCL2/znkrbAGu0IM0uoQg== dependencies: - "@theia/core" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/workspace" "1.47.0" + "@theia/core" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/workspace" "1.48.3" minimatch "^5.1.0" tslib "^2.6.2" -"@theia/notebook@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/notebook/-/notebook-1.47.0.tgz#34ee0ac7a335c8f35360da5f0a811d4521e12e41" - integrity sha512-s8xzTE88BtXk2DppjCTj4pPPHzMz//1iLij6XPjKB3Wn1Ct9+U+FAgvq5SlJTSH9v0lenns4RS8zZ5DCjImTxA== +"@theia/notebook@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/notebook/-/notebook-1.48.3.tgz#9763e864cda5dfed3dd8776392a09263be02d6c6" + integrity sha512-+iNig/uVh67shHXpfUU5vaSW3wfFUmchFIzkt6pWdn5yy9FN77XPfiGldIPcVFyTcDylAblPNI0TfHQm8TamXQ== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/monaco" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/monaco" "1.48.3" + "@theia/monaco-editor-core" "1.83.101" react-perfect-scrollbar "^1.5.8" tslib "^2.6.2" -"@theia/outline-view@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/outline-view/-/outline-view-1.47.0.tgz#94f07b125056306a336adf6838437f53ad776838" - integrity sha512-OoSZ/+qwJuIm5lR2dLgnulXpvMHloCqz3dFidfUleVSyMust11XJ2kziF+fDs58JBGnEd0VasVSnxJK+hhf6TA== +"@theia/outline-view@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/outline-view/-/outline-view-1.48.3.tgz#fc0d1196b4259b5f9c5ccf0e371a05d96be3ddf1" + integrity sha512-Ad5wEfvOLSguGBk/b9uyHdKTkPT3ghP7ifgKIsQG/pc1kAjoq0PU4nz2FYgvi4HJUt0SLUl3PuNEW4VsIF5E5g== dependencies: - "@theia/core" "1.47.0" + "@theia/core" "1.48.3" tslib "^2.6.2" -"@theia/output@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/output/-/output-1.47.0.tgz#227f02baf6b8a08372e1b0ea4426622e09db6595" - integrity sha512-GvIJF2xlne6uEDtGZxwXc4wG2vTkaI/UgXuNyRKrsrlw+bKcFODfZYNmsH/szl4vmjdKgCxJKpQ1AxL+VpfQ0w== +"@theia/output@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/output/-/output-1.48.3.tgz#15966c84e703650a4a5f98d95d3ab46bdc12d1d5" + integrity sha512-jJxO7ahBoumvL0n+hHaOfL5okaKQCc4iY9RzDBOXzrAWYpOaY2spQQF5aGStKnZR0eM4386y6XIeDCspv/7cow== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/monaco" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/monaco" "1.48.3" "@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.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/ovsx-client/-/ovsx-client-1.47.0.tgz#915bd165a09941999e206f9ce9a7379694f3eb52" - integrity sha512-u5IN5ZBsDPZyi8+Kl35Rzu8sA5QEuqPT8uVQVhMRuGXxjWDHzamh3BdLVxjULmjBmkhTahwVNMmfMU6gmxjPZA== +"@theia/ovsx-client@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/ovsx-client/-/ovsx-client-1.48.3.tgz#a907487254fecb96ab585975728e9362232af968" + integrity sha512-qPz3Fn9ygBPQN/KLhfjpU6379rzwgMKrM8CITYPgC8w2rxrLL54bTS0sQ2veV+xZKvL9zCTT+T4Ou4v31tu+aA== dependencies: - "@theia/request" "1.47.0" + "@theia/request" "1.48.3" semver "^7.5.4" tslib "^2.6.2" -"@theia/plugin-ext-vscode@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/plugin-ext-vscode/-/plugin-ext-vscode-1.47.0.tgz#7078e56eca5d1711d8761dbda3ab881c3b9ddcf1" - integrity sha512-vFU492IbrunqmLxnkLbV5n8t413k/RwA/hyK+VmOOHt9ROxUBjpT3MbhtqpztXV89Eg6UaiR26B6YjeuytBpAw== +"@theia/plugin-ext-vscode@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/plugin-ext-vscode/-/plugin-ext-vscode-1.48.3.tgz#90f2f75f49745b2054f83f4f0170e06def1b6e8d" + integrity sha512-ChNjRTmtYZnto2hFNMBgZgFp66xZm3h271GLEzmDq6HSdz6KvXG+z8+0Y0rRZc2sWJJJyLibmh6wMPaQBK1L4w== dependencies: - "@theia/callhierarchy" "1.47.0" - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/monaco" "1.47.0" + "@theia/callhierarchy" "1.48.3" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/monaco" "1.48.3" "@theia/monaco-editor-core" "1.83.101" - "@theia/navigator" "1.47.0" - "@theia/plugin" "1.47.0" - "@theia/plugin-ext" "1.47.0" - "@theia/terminal" "1.47.0" - "@theia/typehierarchy" "1.47.0" - "@theia/userstorage" "1.47.0" - "@theia/workspace" "1.47.0" + "@theia/navigator" "1.48.3" + "@theia/plugin" "1.48.3" + "@theia/plugin-ext" "1.48.3" + "@theia/terminal" "1.48.3" + "@theia/typehierarchy" "1.48.3" + "@theia/userstorage" "1.48.3" + "@theia/workspace" "1.48.3" decompress "^4.2.1" filenamify "^4.1.0" tslib "^2.6.2" -"@theia/plugin-ext@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/plugin-ext/-/plugin-ext-1.47.0.tgz#44b76d1ad43288db8ad8cd86a15c460882bd3b2e" - integrity sha512-axUIaVEYlCEnYjZPPqTuIm9/JBgvyWDSU5yUHTJlLjHPcLkYLXDBe98EFEm3XLF+6fBrFF5dH33q+ME7KcQxVA== +"@theia/plugin-ext@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/plugin-ext/-/plugin-ext-1.48.3.tgz#5ca421e50838599cae9ec601653d5697c19721c9" + integrity sha512-c83OJ+2zbbZp0/HftD2V2eaYYvongTAQ2eNONjq0NmfzVKu46SqPG2G0r1lsYZ9S/aM9njiLARVeStmBou5VdA== dependencies: - "@theia/bulk-edit" "1.47.0" - "@theia/callhierarchy" "1.47.0" - "@theia/console" "1.47.0" - "@theia/core" "1.47.0" - "@theia/debug" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/editor-preview" "1.47.0" - "@theia/file-search" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/markers" "1.47.0" - "@theia/messages" "1.47.0" - "@theia/monaco" "1.47.0" + "@theia/bulk-edit" "1.48.3" + "@theia/callhierarchy" "1.48.3" + "@theia/console" "1.48.3" + "@theia/core" "1.48.3" + "@theia/debug" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/editor-preview" "1.48.3" + "@theia/file-search" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/markers" "1.48.3" + "@theia/messages" "1.48.3" + "@theia/monaco" "1.48.3" "@theia/monaco-editor-core" "1.83.101" - "@theia/navigator" "1.47.0" - "@theia/notebook" "1.47.0" - "@theia/output" "1.47.0" - "@theia/plugin" "1.47.0" - "@theia/preferences" "1.47.0" - "@theia/scm" "1.47.0" - "@theia/search-in-workspace" "1.47.0" - "@theia/task" "1.47.0" - "@theia/terminal" "1.47.0" - "@theia/test" "1.47.0" - "@theia/timeline" "1.47.0" - "@theia/typehierarchy" "1.47.0" - "@theia/variable-resolver" "1.47.0" - "@theia/workspace" "1.47.0" + "@theia/navigator" "1.48.3" + "@theia/notebook" "1.48.3" + "@theia/output" "1.48.3" + "@theia/plugin" "1.48.3" + "@theia/preferences" "1.48.3" + "@theia/scm" "1.48.3" + "@theia/search-in-workspace" "1.48.3" + "@theia/task" "1.48.3" + "@theia/terminal" "1.48.3" + "@theia/test" "1.48.3" + "@theia/timeline" "1.48.3" + "@theia/typehierarchy" "1.48.3" + "@theia/variable-resolver" "1.48.3" + "@theia/workspace" "1.48.3" "@types/mime" "^2.0.1" "@vscode/debugprotocol" "^1.51.0" "@vscode/proxy-agent" "^0.13.2" @@ -2591,56 +2592,56 @@ vhost "^3.0.2" vscode-textmate "^9.0.0" -"@theia/plugin@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/plugin/-/plugin-1.47.0.tgz#f2ea4785928cedf3146225a0f54b6ad32fa07e36" - integrity sha512-r/37lIppZr0bBseHdLSp1VilJ6NSgf0q3b+P6SHKz11VcXJABwlQgCmJRNLBGez13BLzEtDJVU254L4X0U4ihg== +"@theia/plugin@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/plugin/-/plugin-1.48.3.tgz#517e6d342b12d343021681a72f77dfd57a97aad7" + integrity sha512-85VjbRDMa1kW7RzuBmDCo+oIiwl3vPIp1nVLbmBynFBOGh8LkPc1ygmoQPSX1XdJHZ+l1j2dyng4Sh5nrSziyA== -"@theia/preferences@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/preferences/-/preferences-1.47.0.tgz#da8663af4d103e6554e3493cd19aa9ee1e070f3c" - integrity sha512-9sjkfBPrqzIJDLWFkts2PxZmHUmmA0Jf2XBmTEeewJLn6Fyb1uyHqFeU9zda0rsHYBOj2SYhQVJe6tXVnKmuMQ== +"@theia/preferences@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/preferences/-/preferences-1.48.3.tgz#74c2184d6179d4f9b30449284e6c89e7664bfc7e" + integrity sha512-vDs/DOUpnEaKKKgKO5osEs/vk5vO7TJCjtDRVmD8zF5VOzog3gEa4eiK9fl77yit2S0CtcNMZF2nKKRNyqZzgw== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/monaco" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/monaco" "1.48.3" "@theia/monaco-editor-core" "1.83.101" - "@theia/userstorage" "1.47.0" - "@theia/workspace" "1.47.0" + "@theia/userstorage" "1.48.3" + "@theia/workspace" "1.48.3" 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/process@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/process/-/process-1.47.0.tgz#37cad135b84764320f145af9ab9bee90a77ce435" - integrity sha512-Nolrtiq6UudipFwgZ36junWuaGlP4GfdrBhTALgAy5t+9rQ+EpqIvLXopgNyIwjqrELg2VgbTXx/cZqJ3S9oCw== +"@theia/process@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/process/-/process-1.48.3.tgz#0cf52affd9ca45a10dc289dd31e37f857047e13e" + integrity sha512-a0R6zintjMc0KHkXjpkoh7PWJJAm5Ur7ycWbXawkJrZv2LNu3zUtTotgcbfCM4QNUKfcLCQ1f8Dp1cTQ2NsCQw== dependencies: - "@theia/core" "1.47.0" + "@theia/core" "1.48.3" node-pty "0.11.0-beta17" string-argv "^0.1.1" tslib "^2.6.2" -"@theia/request@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/request/-/request-1.47.0.tgz#87af63a862e9f9a535d1899364b2f2ca9d46c560" - integrity sha512-O+kJQ+Xoh5zm+gF7IIx0nEmM6ZmwESMD5ujkh6DKlAy7rATbdZXz/MBfgfCdPM0sNpBxlDswUW1VKarRAtW+KQ== +"@theia/request@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/request/-/request-1.48.3.tgz#d174efb688fa6d5a73096e00e92a962b54834eb8" + integrity sha512-jt7KHRLxdiEw8STnMzxGp42UTQ2RxWoV5bGi76GBX3ldh+fSwjtZbuJ7UstLYixYxVuLacyzZs9UvdRcChjYgw== dependencies: http-proxy-agent "^5.0.0" https-proxy-agent "^5.0.0" tslib "^2.6.2" -"@theia/scm@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/scm/-/scm-1.47.0.tgz#00b85600bdf5c22b975b93bb59873aa331a0b39c" - integrity sha512-G9XQ7uWtF93duNUqaPB9rz44aFmzmOxs86+CANuac0B0HVGA60t3nd7u6MdhnSFhuKHWdvGUUJa0zonJbvko4Q== +"@theia/scm@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/scm/-/scm-1.48.3.tgz#aea5bd595cd2df7d2c7cc5dc470c87ca94b87758" + integrity sha512-ptjWTFd8jLusQSqZ/qG4CrzX1YuBfIwoPM1adSVdR20n/OePsNTbIAr3UxBWLT1ymuCjoSssutw2vFRencgDwg== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/filesystem" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/filesystem" "1.48.3" "@types/diff" "^3.2.2" diff "^3.4.0" p-debounce "^2.1.0" @@ -2648,115 +2649,116 @@ ts-md5 "^1.2.2" tslib "^2.6.2" -"@theia/search-in-workspace@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/search-in-workspace/-/search-in-workspace-1.47.0.tgz#43140c404b924e5f70e5050e4fe002d45c37956e" - integrity sha512-fvnocJbU6HJM2YGzT+z4gRjApR8Vh/KWrlRFw7OyqRrrMOQISsoxOUPxmOz7F0ZkVxbI5gKybFOYwB3lmZs+aQ== +"@theia/search-in-workspace@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/search-in-workspace/-/search-in-workspace-1.48.3.tgz#cee866dc2cd5cae64e56f0f20dc56eea218dfd26" + integrity sha512-wkrgUjxBqiRwTc08SKYhHLwlFg9/B0D+qYlaCj2LRUCcsYMTcgBmX9xuNOFpfaBIPhKl8TfBc0YjjlOpcFV/+A== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/navigator" "1.47.0" - "@theia/process" "1.47.0" - "@theia/workspace" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/navigator" "1.48.3" + "@theia/process" "1.48.3" + "@theia/workspace" "1.48.3" "@vscode/ripgrep" "^1.14.2" minimatch "^5.1.0" react-autosize-textarea "^7.0.0" tslib "^2.6.2" -"@theia/task@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/task/-/task-1.47.0.tgz#785d649a0709e256cd9a68f4de319c658441b161" - integrity sha512-km1sacPx6fbWKVf3WXuHLBAVFZ8Yficml+KOccDFHQOekMUomVjdOJzs+7fhZkppAnuKYiNXcFAq/pjaQaB+Cw== +"@theia/task@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/task/-/task-1.48.3.tgz#695ea1178205a2e52bf98a53e9e5e312af56df65" + integrity sha512-HHRrUqjWufoId79vTT8WBWm+OTDvm9qRFr+c19rjJUnrxDizFNeGvEqRdT1amofFpvkIEdEzHhEnjfCJpzOILQ== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/markers" "1.47.0" - "@theia/monaco" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/markers" "1.48.3" + "@theia/monaco" "1.48.3" "@theia/monaco-editor-core" "1.83.101" - "@theia/process" "1.47.0" - "@theia/terminal" "1.47.0" - "@theia/userstorage" "1.47.0" - "@theia/variable-resolver" "1.47.0" - "@theia/workspace" "1.47.0" + "@theia/process" "1.48.3" + "@theia/terminal" "1.48.3" + "@theia/userstorage" "1.48.3" + "@theia/variable-resolver" "1.48.3" + "@theia/workspace" "1.48.3" async-mutex "^0.3.1" jsonc-parser "^2.2.0" p-debounce "^2.1.0" tslib "^2.6.2" -"@theia/terminal@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/terminal/-/terminal-1.47.0.tgz#47c0b4a2a46d87c0b0a00045c869b0513e9d1581" - integrity sha512-0qeV34t+raW6m2LsXZ2PI9V11l1IuQ+kTJ6vhi6q7MOsSdDvrSog9/NSI2tuZY042xLqBgleuJWWcYgX9GkZUQ== +"@theia/terminal@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/terminal/-/terminal-1.48.3.tgz#406b70ef21177cbe345789a4ac55515405108d7b" + integrity sha512-UaMZwyeQMGH0nxHwLM1qBh8sA2q042NFZLB9zdeBbe6US1g+ZKxJ+e4Twl0u9kE3TGoFz+o4Fb4ToGzXoGLNbg== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/process" "1.47.0" - "@theia/variable-resolver" "1.47.0" - "@theia/workspace" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/file-search" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/process" "1.48.3" + "@theia/variable-resolver" "1.48.3" + "@theia/workspace" "1.48.3" tslib "^2.6.2" xterm "^5.3.0" xterm-addon-fit "^0.8.0" xterm-addon-search "^0.13.0" -"@theia/test@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/test/-/test-1.47.0.tgz#ed56643b6f62fe48c80236f5effa2793eb70638a" - integrity sha512-EXFqPWJLW3BV+sLwuJOEhV/cA8DoVy1TGPpzeOmhRrA/XuzIEQvvxe5oGRiyENOFQpPT7C3upjvfOGJpFHAVHg== +"@theia/test@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/test/-/test-1.48.3.tgz#c30dbd83b49be02143585bf226534b72d665353f" + integrity sha512-tlP2F8YoIGmJAhmh4P79wfITSx8igMz4sJrFTDXJCMjHGD7QCbwbNsb98bucIGlwV9D+Gt4qYMxzQLMk4r/8Ew== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/navigator" "1.47.0" - "@theia/terminal" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/navigator" "1.48.3" + "@theia/terminal" "1.48.3" xterm "^4.16.0" xterm-addon-fit "^0.5.0" -"@theia/timeline@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/timeline/-/timeline-1.47.0.tgz#bb23d02bccbf63a19475555f46acf63e68dd1669" - integrity sha512-vRijkRUWwom0DuWfD8GeATIL+QAQjKXT/kM/pp+vxzi+2RAkF55D+HF/5N/6GAfy285umTB7H8vuz7vxOe8TLg== +"@theia/timeline@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/timeline/-/timeline-1.48.3.tgz#ad74d27d8c8c9e9ec4af93b83efd8cdb4092ae1f" + integrity sha512-60bfXds9kRLG2/KuTYOEEwfsi2PyOUnVsFoEvKgjvT4HUToQ9WYI4ZAeYfTpuZfKyxubKgwOqFsp6UWKHYt3mA== dependencies: - "@theia/core" "1.47.0" - "@theia/navigator" "1.47.0" + "@theia/core" "1.48.3" + "@theia/navigator" "1.48.3" tslib "^2.6.2" -"@theia/typehierarchy@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/typehierarchy/-/typehierarchy-1.47.0.tgz#4aed1d397e33fdd16b0aa49b368a33fdabb28fb9" - integrity sha512-nUIX2QxvVs0bpU3IYAMd5vyQ4CEnbvyMkbEutrnNH2CbgOdjbuk6VN+M5OgwCrg0gFeGeCF8Aez62IT5hPgQTw== +"@theia/typehierarchy@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/typehierarchy/-/typehierarchy-1.48.3.tgz#f6065586480dbdda7977cc53bdde39b61ea87cae" + integrity sha512-a1fVruZYGAPxl5yHY/eTN1G/HPC3rHmvFw9tauSg1OsuNknYkVEXi6w+q9yh3MBf4LjtGwVDf6k3Mj+i9MywRQ== dependencies: - "@theia/core" "1.47.0" - "@theia/editor" "1.47.0" + "@theia/core" "1.48.3" + "@theia/editor" "1.48.3" tslib "^2.6.2" -"@theia/userstorage@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/userstorage/-/userstorage-1.47.0.tgz#749480790b3764b11b5b1e978faad2e22ed2296d" - integrity sha512-t/KrBwra3lO0SFZbLxBz2mfn3mqk/zxanwD8xqM4L/eeaAwBdwQg8AjQ6mUbPcaarXlpJINxMlHKgEGMCw9Q2g== +"@theia/userstorage@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/userstorage/-/userstorage-1.48.3.tgz#0750d8700fdcbf31d60947f1801b5cda50196956" + integrity sha512-B9NJChZ/dRq3jt5uw3RfTQUEAiMQJ6gywNiYfE6fkzQmvI9ocLqWEGxOexPGEaHeN8A+TXjxcCH6F1v8SzTiSA== dependencies: - "@theia/core" "1.47.0" - "@theia/filesystem" "1.47.0" + "@theia/core" "1.48.3" + "@theia/filesystem" "1.48.3" tslib "^2.6.2" -"@theia/variable-resolver@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/variable-resolver/-/variable-resolver-1.47.0.tgz#970d7e5922bb91c364b6c90d20ee107dacf56f13" - integrity sha512-Eytv0ujTtwqs2HU9lZ7iEmQ3OebcUeMqdwJB25zNF/CXT/p47nF0Ymd4I1ZjnUhMJv11JHNw1Qg4hIaIZ7JVMg== +"@theia/variable-resolver@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/variable-resolver/-/variable-resolver-1.48.3.tgz#ab8359791e6b196f58330e3e76e145a6f8996d18" + integrity sha512-fZ3sJ241dYzRj4mS3edWEod7KuRGDWBGB72GUS/ycfymyFvCVYk5Xvk3R44m5b24+6oa9A5mBX9kVX+MzeUKiw== dependencies: - "@theia/core" "1.47.0" + "@theia/core" "1.48.3" tslib "^2.6.2" -"@theia/workspace@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@theia/workspace/-/workspace-1.47.0.tgz#34bb555491d3aa3bf26ed55881f4536b0bd76b52" - integrity sha512-pPIDV7D1ly3lohusOCyQqT5tQydkV7Uvr3yKQqxouSbaRc2//cM39HmMDRx6IkikDF57TH4aIk/V75c6VD1ohQ== +"@theia/workspace@1.48.3": + version "1.48.3" + resolved "https://registry.yarnpkg.com/@theia/workspace/-/workspace-1.48.3.tgz#dc0a320ae13e9b9969f6b22417fa762fc32f1a45" + integrity sha512-F4sE8t118hRTnFSRyO7VivLng8UFF7vxXmUfC8nV3y7msYeG81U51UaqQYJElsn5UzIVRsv+RdKYjr5Q6d6yhg== dependencies: - "@theia/core" "1.47.0" - "@theia/filesystem" "1.47.0" - "@theia/variable-resolver" "1.47.0" + "@theia/core" "1.48.3" + "@theia/filesystem" "1.48.3" + "@theia/variable-resolver" "1.48.3" jsonc-parser "^2.2.0" tslib "^2.6.2" valid-filename "^2.0.1" @@ -4718,6 +4720,14 @@ cacheable-request@^7.0.2: normalize-url "^6.0.1" responselike "^2.0.0" +call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6" + integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.6.tgz#6c46675fc7a5e9de82d75a233d586c8b7ac0d931" @@ -4739,6 +4749,24 @@ call-bind@^1.0.7: get-intrinsic "^1.2.4" set-function-length "^1.2.1" +call-bind@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" + integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-define-property "^1.0.0" + get-intrinsic "^1.2.4" + set-function-length "^1.2.2" + +call-bound@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a" + integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg== + dependencies: + call-bind-apply-helpers "^1.0.2" + get-intrinsic "^1.3.0" + callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -4930,7 +4958,7 @@ ci-info@^2.0.0: resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== -ci-info@^3.2.0, ci-info@^3.6.1: +ci-info@^3.2.0, ci-info@^3.6.1, ci-info@^3.7.0: version "3.9.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== @@ -6027,6 +6055,15 @@ drivelist@^9.0.2, drivelist@^9.2.4: nan "^2.14.0" prebuild-install "^5.2.4" +dunder-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" + integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== + dependencies: + call-bind-apply-helpers "^1.0.1" + es-errors "^1.3.0" + gopd "^1.2.0" + duplexer2@~0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" @@ -6328,7 +6365,7 @@ es-abstract@^1.22.1, es-abstract@^1.22.3: unbox-primitive "^1.0.2" which-typed-array "^1.1.13" -es-define-property@^1.0.0: +es-define-property@^1.0.0, es-define-property@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== @@ -6378,6 +6415,13 @@ es-module-lexer@^1.2.1: resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.4.1.tgz#41ea21b43908fe6a287ffcbe4300f790555331f5" integrity sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w== +es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz#1c4f2c4837327597ce69d2ca190a7fdd172338c1" + integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== + dependencies: + es-errors "^1.3.0" + es-set-tostringtag@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz#11f7cc9f63376930a5f20be4915834f4bc74f9c9" @@ -7046,6 +7090,13 @@ find-up@^4.0.0, find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" +find-yarn-workspace-root@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd" + integrity sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ== + dependencies: + micromatch "^4.0.2" + fix-path@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/fix-path/-/fix-path-3.0.0.tgz#c6b82fd5f5928e520b392a63565ebfef0ddf037e" @@ -7336,6 +7387,22 @@ get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@ has-symbols "^1.0.3" hasown "^2.0.0" +get-intrinsic@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" + integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== + dependencies: + call-bind-apply-helpers "^1.0.2" + es-define-property "^1.0.1" + es-errors "^1.3.0" + es-object-atoms "^1.1.1" + function-bind "^1.1.2" + get-proto "^1.0.1" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" + math-intrinsics "^1.1.0" + get-own-enumerable-property-symbols@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" @@ -7356,6 +7423,14 @@ get-port@5.1.1: resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193" integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== +get-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1" + integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== + dependencies: + dunder-proto "^1.0.1" + es-object-atoms "^1.0.0" + get-stream@6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.0.tgz#3e0012cb6827319da2706e601a1583e8629a6718" @@ -7601,6 +7676,11 @@ gopd@^1.0.1: dependencies: get-intrinsic "^1.1.3" +gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== + got@^11.7.0, got@^11.8.5: version "11.8.6" resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a" @@ -7728,6 +7808,11 @@ has-symbols@^1.0.2, has-symbols@^1.0.3: resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== +has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== + has-tostringtag@^1.0.0, has-tostringtag@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" @@ -7755,6 +7840,13 @@ hasown@^2.0.0: dependencies: function-bind "^1.1.2" +hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + hast-util-whitespace@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz#0ec64e257e6fc216c7d14c8a1b74d27d650b4557" @@ -8513,7 +8605,7 @@ is-what@^3.14.1: resolved "https://registry.yarnpkg.com/is-what/-/is-what-3.14.1.tgz#e1222f46ddda85dead0fd1c9df131760e77755c1" integrity sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA== -is-wsl@^2.2.0: +is-wsl@^2.1.1, is-wsl@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== @@ -8730,6 +8822,17 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== +json-stable-stringify@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.2.1.tgz#addb683c2b78014d0b78d704c2fcbdf0695a60e2" + integrity sha512-Lp6HbbBgosLmJbjx0pBLbgvx68FaFU1sdkmBuckmhhJ88kL13OA51CDtR2yJB50eCNMH9wRqtQNNiAqQH4YXnA== + dependencies: + call-bind "^1.0.8" + call-bound "^1.0.3" + isarray "^2.0.5" + jsonify "^0.0.1" + object-keys "^1.1.1" + json-stringify-safe@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" @@ -8778,6 +8881,11 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" +jsonify@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978" + integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== + jsonparse@^1.2.0, jsonparse@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" @@ -8828,6 +8936,13 @@ kind-of@^6.0.2, kind-of@^6.0.3: resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== +klaw-sync@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c" + integrity sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ== + dependencies: + graceful-fs "^4.1.11" + kleur@^4.0.3: version "4.1.5" resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" @@ -9384,6 +9499,11 @@ matcher@^3.0.0: dependencies: escape-string-regexp "^4.0.0" +math-intrinsics@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" + integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== + mdast-util-definitions@^5.0.0: version "5.1.2" resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz#9910abb60ac5d7115d6819b57ae0bcef07a3f7a7" @@ -10666,6 +10786,14 @@ onetime@^6.0.0: dependencies: mimic-fn "^4.0.0" +open@^7.4.2: + version "7.4.2" + resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" + integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== + dependencies: + is-docker "^2.0.0" + is-wsl "^2.1.1" + open@^8.0.6, open@^8.4.0: version "8.4.2" resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" @@ -10979,6 +11107,27 @@ pascal-case@^3.1.2: no-case "^3.0.4" tslib "^2.0.3" +patch-package@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.0.tgz#d191e2f1b6e06a4624a0116bcb88edd6714ede61" + integrity sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA== + dependencies: + "@yarnpkg/lockfile" "^1.1.0" + chalk "^4.1.2" + ci-info "^3.7.0" + cross-spawn "^7.0.3" + find-yarn-workspace-root "^2.0.0" + fs-extra "^9.0.0" + json-stable-stringify "^1.0.2" + klaw-sync "^6.0.0" + minimist "^1.2.6" + open "^7.4.2" + rimraf "^2.6.3" + semver "^7.5.3" + slash "^2.0.0" + tmp "^0.0.33" + yaml "^2.2.2" + path-browserify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" @@ -12046,7 +12195,7 @@ rfdc@^1.3.0: resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.1.tgz#2b6d4df52dffe8bb346992a10ea9451f24373a8f" integrity sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg== -rimraf@2, rimraf@^2.6.1, rimraf@^2.6.2: +rimraf@2, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@^2.6.3: version "2.7.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== @@ -12339,7 +12488,7 @@ set-function-length@^1.2.0: gopd "^1.0.1" has-property-descriptors "^1.0.1" -set-function-length@^1.2.1: +set-function-length@^1.2.1, set-function-length@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== @@ -12477,6 +12626,11 @@ slash@^1.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" integrity sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg== +slash@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" + integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== + slice-ansi@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" @@ -12770,14 +12924,6 @@ string-natural-compare@^2.0.3: resolved "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-2.0.3.tgz#9dbe1dd65490a5fe14f7a5c9bc686fc67cb9c6e4" integrity sha512-4Kcl12rNjc+6EKhY8QyDVuQTAlMWwRiNbsxnVwBUKFr7dYPQuXVrtNU4sEkjF9LHY0AY6uVbB3ktbkIH4LC+BQ== -string-replace-loader@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string-replace-loader/-/string-replace-loader-3.1.0.tgz#11ac6ee76bab80316a86af358ab773193dd57a4f" - integrity sha512-5AOMUZeX5HE/ylKDnEa/KKBqvlnFmRZudSOjVJHxhoJg9QYTwl1rECx7SLR8BBH7tfxb4Rp7EM2XVfQFxIhsbQ== - dependencies: - loader-utils "^2.0.0" - schema-utils "^3.0.0" - "string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" @@ -14443,6 +14589,11 @@ yaml@^1.10.0, yaml@^1.10.2: resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== +yaml@^2.2.2: + version "2.7.0" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.7.0.tgz#aef9bb617a64c937a9a748803786ad8d3ffe1e98" + integrity sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA== + yargs-parser@20.2.4: version "20.2.4" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54"