From b397de6e5df7006f543291e18456a5fc5e4d64e2 Mon Sep 17 00:00:00 2001 From: Amir Ghezelbash Date: Wed, 24 May 2023 14:19:34 +0330 Subject: [PATCH 001/137] fix: Do not show conversation with temporary users as classified (FS-1983) (#15229) --- src/script/components/input/ClassifiedBar.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/script/components/input/ClassifiedBar.tsx b/src/script/components/input/ClassifiedBar.tsx index f0a23c1d993..ad02d4db9d0 100644 --- a/src/script/components/input/ClassifiedBar.tsx +++ b/src/script/components/input/ClassifiedBar.tsx @@ -27,7 +27,8 @@ import {User} from 'src/script/entity/User'; import {t} from 'Util/LocalizerUtil'; function isClassified(users: User[], classifiedDomains: string[]): boolean { - if (users.some(user => !classifiedDomains.includes(user.domain))) { + // if a conversation has any temporary guests then it is not considered classified + if (users.some(user => !classifiedDomains.includes(user.domain) || user.isTemporaryGuest())) { return false; } return true; From b915bbe666364e9ead6f886233657b3e996a98d7 Mon Sep 17 00:00:00 2001 From: Timothy LeBon Date: Wed, 24 May 2023 16:57:29 +0200 Subject: [PATCH 002/137] feat: translation updates (#15232) * chore: oauth translations update * chore: updated 2fa error --- src/i18n/en-US.json | 18 +++++++++--------- src/script/auth/page/OAuthPermissions.tsx | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/i18n/en-US.json b/src/i18n/en-US.json index a073893ee16..b35a1587bf9 100644 --- a/src/i18n/en-US.json +++ b/src/i18n/en-US.json @@ -9,7 +9,7 @@ "BackendError.LABEL.CONVERSATION_NOT_FOUND": "CONVERSATION_NOT_FOUND", "BackendError.LABEL.CONVERSATION_TOO_MANY_MEMBERS": "This conversation has reached the limit of participants", "BackendError.LABEL.EMAIL_EXISTS": "This email address is already in use. {supportEmailExistsLink}", - "BackendError.LABEL.EMAIL_REQUIRED": "Log in with an email address is required when two-factor authentication is activated", + "BackendError.LABEL.EMAIL_REQUIRED": "You can't use your username as two-factor authentication is activated. Please log in with your email instead.", "BackendError.LABEL.HANDLE_EXISTS": "This username is already taken", "BackendError.LABEL.HANDLE_TOO_SHORT": "Please enter a username with at least 2 characters", "BackendError.LABEL.INVALID_CODE": "Please retry, or request another code.", @@ -967,16 +967,16 @@ "notificationVoiceChannelDeactivate": "Called", "oauth.allow": "Allow", "oauth.cancel": "Don't Allow", - "oauth.details": "If you allow the permissions listed, Wire™ will be able to connect to your calendar. It won’t see the content of your calendar, just the ones happening with Wire. If you don’t grant the permissions, you can’t use this add-in.", + "oauth.details": "If you allow the permissions listed above, your Outlook Calendar will be able to connect to Wire. If you don’t grant the permissions, you can’t use this add-in.", "oauth.headline": "Permissions", - "oauth.learnMore": "Learn more about these permissions in the settings.", - "oauth.logout": "Switch account", + "oauth.learnMore": "Learn more about these permissions", + "oauth.logout": "Switch Wire account", "oauth.privacypolicy": "Wire's Privacy Policy", - "oauth.scope.read_feature_configs": "Access team feature configurations", - "oauth.scope.read_self": "Access user information", - "oauth.scope.write_conversations": "Create conversations", - "oauth.scope.write_conversations_code": "Create conversation guest links", - "oauth.subhead": "{app} requires your permission to:", + "oauth.scope.read_feature_configs": "View your team's feature configurations", + "oauth.scope.read_self": "View your Wire username, profile name, and email", + "oauth.scope.write_conversations": "Create conversations in Wire", + "oauth.scope.write_conversations_code": "Create guest links to conversations in Wire", + "oauth.subhead": "Microsoft Outlook requires your permission to:", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/script/auth/page/OAuthPermissions.tsx b/src/script/auth/page/OAuthPermissions.tsx index 1b2a053e41f..af0aeee9af4 100644 --- a/src/script/auth/page/OAuthPermissions.tsx +++ b/src/script/auth/page/OAuthPermissions.tsx @@ -157,7 +157,7 @@ const OAuthPermissionsComponent = ({ - {_(oauthStrings.subhead, {app: oAuthApp?.application_name})} + {_(oauthStrings.subhead)} {oauthParams.scope.length > 1 && ( From b4eaa22ed8ff0b80a0759fae584989738c9f384f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 May 2023 17:04:03 +0000 Subject: [PATCH 003/137] chore(deps): Bump dependabot/fetch-metadata from 1.5.0 to 1.5.1 (#15235) Bumps [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) from 1.5.0 to 1.5.1. - [Release notes](https://github.com/dependabot/fetch-metadata/releases) - [Commits](https://github.com/dependabot/fetch-metadata/compare/v1.5.0...v1.5.1) --- updated-dependencies: - dependency-name: dependabot/fetch-metadata dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/dependabot-auto-merge.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index bfe5b304844..1b2d307cdd7 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v1.5.0 + uses: dependabot/fetch-metadata@v1.5.1 with: github-token: '${{secrets.WEBTEAM_AUTOMERGE_TOKEN}}' From 951dcfbf8af04e92c3f84c81d98de624e7d094c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20G=C3=B3rka?= Date: Wed, 24 May 2023 20:23:57 +0200 Subject: [PATCH 004/137] runfix: include file extension when pasting file to input bar (#15233) --- src/script/components/InputBar/InputBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/script/components/InputBar/InputBar.tsx b/src/script/components/InputBar/InputBar.tsx index 66217339c7e..01ebea45242 100644 --- a/src/script/components/InputBar/InputBar.tsx +++ b/src/script/components/InputBar/InputBar.tsx @@ -46,7 +46,7 @@ import { updateMentionRanges, } from 'Util/MentionUtil'; import {formatDuration, formatLocale, TIME_IN_MILLIS} from 'Util/TimeUtil'; -import {getSelectionPosition} from 'Util/util'; +import {getFileExtension, getSelectionPosition} from 'Util/util'; import {ControlButtons} from './components/InputBarControls/ControlButtons'; import {GiphyButton} from './components/InputBarControls/GiphyButton'; @@ -583,7 +583,7 @@ const InputBar = ({ const {lastModified} = pastedFile; const date = formatLocale(lastModified || new Date(), 'PP, pp'); - const fileName = t('conversationSendPastedFile', date); + const fileName = `${t('conversationSendPastedFile', date)}.${getFileExtension(pastedFile.name)}`; const newFile = new File([pastedFile], fileName, { type: pastedFile.type, From cef8404cdf4e3b0d6479ab4259aebeb300c7fa9b Mon Sep 17 00:00:00 2001 From: Arjita Date: Fri, 26 May 2023 11:01:43 +0200 Subject: [PATCH 005/137] chore: bump core (#15236) * chore: bump core * chore: update yarn lock --- package.json | 2 +- yarn.lock | 30 +++++++++++++++--------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/package.json b/package.json index 5aea8cbf8fb..7325e980c11 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "@emotion/react": "11.11.0", "@types/eslint": "8.37.0", "@wireapp/avs": "9.2.13", - "@wireapp/core": "40.2.7", + "@wireapp/core": "40.2.8", "@wireapp/lru-cache": "3.8.1", "@wireapp/react-ui-kit": "9.7.1", "@wireapp/store-engine-dexie": "2.1.1", diff --git a/yarn.lock b/yarn.lock index e5743c1f7b2..48a379ead20 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5286,22 +5286,22 @@ __metadata: languageName: node linkType: hard -"@wireapp/api-client@npm:^24.14.0": - version: 24.14.0 - resolution: "@wireapp/api-client@npm:24.14.0" +"@wireapp/api-client@npm:^24.14.1": + version: 24.14.1 + resolution: "@wireapp/api-client@npm:24.14.1" dependencies: "@wireapp/commons": ^5.1.0 "@wireapp/priority-queue": ^2.1.1 "@wireapp/protocol-messaging": 1.44.0 axios: 1.4.0 - axios-retry: 3.4.0 + axios-retry: 3.5.0 http-status-codes: 2.2.0 logdown: 3.3.1 reconnecting-websocket: 4.4.0 spark-md5: 3.0.2 tough-cookie: 4.1.2 ws: 8.11.0 - checksum: c806a1281a581f955a8fe1905446d8b928f75ba89ea08fea27ebe7e4a8f4d61a776a63d9c3dfc98e00f7f2a14bd38ad5c8cb1752a7604ba31cd3b985919758d2 + checksum: e8fe3704acba47e83884d4c6209e2f956ce7017adb950be8f2d8244dbebef6191dcd120d964a4c20f04d8b824c427c3629ec9b40c385d64185d2ee2676e5548e languageName: node linkType: hard @@ -5354,11 +5354,11 @@ __metadata: languageName: node linkType: hard -"@wireapp/core@npm:40.2.7": - version: 40.2.7 - resolution: "@wireapp/core@npm:40.2.7" +"@wireapp/core@npm:40.2.8": + version: 40.2.8 + resolution: "@wireapp/core@npm:40.2.8" dependencies: - "@wireapp/api-client": ^24.14.0 + "@wireapp/api-client": ^24.14.1 "@wireapp/commons": ^5.1.0 "@wireapp/core-crypto": 0.8.2 "@wireapp/cryptobox": 12.8.0 @@ -5375,7 +5375,7 @@ __metadata: logdown: 3.3.1 long: ^5.2.0 uuidjs: 4.2.13 - checksum: ac10ccdab07fd881eda22e69f15331039efafdac65e65adea155e37a7363da4a343b455018df2a2fdb8554955c4cb66653b62d2c9880459bfa9dbb8109d43a7c + checksum: ee76fdfbae0b00714f88a7806cc47760efc7769e0bdb4773fa62e5ee241adf03419d78a09999ada4fbfc24acc45a4953d69658b24c7bd8894eb723ea5e1c2600 languageName: node linkType: hard @@ -6186,13 +6186,13 @@ __metadata: languageName: node linkType: hard -"axios-retry@npm:3.4.0": - version: 3.4.0 - resolution: "axios-retry@npm:3.4.0" +"axios-retry@npm:3.5.0": + version: 3.5.0 + resolution: "axios-retry@npm:3.5.0" dependencies: "@babel/runtime": ^7.15.4 is-retry-allowed: ^2.2.0 - checksum: fae18aeef220cfde22f93ed663d644e1a913a5cfc9760904ffd7a7e5ec8c7fbd53a58e1be461b6b30de19dce178823630655bcb77a487e17000f5e977ef94a2e + checksum: db8391bcda7aef5d7255da2471565aaf46007ecdde45cc7027218e9fb2ada8546cecc172767d0c44ef4acaacf87e0f319dbd7084b3938f2880c3993834342d15 languageName: node linkType: hard @@ -18108,7 +18108,7 @@ dexie@latest: "@typescript-eslint/parser": ^5.59.6 "@wireapp/avs": 9.2.13 "@wireapp/copy-config": 2.1.0 - "@wireapp/core": 40.2.7 + "@wireapp/core": 40.2.8 "@wireapp/eslint-config": 2.2.1 "@wireapp/lru-cache": 3.8.1 "@wireapp/prettier-config": 0.6.0 From 9606c8f49c25fb2ced36a963db3b24b63ca3533e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 May 2023 09:07:39 +0000 Subject: [PATCH 006/137] chore(deps-dev): Bump simple-git from 3.18.0 to 3.19.0 (#15237) Bumps [simple-git](https://github.com/steveukx/git-js/tree/HEAD/simple-git) from 3.18.0 to 3.19.0. - [Release notes](https://github.com/steveukx/git-js/releases) - [Changelog](https://github.com/steveukx/git-js/blob/main/simple-git/CHANGELOG.md) - [Commits](https://github.com/steveukx/git-js/commits/simple-git@3.19.0/simple-git) --- updated-dependencies: - dependency-name: simple-git dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 7325e980c11..a39609f508f 100644 --- a/package.json +++ b/package.json @@ -163,7 +163,7 @@ "redux-devtools-extension": "2.13.9", "redux-mock-store": "1.5.4", "seedrandom": "^3.0.5", - "simple-git": "3.18.0", + "simple-git": "3.19.0", "sinon": "15.1.0", "snabbdom": "3.5.1", "style-loader": "^3.3.3", diff --git a/yarn.lock b/yarn.lock index 48a379ead20..b1b47bbe4ac 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15952,14 +15952,14 @@ dexie@latest: languageName: node linkType: hard -"simple-git@npm:3.18.0": - version: 3.18.0 - resolution: "simple-git@npm:3.18.0" +"simple-git@npm:3.19.0": + version: 3.19.0 + resolution: "simple-git@npm:3.19.0" dependencies: "@kwsites/file-exists": ^1.1.1 "@kwsites/promise-deferred": ^1.1.1 debug: ^4.3.4 - checksum: 603a7a8b125836d58fe33f45453cc4e8e9305b6fdbd3bd919444e1f33e17d354ea75bc84097c33aab13639c639d976f32bbc6bef7ef35270c0b08a788a2e3303 + checksum: 103f754cc172f903d7ad798c0dd7a083618e4ef373d27b37f34f4a7d5b6e5f260636376fca180ce25296f0064120af38b7be665e340c2f6ca463f1810bae0414 languageName: node linkType: hard @@ -18212,7 +18212,7 @@ dexie@latest: redux-mock-store: 1.5.4 redux-thunk: 2.4.2 seedrandom: ^3.0.5 - simple-git: 3.18.0 + simple-git: 3.19.0 sinon: 15.1.0 snabbdom: 3.5.1 speakingurl: 14.0.1 From c60629ca8c3a90bef7543406b18d6348dedfd221 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 May 2023 09:11:12 +0000 Subject: [PATCH 007/137] chore(deps-dev): Bump @typescript-eslint/parser from 5.59.6 to 5.59.7 (#15239) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.59.6 to 5.59.7. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.59.7/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 61 +++++++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 54 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index a39609f508f..e80b497a9bb 100644 --- a/package.json +++ b/package.json @@ -96,7 +96,7 @@ "@types/underscore": "1.11.4", "@types/webpack-env": "1.18.0", "@typescript-eslint/eslint-plugin": "^5.59.6", - "@typescript-eslint/parser": "^5.59.6", + "@typescript-eslint/parser": "^5.59.7", "@wireapp/copy-config": "2.1.0", "@wireapp/eslint-config": "2.2.1", "@wireapp/prettier-config": "0.6.0", diff --git a/yarn.lock b/yarn.lock index b1b47bbe4ac..c535912a0fb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4881,20 +4881,20 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/parser@npm:^5.59.6": - version: 5.59.6 - resolution: "@typescript-eslint/parser@npm:5.59.6" +"@typescript-eslint/parser@npm:^5.59.7": + version: 5.59.7 + resolution: "@typescript-eslint/parser@npm:5.59.7" dependencies: - "@typescript-eslint/scope-manager": 5.59.6 - "@typescript-eslint/types": 5.59.6 - "@typescript-eslint/typescript-estree": 5.59.6 + "@typescript-eslint/scope-manager": 5.59.7 + "@typescript-eslint/types": 5.59.7 + "@typescript-eslint/typescript-estree": 5.59.7 debug: ^4.3.4 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 1f6e259f501e3d13f9632bd71da2cf3d11150f1276079522e8d5c392a07c3aea867c855481981fca3bf32beb6bef046ef64cdfceba8ea4150f27099e44d9a92c + checksum: bc44f37a11a44f84ae5f0156213f3e2e49aef2ecac94d9e161a0c721acd29462e288f306ad4648095ac1c0e5a5f62b78280c1735883cf39f79ee3afcba312119 languageName: node linkType: hard @@ -4928,6 +4928,16 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/scope-manager@npm:5.59.7": + version: 5.59.7 + resolution: "@typescript-eslint/scope-manager@npm:5.59.7" + dependencies: + "@typescript-eslint/types": 5.59.7 + "@typescript-eslint/visitor-keys": 5.59.7 + checksum: 43f7ea93fddbe2902122a41050677fe3eff2ea468f435b981592510cfc6136e8c28ac7d3a3e05fb332c0b3078a29bd0c91c35b2b1f4e788b4eb9aaeb70e21583 + languageName: node + linkType: hard + "@typescript-eslint/type-utils@npm:5.59.6": version: 5.59.6 resolution: "@typescript-eslint/type-utils@npm:5.59.6" @@ -4966,6 +4976,13 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/types@npm:5.59.7": + version: 5.59.7 + resolution: "@typescript-eslint/types@npm:5.59.7" + checksum: 52eccec9e2d631eb2808e48b5dc33a837b5e242fa9eddace89fc707c9f2283b5364f1d38b33d418a08d64f45f6c22f051800898e1881a912f8aac0c3ae300d0a + languageName: node + linkType: hard + "@typescript-eslint/typescript-estree@npm:5.10.1": version: 5.10.1 resolution: "@typescript-eslint/typescript-estree@npm:5.10.1" @@ -5020,6 +5037,24 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/typescript-estree@npm:5.59.7": + version: 5.59.7 + resolution: "@typescript-eslint/typescript-estree@npm:5.59.7" + dependencies: + "@typescript-eslint/types": 5.59.7 + "@typescript-eslint/visitor-keys": 5.59.7 + debug: ^4.3.4 + globby: ^11.1.0 + is-glob: ^4.0.3 + semver: ^7.3.7 + tsutils: ^3.21.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: eefe82eedf9ee2e14463c3f2b5b18df084c1328a859b245ee897a9a7075acce7cca0216a21fd7968b75aa64189daa008bfde1e2f9afbcc336f3dfe856e7f342e + languageName: node + linkType: hard + "@typescript-eslint/utils@npm:5.10.1": version: 5.10.1 resolution: "@typescript-eslint/utils@npm:5.10.1" @@ -5102,6 +5137,16 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/visitor-keys@npm:5.59.7": + version: 5.59.7 + resolution: "@typescript-eslint/visitor-keys@npm:5.59.7" + dependencies: + "@typescript-eslint/types": 5.59.7 + eslint-visitor-keys: ^3.3.0 + checksum: 4367f2ea68dd96a0520485434ad11e1bd26239eeeb3a2150bee7478a0f1df3c2099a39f96486722932be0456bcb7a47a483b452876d1d30bdeb9b81d354eef3d + languageName: node + linkType: hard + "@webassemblyjs/ast@npm:1.11.5, @webassemblyjs/ast@npm:^1.11.5": version: 1.11.5 resolution: "@webassemblyjs/ast@npm:1.11.5" @@ -18105,7 +18150,7 @@ dexie@latest: "@types/underscore": 1.11.4 "@types/webpack-env": 1.18.0 "@typescript-eslint/eslint-plugin": ^5.59.6 - "@typescript-eslint/parser": ^5.59.6 + "@typescript-eslint/parser": ^5.59.7 "@wireapp/avs": 9.2.13 "@wireapp/copy-config": 2.1.0 "@wireapp/core": 40.2.8 From 1fd9ca053c12d0f659a7c87dcd69fbb2a2bd6e05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 May 2023 09:14:39 +0000 Subject: [PATCH 008/137] chore(deps-dev): Bump caniuse-lite from 1.0.30001488 to 1.0.30001489 (#15242) Bumps [caniuse-lite](https://github.com/browserslist/caniuse-lite) from 1.0.30001488 to 1.0.30001489. - [Commits](https://github.com/browserslist/caniuse-lite/compare/1.0.30001488...1.0.30001489) --- updated-dependencies: - dependency-name: caniuse-lite dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index e80b497a9bb..29f91695f22 100644 --- a/package.json +++ b/package.json @@ -106,7 +106,7 @@ "autoprefixer": "^10.4.13", "babel-loader": "9.1.2", "babel-plugin-transform-import-meta": "^2.2.0", - "caniuse-lite": "^1.0.30001488", + "caniuse-lite": "^1.0.30001489", "cross-env": "7.0.3", "cspell": "6.31.1", "css-loader": "^6.7.4", diff --git a/yarn.lock b/yarn.lock index c535912a0fb..7d2b81a937f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6731,10 +6731,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001488": - version: 1.0.30001488 - resolution: "caniuse-lite@npm:1.0.30001488" - checksum: ef0caf2914f9fca700b75d22921f500241f4e988ded9985e62737136031787052185d8136a65a3a6d6d12b559cf75ab99f5488931f8bd060f1b7810a2c1ee1d1 +"caniuse-lite@npm:^1.0.30001489": + version: 1.0.30001489 + resolution: "caniuse-lite@npm:1.0.30001489" + checksum: 94585a351fd7661b855c83eace474db0ee5a617159b46f2eff1f6fe4b85d7a205418471fdec8cf5cd647a7f79958706d5e664c0bbf3c7c09118b35db9bb95a1b languageName: node linkType: hard @@ -18169,7 +18169,7 @@ dexie@latest: babel-loader: 9.1.2 babel-plugin-transform-import-meta: ^2.2.0 beautiful-react-hooks: ^4.3.0 - caniuse-lite: ^1.0.30001488 + caniuse-lite: ^1.0.30001489 classnames: 2.3.2 copy-webpack-plugin: 11.0.0 core-js: 3.25.5 From 68f4b71bbccfe781fb908375c4057706d4af5e9e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 May 2023 09:16:14 +0000 Subject: [PATCH 009/137] chore(deps-dev): Bump postcss-loader from 7.3.0 to 7.3.1 (#15243) Bumps [postcss-loader](https://github.com/webpack-contrib/postcss-loader) from 7.3.0 to 7.3.1. - [Release notes](https://github.com/webpack-contrib/postcss-loader/releases) - [Changelog](https://github.com/webpack-contrib/postcss-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/postcss-loader/compare/v7.3.0...v7.3.1) --- updated-dependencies: - dependency-name: postcss-loader dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 29f91695f22..c4c57f39848 100644 --- a/package.json +++ b/package.json @@ -155,7 +155,7 @@ "postcss": "8.4.23", "postcss-import": "^15.1.0", "postcss-less": "6.0.0", - "postcss-loader": "^7.3.0", + "postcss-loader": "^7.3.1", "postcss-preset-env": "^8.4.1", "postcss-scss": "4.0.6", "prettier": "^2.8.8", diff --git a/yarn.lock b/yarn.lock index 7d2b81a937f..92ea577b748 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14231,9 +14231,9 @@ dexie@latest: languageName: node linkType: hard -"postcss-loader@npm:^7.3.0": - version: 7.3.0 - resolution: "postcss-loader@npm:7.3.0" +"postcss-loader@npm:^7.3.1": + version: 7.3.1 + resolution: "postcss-loader@npm:7.3.1" dependencies: cosmiconfig: ^8.1.3 jiti: ^1.18.2 @@ -14242,7 +14242,7 @@ dexie@latest: peerDependencies: postcss: ^7.0.0 || ^8.0.1 webpack: ^5.0.0 - checksum: f09fe68bde5f686c264cc96c51bcdc0be00c55e856d73161ce86b302fdd503098fe5c9172231eb3b316a1969080101a4c46463bda784b408d4a4cb15e7b01fc5 + checksum: a8e0b8a078f309b1e90d0f947190ea24659c7ea2b922389b773c4983b116dfdf0a87b915e4c7477c7db99a5014c34d41cc1975b37075772ea2e6da3d0bbc0ca6 languageName: node linkType: hard @@ -18238,7 +18238,7 @@ dexie@latest: postcss: 8.4.23 postcss-import: ^15.1.0 postcss-less: 6.0.0 - postcss-loader: ^7.3.0 + postcss-loader: ^7.3.1 postcss-preset-env: ^8.4.1 postcss-scss: 4.0.6 prettier: ^2.8.8 From 99e50d06d0e3a1f3b59e0946041e432fb6fe88c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 May 2023 09:16:54 +0000 Subject: [PATCH 010/137] chore(deps-dev): Bump @types/underscore from 1.11.4 to 1.11.5 (#15241) Bumps [@types/underscore](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/underscore) from 1.11.4 to 1.11.5. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/underscore) --- updated-dependencies: - dependency-name: "@types/underscore" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index c4c57f39848..60a756f191b 100644 --- a/package.json +++ b/package.json @@ -93,7 +93,7 @@ "@types/sinon": "10.0.15", "@types/speakingurl": "13.0.3", "@types/uint32": "0.2.0", - "@types/underscore": "1.11.4", + "@types/underscore": "1.11.5", "@types/webpack-env": "1.18.0", "@typescript-eslint/eslint-plugin": "^5.59.6", "@typescript-eslint/parser": "^5.59.7", diff --git a/yarn.lock b/yarn.lock index 92ea577b748..6a77f9d57a0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4809,10 +4809,10 @@ __metadata: languageName: node linkType: hard -"@types/underscore@npm:1.11.4": - version: 1.11.4 - resolution: "@types/underscore@npm:1.11.4" - checksum: db9f8486bc851b732259e51f42d62aad1ae2158be5724612dc125ece5f5d61c51447f9dea28284c2a0f79cb95e788d01cb5ce97709880019213e69fab0dd1696 +"@types/underscore@npm:1.11.5": + version: 1.11.5 + resolution: "@types/underscore@npm:1.11.5" + checksum: 6cd928c436bd65a7b544c979e0958762816dc3fd4f0d430d055faa1e914336568c3a8dd52350760c16ecc37be71d40b0792012bae455d8c5d63e50f02986c9e2 languageName: node linkType: hard @@ -18147,7 +18147,7 @@ dexie@latest: "@types/sinon": 10.0.15 "@types/speakingurl": 13.0.3 "@types/uint32": 0.2.0 - "@types/underscore": 1.11.4 + "@types/underscore": 1.11.5 "@types/webpack-env": 1.18.0 "@typescript-eslint/eslint-plugin": ^5.59.6 "@typescript-eslint/parser": ^5.59.7 From e42a2487599d186ece53ec3e0de0f33734b5cb04 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 May 2023 09:21:34 +0000 Subject: [PATCH 011/137] chore(deps-dev): Bump @typescript-eslint/eslint-plugin (#15244) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 5.59.6 to 5.59.7. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.59.7/packages/eslint-plugin) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 87 +++++++++++++--------------------------------------- 2 files changed, 22 insertions(+), 67 deletions(-) diff --git a/package.json b/package.json index 60a756f191b..5a6548a7919 100644 --- a/package.json +++ b/package.json @@ -95,7 +95,7 @@ "@types/uint32": "0.2.0", "@types/underscore": "1.11.5", "@types/webpack-env": "1.18.0", - "@typescript-eslint/eslint-plugin": "^5.59.6", + "@typescript-eslint/eslint-plugin": "^5.59.7", "@typescript-eslint/parser": "^5.59.7", "@wireapp/copy-config": "2.1.0", "@wireapp/eslint-config": "2.2.1", diff --git a/yarn.lock b/yarn.lock index 6a77f9d57a0..cc7d28a1630 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4846,14 +4846,14 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^5.59.6": - version: 5.59.6 - resolution: "@typescript-eslint/eslint-plugin@npm:5.59.6" +"@typescript-eslint/eslint-plugin@npm:^5.59.7": + version: 5.59.7 + resolution: "@typescript-eslint/eslint-plugin@npm:5.59.7" dependencies: "@eslint-community/regexpp": ^4.4.0 - "@typescript-eslint/scope-manager": 5.59.6 - "@typescript-eslint/type-utils": 5.59.6 - "@typescript-eslint/utils": 5.59.6 + "@typescript-eslint/scope-manager": 5.59.7 + "@typescript-eslint/type-utils": 5.59.7 + "@typescript-eslint/utils": 5.59.7 debug: ^4.3.4 grapheme-splitter: ^1.0.4 ignore: ^5.2.0 @@ -4866,7 +4866,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: fc495b5eadc70603f0d677921a70f151ac94453ebd76b77abbf7ed213c09daf05a3e2b2e2b16139b30dc6574d068d988e4e53c017759f3d3307fa394cfd4ae39 + checksum: 10d28bac7a5af9e41767be0bb9c270ee3dcdfeaa38d1b036c6822e7260b88821c460699ba943664eb1ef272d00de6a81b99d7d955332044ea87b624e7ead84a1 languageName: node linkType: hard @@ -4918,16 +4918,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:5.59.6": - version: 5.59.6 - resolution: "@typescript-eslint/scope-manager@npm:5.59.6" - dependencies: - "@typescript-eslint/types": 5.59.6 - "@typescript-eslint/visitor-keys": 5.59.6 - checksum: 65cce7b3fc320e264ef966da9a26bb7cba014ec5a0c9c5518cb08a624d67ac6eb67dd8e2df49b33eeaaaacaf42c73f291d56f93a9d1ec82c58bd1e7e872e530b - languageName: node - linkType: hard - "@typescript-eslint/scope-manager@npm:5.59.7": version: 5.59.7 resolution: "@typescript-eslint/scope-manager@npm:5.59.7" @@ -4938,12 +4928,12 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:5.59.6": - version: 5.59.6 - resolution: "@typescript-eslint/type-utils@npm:5.59.6" +"@typescript-eslint/type-utils@npm:5.59.7": + version: 5.59.7 + resolution: "@typescript-eslint/type-utils@npm:5.59.7" dependencies: - "@typescript-eslint/typescript-estree": 5.59.6 - "@typescript-eslint/utils": 5.59.6 + "@typescript-eslint/typescript-estree": 5.59.7 + "@typescript-eslint/utils": 5.59.7 debug: ^4.3.4 tsutils: ^3.21.0 peerDependencies: @@ -4951,7 +4941,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: f8e09dc16f413090ec464d48bd86e1b44a569e5a6ed78370f3e8132e80a464dfcdc1525f4f0706b79e397841b1865016cb38353475264beec49851d78a7fdd36 + checksum: 9cbeffad27b145b478e4cbbab2b44c5b246a9b922f01fd06d401ea4c41a4fa6dc8ba75d13a6409b3b4474ccaf2018770a4c6c599172e22ec2004110e00f4e721 languageName: node linkType: hard @@ -4969,13 +4959,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:5.59.6": - version: 5.59.6 - resolution: "@typescript-eslint/types@npm:5.59.6" - checksum: e898ca629d95b69f5dbfb7c9a3d28f943e5a372d37bf7efaefb41341d2d7147372cd4956b35b637e9b3a1b8555d64a5b35776650b815c4227b114513247ec2b5 - languageName: node - linkType: hard - "@typescript-eslint/types@npm:5.59.7": version: 5.59.7 resolution: "@typescript-eslint/types@npm:5.59.7" @@ -5019,24 +5002,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:5.59.6": - version: 5.59.6 - resolution: "@typescript-eslint/typescript-estree@npm:5.59.6" - dependencies: - "@typescript-eslint/types": 5.59.6 - "@typescript-eslint/visitor-keys": 5.59.6 - debug: ^4.3.4 - globby: ^11.1.0 - is-glob: ^4.0.3 - semver: ^7.3.7 - tsutils: ^3.21.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 65b7879e8cd4ccb987c1e1fa75cd84250cb46799ba0de6cdcaec70f6700b45ae4efcebb24163ca7946152e1b12595ee58e35bfb31ea6d35b3f39deaf973d4f1a - languageName: node - linkType: hard - "@typescript-eslint/typescript-estree@npm:5.59.7": version: 5.59.7 resolution: "@typescript-eslint/typescript-estree@npm:5.59.7" @@ -5071,21 +5036,21 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:5.59.6": - version: 5.59.6 - resolution: "@typescript-eslint/utils@npm:5.59.6" +"@typescript-eslint/utils@npm:5.59.7": + version: 5.59.7 + resolution: "@typescript-eslint/utils@npm:5.59.7" dependencies: "@eslint-community/eslint-utils": ^4.2.0 "@types/json-schema": ^7.0.9 "@types/semver": ^7.3.12 - "@typescript-eslint/scope-manager": 5.59.6 - "@typescript-eslint/types": 5.59.6 - "@typescript-eslint/typescript-estree": 5.59.6 + "@typescript-eslint/scope-manager": 5.59.7 + "@typescript-eslint/types": 5.59.7 + "@typescript-eslint/typescript-estree": 5.59.7 eslint-scope: ^5.1.1 semver: ^7.3.7 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: 40ffe1d2f1fbf6c30aa05f4a68785fb1e77aa09772ea45b001daf4068e504830cf60a441a819b2c6ffe4a19216aba404869300b2ce6bc2a67d093f74ded504a7 + checksum: d8682700187ca94cc6441480cb6b87d0514a9748103c15dd93206c5b1c6fefa59063662f27a4103e16abbcfb654a61d479bc55af8f23d96f342431b87f31bb4e languageName: node linkType: hard @@ -5127,16 +5092,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:5.59.6": - version: 5.59.6 - resolution: "@typescript-eslint/visitor-keys@npm:5.59.6" - dependencies: - "@typescript-eslint/types": 5.59.6 - eslint-visitor-keys: ^3.3.0 - checksum: 8f216411344f5ed618ab838fa3fc4b04f3041f33e08d9b160df4db988f496c71f934c4b0362f686ce63ecf7f5d926c67190d5116c91945c1957544728449ec6b - languageName: node - linkType: hard - "@typescript-eslint/visitor-keys@npm:5.59.7": version: 5.59.7 resolution: "@typescript-eslint/visitor-keys@npm:5.59.7" @@ -18149,7 +18104,7 @@ dexie@latest: "@types/uint32": 0.2.0 "@types/underscore": 1.11.5 "@types/webpack-env": 1.18.0 - "@typescript-eslint/eslint-plugin": ^5.59.6 + "@typescript-eslint/eslint-plugin": ^5.59.7 "@typescript-eslint/parser": ^5.59.7 "@wireapp/avs": 9.2.13 "@wireapp/copy-config": 2.1.0 From 98f536c435472a155978f1b7f63b3c4de91dc313 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 May 2023 09:26:26 +0000 Subject: [PATCH 012/137] chore(deps-dev): Bump @types/webpack-env from 1.18.0 to 1.18.1 (#15246) Bumps [@types/webpack-env](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/webpack-env) from 1.18.0 to 1.18.1. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/webpack-env) --- updated-dependencies: - dependency-name: "@types/webpack-env" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 5a6548a7919..9d707c39f46 100644 --- a/package.json +++ b/package.json @@ -94,7 +94,7 @@ "@types/speakingurl": "13.0.3", "@types/uint32": "0.2.0", "@types/underscore": "1.11.5", - "@types/webpack-env": "1.18.0", + "@types/webpack-env": "1.18.1", "@typescript-eslint/eslint-plugin": "^5.59.7", "@typescript-eslint/parser": "^5.59.7", "@wireapp/copy-config": "2.1.0", diff --git a/yarn.lock b/yarn.lock index cc7d28a1630..19ae6c3ccac 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4823,10 +4823,10 @@ __metadata: languageName: node linkType: hard -"@types/webpack-env@npm:1.18.0": - version: 1.18.0 - resolution: "@types/webpack-env@npm:1.18.0" - checksum: ecf4daa31cb37d474ac0ce058d83a3cadeb9881ca8107ae93c2299eaa9954943aae09b43e143c62ccbe4288a14db00c918c9debd707afe17c3998f873eaabc59 +"@types/webpack-env@npm:1.18.1": + version: 1.18.1 + resolution: "@types/webpack-env@npm:1.18.1" + checksum: 3173c069763e51a96565d602af7e6dac9d772ae4aa6f26cac187cbf599a7f0b88f790b4b050b9dbdb0485daed3061b4a337863f3b8ce66f8a4e51f75ad387c6a languageName: node linkType: hard @@ -18103,7 +18103,7 @@ dexie@latest: "@types/speakingurl": 13.0.3 "@types/uint32": 0.2.0 "@types/underscore": 1.11.5 - "@types/webpack-env": 1.18.0 + "@types/webpack-env": 1.18.1 "@typescript-eslint/eslint-plugin": ^5.59.7 "@typescript-eslint/parser": ^5.59.7 "@wireapp/avs": 9.2.13 From 3087e6008c9e2cffaeccdc58b93c5a12b315fa9a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 May 2023 09:27:28 +0000 Subject: [PATCH 013/137] chore(deps-dev): Bump webpack from 5.83.1 to 5.84.1 (#15245) Bumps [webpack](https://github.com/webpack/webpack) from 5.83.1 to 5.84.1. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v5.83.1...v5.84.1) --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 30 +++++++++++++++--------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/package.json b/package.json index 9d707c39f46..8eb920387e2 100644 --- a/package.json +++ b/package.json @@ -176,7 +176,7 @@ "ts-node": "10.9.1", "tsc-watch": "6.0.4", "typescript": "5.0.4", - "webpack": "5.83.1", + "webpack": "5.84.1", "webpack-cli": "5.1.1", "webpack-dev-middleware": "6.1.1", "webpack-hot-middleware": "2.25.3", diff --git a/yarn.lock b/yarn.lock index 19ae6c3ccac..685a554c761 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5624,12 +5624,12 @@ __metadata: languageName: node linkType: hard -"acorn-import-assertions@npm:^1.7.6": - version: 1.7.6 - resolution: "acorn-import-assertions@npm:1.7.6" +"acorn-import-assertions@npm:^1.9.0": + version: 1.9.0 + resolution: "acorn-import-assertions@npm:1.9.0" peerDependencies: acorn: ^8 - checksum: bc8a1585abd70ebfb3a6b3112f5e3974fee3ac598230f916a3857f0ad4fa7e72197be532c49d1feeb83678ef264f34bee9bf1934dfb2f276d88468134a51fa9f + checksum: 944fb2659d0845c467066bdcda2e20c05abe3aaf11972116df457ce2627628a81764d800dd55031ba19de513ee0d43bb771bc679cc0eda66dc8b4fade143bc0c languageName: node linkType: hard @@ -8185,13 +8185,13 @@ dexie@latest: languageName: node linkType: hard -"enhanced-resolve@npm:^5.14.0": - version: 5.14.0 - resolution: "enhanced-resolve@npm:5.14.0" +"enhanced-resolve@npm:^5.14.1": + version: 5.14.1 + resolution: "enhanced-resolve@npm:5.14.1" dependencies: graceful-fs: ^4.2.4 tapable: ^2.2.0 - checksum: fff1aaebbf376371e5df4502e111967f6247c37611ad3550e4e7fca657f6dcb29ef7ffe88bf14e5010b78997f1ddd984a8db97af87ee0a5477771398fd326f5b + checksum: ad2a31928b6649eed40d364838449587f731baa63863e83d2629bebaa8be1eabac18b90f89c1784bc805b0818363e99b22547159edd485d7e5ccf18cdc640642 languageName: node linkType: hard @@ -17859,9 +17859,9 @@ dexie@latest: languageName: node linkType: hard -"webpack@npm:5.83.1": - version: 5.83.1 - resolution: "webpack@npm:5.83.1" +"webpack@npm:5.84.1": + version: 5.84.1 + resolution: "webpack@npm:5.84.1" dependencies: "@types/eslint-scope": ^3.7.3 "@types/estree": ^1.0.0 @@ -17869,10 +17869,10 @@ dexie@latest: "@webassemblyjs/wasm-edit": ^1.11.5 "@webassemblyjs/wasm-parser": ^1.11.5 acorn: ^8.7.1 - acorn-import-assertions: ^1.7.6 + acorn-import-assertions: ^1.9.0 browserslist: ^4.14.5 chrome-trace-event: ^1.0.2 - enhanced-resolve: ^5.14.0 + enhanced-resolve: ^5.14.1 es-module-lexer: ^1.2.1 eslint-scope: 5.1.1 events: ^3.2.0 @@ -17892,7 +17892,7 @@ dexie@latest: optional: true bin: webpack: bin/webpack.js - checksum: 219d5ef50380bc0fd3702ed17feddf13819d8173b78f7a5b857dc74ac177e63d1f79c050792754411cc088bbc02e0971b989efddadbb8e393cf27d64c0ad9ff8 + checksum: 646b645df5badf2dac2ddd0193c9e9a177d51283d18f918eead36a0cdf7b750c4111d9ac11d9825c1334cbd0a6fb8f82628fbfb90d0066f927265dd11b47b192 languageName: node linkType: hard @@ -18231,7 +18231,7 @@ dexie@latest: uint32: 0.2.1 underscore: 1.13.6 uuidjs: 4.2.13 - webpack: 5.83.1 + webpack: 5.84.1 webpack-cli: 5.1.1 webpack-dev-middleware: 6.1.1 webpack-hot-middleware: 2.25.3 From 18b15c9a377f8d676f73f4b6c07fcbe75bd681b9 Mon Sep 17 00:00:00 2001 From: Amir Ghezelbash Date: Fri, 26 May 2023 13:56:40 +0330 Subject: [PATCH 014/137] fix: Consider conversation domain for classified banner (FS-1980) (#15230) * fix: Consider conversation domain for classified banner (FS-1980) * add comment --- src/script/components/InputBar/InputBar.tsx | 6 +++++- src/script/components/calling/CallingCell.tsx | 8 +++++++- .../components/calling/FullscreenVideoCall.tsx | 1 + src/script/components/input/ClassifiedBar.test.tsx | 14 +++++++++++--- src/script/components/input/ClassifiedBar.tsx | 11 ++++++++--- src/script/components/panel/UserDetails.tsx | 10 +++++++++- .../ConversationDetails/ConversationDetails.tsx | 1 + .../GroupParticipantUser/GroupParticipantUser.tsx | 1 + 8 files changed, 43 insertions(+), 9 deletions(-) diff --git a/src/script/components/InputBar/InputBar.tsx b/src/script/components/InputBar/InputBar.tsx index 01ebea45242..1656ead6068 100644 --- a/src/script/components/InputBar/InputBar.tsx +++ b/src/script/components/InputBar/InputBar.tsx @@ -776,7 +776,11 @@ const InputBar = ({ {!!isTypingIndicatorEnabled && } {classifiedDomains && !isConnectionRequest && ( - + )} {isReplying && !isEditing && } diff --git a/src/script/components/calling/CallingCell.tsx b/src/script/components/calling/CallingCell.tsx index a440da19ed8..6466ca00332 100644 --- a/src/script/components/calling/CallingCell.tsx +++ b/src/script/components/calling/CallingCell.tsx @@ -447,7 +447,13 @@ const CallingCell: React.FC = ({ ) )} - {classifiedDomains && } + {classifiedDomains && ( + + )} {!isDeclined && ( <> diff --git a/src/script/components/calling/FullscreenVideoCall.tsx b/src/script/components/calling/FullscreenVideoCall.tsx index 2da3be55640..d4d41e025f3 100644 --- a/src/script/components/calling/FullscreenVideoCall.tsx +++ b/src/script/components/calling/FullscreenVideoCall.tsx @@ -257,6 +257,7 @@ const FullscreenVideoCall: React.FC = ({ /> {classifiedDomains && ( { const otherDomainUser = new User(createUuid(), 'other.domain'); it.each([[[sameDomainUser]], [[sameDomainUser, otherDomainUser]]])('is empty if no domains are given', users => { - const {container} = render(); + const {container} = render(); expect(container.querySelector('[data-uie-name=classified-label]')).toBe(null); }); @@ -39,7 +39,13 @@ describe('ClassifiedBar', () => { it.each([[[sameDomainUser]], [[classifiedDomainUser]], [[sameDomainUser, classifiedDomainUser]]])( 'returns classified if all users in the classified domains', users => { - const {getByText, queryByText} = render(); + const {getByText, queryByText} = render( + , + ); expect(getByText('conversationClassified')).not.toBe(null); expect(queryByText('conversationNotClassified')).toBe(null); @@ -51,7 +57,9 @@ describe('ClassifiedBar', () => { [[classifiedDomainUser, otherDomainUser]], [[sameDomainUser, classifiedDomainUser, otherDomainUser]], ])('returns non-classified if a single user is from another domain', users => { - const {queryByText, getByText} = render(); + const {queryByText, getByText} = render( + , + ); expect(queryByText('conversationClassified')).toBe(null); expect(getByText('conversationNotClassified')).not.toBe(null); diff --git a/src/script/components/input/ClassifiedBar.tsx b/src/script/components/input/ClassifiedBar.tsx index ad02d4db9d0..005e7f6f1a3 100644 --- a/src/script/components/input/ClassifiedBar.tsx +++ b/src/script/components/input/ClassifiedBar.tsx @@ -26,7 +26,11 @@ import {Icon} from 'Components/Icon'; import {User} from 'src/script/entity/User'; import {t} from 'Util/LocalizerUtil'; -function isClassified(users: User[], classifiedDomains: string[]): boolean { +function isClassified(users: User[], classifiedDomains: string[], conversationDomain?: string): boolean { + // if a conversation is hosted on an unclassified domain it is not considered classified + if (conversationDomain && !classifiedDomains.includes(conversationDomain)) { + return false; + } // if a conversation has any temporary guests then it is not considered classified if (users.some(user => !classifiedDomains.includes(user.domain) || user.isTemporaryGuest())) { return false; @@ -38,14 +42,15 @@ interface ClassifiedBarProps { classifiedDomains?: string[]; style?: CSSObject; users: User[]; + conversationDomain?: string; } -const ClassifiedBar: React.FC = ({users, classifiedDomains, style}) => { +const ClassifiedBar: React.FC = ({users, classifiedDomains, conversationDomain, style}) => { if (typeof classifiedDomains === 'undefined') { return null; } - const classified = isClassified(users, classifiedDomains); + const classified = isClassified(users, classifiedDomains, conversationDomain); const text = classified ? t('conversationClassified') : t('conversationNotClassified'); return ( diff --git a/src/script/components/panel/UserDetails.tsx b/src/script/components/panel/UserDetails.tsx index edf84e8024b..f1ebe3edd79 100644 --- a/src/script/components/panel/UserDetails.tsx +++ b/src/script/components/panel/UserDetails.tsx @@ -37,6 +37,7 @@ import type {User} from '../../entity/User'; export interface UserDetailsProps { badge?: string; classifiedDomains?: string[]; + conversationDomain?: string; isGroupAdmin?: boolean; isSelfVerified: boolean; isVerified?: boolean; @@ -51,6 +52,7 @@ export const UserDetailsComponent: React.FC = ({ isGroupAdmin, avatarStyles, classifiedDomains, + conversationDomain, }) => { const user = useKoSubscribableChildren(participant, [ 'inTeam', @@ -105,7 +107,13 @@ export const UserDetailsComponent: React.FC = ({

)} - {classifiedDomains && } + {classifiedDomains && ( + + )} {isSingleUserMode && !isServiceMode && firstParticipant && ( <> = ({ Date: Sun, 28 May 2023 15:01:42 +0000 Subject: [PATCH 015/137] chore(deps): Bump react-error-boundary from 4.0.4 to 4.0.7 (#15249) Bumps [react-error-boundary](https://github.com/bvaughn/react-error-boundary) from 4.0.4 to 4.0.7. - [Release notes](https://github.com/bvaughn/react-error-boundary/releases) - [Commits](https://github.com/bvaughn/react-error-boundary/compare/4.0.4...4.0.7) --- updated-dependencies: - dependency-name: react-error-boundary dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 8eb920387e2..896c2f555e2 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "platform": "1.3.6", "react": "18.2.0", "react-dom": "18.2.0", - "react-error-boundary": "4.0.4", + "react-error-boundary": "4.0.7", "react-intl": "6.4.2", "react-redux": "8.0.5", "react-router": "6.11.2", diff --git a/yarn.lock b/yarn.lock index 685a554c761..cd185b180e5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15006,14 +15006,14 @@ dexie@latest: languageName: node linkType: hard -"react-error-boundary@npm:4.0.4": - version: 4.0.4 - resolution: "react-error-boundary@npm:4.0.4" +"react-error-boundary@npm:4.0.7": + version: 4.0.7 + resolution: "react-error-boundary@npm:4.0.7" dependencies: "@babel/runtime": ^7.12.5 peerDependencies: react: ">=16.13.1" - checksum: 02f04bdf8526f4b2474cb129ece32e5e32fbe81a72a71fdcf056c440aa9f4308b372383f5e817eea76220dcf0901459be2834d6ab8106cd9c36e8ec230df70f9 + checksum: 0a091c25d895bf201a3d8e56e224cca7ba228e520ab69358c086682f908a0ac522bc1863ee5838607bda3ab8bafd4de728a63df65c374291393434e164888794 languageName: node linkType: hard @@ -18200,7 +18200,7 @@ dexie@latest: raf: 3.4.1 react: 18.2.0 react-dom: 18.2.0 - react-error-boundary: 4.0.4 + react-error-boundary: 4.0.7 react-intl: 6.4.2 react-redux: 8.0.5 react-router: 6.11.2 From 41b802e093d5df738dcba477df2f466b25610724 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 May 2023 15:03:14 +0000 Subject: [PATCH 016/137] chore(deps-dev): Bump postcss from 8.4.23 to 8.4.24 (#15250) Bumps [postcss](https://github.com/postcss/postcss) from 8.4.23 to 8.4.24. - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/postcss/postcss/compare/8.4.23...8.4.24) --- updated-dependencies: - dependency-name: postcss dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 21 ++++++++++++++++----- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 896c2f555e2..293414bcf0a 100644 --- a/package.json +++ b/package.json @@ -152,7 +152,7 @@ "node-fetch": "2.6.11", "os-browserify": "0.3.0", "path-browserify": "1.0.1", - "postcss": "8.4.23", + "postcss": "8.4.24", "postcss-import": "^15.1.0", "postcss-less": "6.0.0", "postcss-loader": "^7.3.1", diff --git a/yarn.lock b/yarn.lock index cd185b180e5..9669f5cc7d1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14694,14 +14694,14 @@ dexie@latest: languageName: node linkType: hard -"postcss@npm:8.4.23, postcss@npm:^8.3.11, postcss@npm:^8.4.19, postcss@npm:^8.4.21": - version: 8.4.23 - resolution: "postcss@npm:8.4.23" +"postcss@npm:8.4.24": + version: 8.4.24 + resolution: "postcss@npm:8.4.24" dependencies: nanoid: ^3.3.6 picocolors: ^1.0.0 source-map-js: ^1.0.2 - checksum: 8bb9d1b2ea6e694f8987d4f18c94617971b2b8d141602725fedcc2222fdc413b776a6e1b969a25d627d7b2681ca5aabb56f59e727ef94072e1b6ac8412105a2f + checksum: 814e2126dacfea313588eda09cc99a9b4c26ec55c059188aa7a916d20d26d483483106dc5ff9e560731b59f45c5bb91b945dfadc670aed875cc90ddbbf4e787d languageName: node linkType: hard @@ -14715,6 +14715,17 @@ dexie@latest: languageName: node linkType: hard +"postcss@npm:^8.3.11, postcss@npm:^8.4.19, postcss@npm:^8.4.21": + version: 8.4.23 + resolution: "postcss@npm:8.4.23" + dependencies: + nanoid: ^3.3.6 + picocolors: ^1.0.0 + source-map-js: ^1.0.2 + checksum: 8bb9d1b2ea6e694f8987d4f18c94617971b2b8d141602725fedcc2222fdc413b776a6e1b969a25d627d7b2681ca5aabb56f59e727ef94072e1b6ac8412105a2f + languageName: node + linkType: hard + "prelude-ls@npm:^1.2.1": version: 1.2.1 resolution: "prelude-ls@npm:1.2.1" @@ -18190,7 +18201,7 @@ dexie@latest: os-browserify: 0.3.0 path-browserify: 1.0.1 platform: 1.3.6 - postcss: 8.4.23 + postcss: 8.4.24 postcss-import: ^15.1.0 postcss-less: 6.0.0 postcss-loader: ^7.3.1 From c5dfe93644b0246ce2385c034f5f7d4ad5bab374 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 May 2023 15:04:03 +0000 Subject: [PATCH 017/137] chore(deps-dev): Bump @babel/core from 7.21.8 to 7.22.1 (#15251) Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.21.8 to 7.22.1. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.22.1/packages/babel-core) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 145 ++++++++++++++++++++++++++++++++++++++++++--------- 2 files changed, 122 insertions(+), 25 deletions(-) diff --git a/package.json b/package.json index 293414bcf0a..b67dfa0a37c 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "zustand": "4.3.8" }, "devDependencies": { - "@babel/core": "7.21.8", + "@babel/core": "7.22.1", "@babel/eslint-parser": "7.21.8", "@babel/plugin-proposal-decorators": "7.21.0", "@babel/preset-env": "7.21.5", diff --git a/yarn.lock b/yarn.lock index 9669f5cc7d1..3970b0e4491 100644 --- a/yarn.lock +++ b/yarn.lock @@ -51,26 +51,33 @@ __metadata: languageName: node linkType: hard -"@babel/core@npm:7.21.8": - version: 7.21.8 - resolution: "@babel/core@npm:7.21.8" +"@babel/compat-data@npm:^7.22.0": + version: 7.22.3 + resolution: "@babel/compat-data@npm:7.22.3" + checksum: eb001646f41459f42ccb0d39ee8bb3c3c495bc297234817044c0002689c625e3159a6678c53fd31bd98cf21f31472b73506f350fc6906e3bdfa49cb706e2af8d + languageName: node + linkType: hard + +"@babel/core@npm:7.22.1": + version: 7.22.1 + resolution: "@babel/core@npm:7.22.1" dependencies: "@ampproject/remapping": ^2.2.0 "@babel/code-frame": ^7.21.4 - "@babel/generator": ^7.21.5 - "@babel/helper-compilation-targets": ^7.21.5 - "@babel/helper-module-transforms": ^7.21.5 - "@babel/helpers": ^7.21.5 - "@babel/parser": ^7.21.8 - "@babel/template": ^7.20.7 - "@babel/traverse": ^7.21.5 - "@babel/types": ^7.21.5 + "@babel/generator": ^7.22.0 + "@babel/helper-compilation-targets": ^7.22.1 + "@babel/helper-module-transforms": ^7.22.1 + "@babel/helpers": ^7.22.0 + "@babel/parser": ^7.22.0 + "@babel/template": ^7.21.9 + "@babel/traverse": ^7.22.1 + "@babel/types": ^7.22.0 convert-source-map: ^1.7.0 debug: ^4.1.0 gensync: ^1.0.0-beta.2 json5: ^2.2.2 semver: ^6.3.0 - checksum: f28118447355af2a90bd340e2e60699f94c8020517eba9b71bf8ebff62fa9e00d63f076e033f9dfb97548053ad62ada45fafb0d96584b1a90e8aef5a3b8241b1 + checksum: bbe45e791f223a7e692d2ea6597a73f48050abd24b119c85c48ac6504c30ce63343a2ea3f79b5847bf4b409ddd8a68b6cdc4f0272ded1d2ef6f6b1e9663432f0 languageName: node linkType: hard @@ -135,6 +142,18 @@ __metadata: languageName: node linkType: hard +"@babel/generator@npm:^7.22.0": + version: 7.22.3 + resolution: "@babel/generator@npm:7.22.3" + dependencies: + "@babel/types": ^7.22.3 + "@jridgewell/gen-mapping": ^0.3.2 + "@jridgewell/trace-mapping": ^0.3.17 + jsesc: ^2.5.1 + checksum: ccb6426ca5b5a38f0d47a3ac9628e223d2aaaa489cbf90ffab41468795c22afe86855f68a58667f0f2673949f1810d4d5a57b826c17984eab3e28fdb34a909e6 + languageName: node + linkType: hard + "@babel/helper-annotate-as-pure@npm:^7.18.6": version: 7.18.6 resolution: "@babel/helper-annotate-as-pure@npm:7.18.6" @@ -184,6 +203,21 @@ __metadata: languageName: node linkType: hard +"@babel/helper-compilation-targets@npm:^7.22.1": + version: 7.22.1 + resolution: "@babel/helper-compilation-targets@npm:7.22.1" + dependencies: + "@babel/compat-data": ^7.22.0 + "@babel/helper-validator-option": ^7.21.0 + browserslist: ^4.21.3 + lru-cache: ^5.1.1 + semver: ^6.3.0 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: a686a01bd3288cf95ca26faa27958d34c04e2501c4b0858c3a6558776dec20317b5635f33d64c5a635b6fbdfe462a85c30d4bfa0ae7e7ffe3467e4d06442d7c8 + languageName: node + linkType: hard + "@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.21.0": version: 7.21.0 resolution: "@babel/helper-create-class-features-plugin@npm:7.21.0" @@ -244,6 +278,13 @@ __metadata: languageName: node linkType: hard +"@babel/helper-environment-visitor@npm:^7.22.1": + version: 7.22.1 + resolution: "@babel/helper-environment-visitor@npm:7.22.1" + checksum: a6b4bb5505453bff95518d361ac1de393f0029aeb8b690c70540f4317934c53c43cc4afcda8c752ffa8c272e63ed6b929a56eca28e4978424177b24238b21bf9 + languageName: node + linkType: hard + "@babel/helper-explode-assignable-expression@npm:^7.18.6": version: 7.18.6 resolution: "@babel/helper-explode-assignable-expression@npm:7.18.6" @@ -331,6 +372,22 @@ __metadata: languageName: node linkType: hard +"@babel/helper-module-transforms@npm:^7.22.1": + version: 7.22.1 + resolution: "@babel/helper-module-transforms@npm:7.22.1" + dependencies: + "@babel/helper-environment-visitor": ^7.22.1 + "@babel/helper-module-imports": ^7.21.4 + "@babel/helper-simple-access": ^7.21.5 + "@babel/helper-split-export-declaration": ^7.18.6 + "@babel/helper-validator-identifier": ^7.19.1 + "@babel/template": ^7.21.9 + "@babel/traverse": ^7.22.1 + "@babel/types": ^7.22.0 + checksum: dfa084211a93c9f0174ab07385fdbf7831bbf5c1ff3d4f984effc489f48670825ad8b817b9e9d2ec6492fde37ed6518c15944e9dd7a60b43a3d9874c9250f5f8 + languageName: node + linkType: hard + "@babel/helper-optimise-call-expression@npm:^7.18.6": version: 7.18.6 resolution: "@babel/helper-optimise-call-expression@npm:7.18.6" @@ -469,14 +526,14 @@ __metadata: languageName: node linkType: hard -"@babel/helpers@npm:^7.21.5": - version: 7.21.5 - resolution: "@babel/helpers@npm:7.21.5" +"@babel/helpers@npm:^7.22.0": + version: 7.22.3 + resolution: "@babel/helpers@npm:7.22.3" dependencies: - "@babel/template": ^7.20.7 - "@babel/traverse": ^7.21.5 - "@babel/types": ^7.21.5 - checksum: a6f74b8579713988e7f5adf1a986d8b5255757632ba65b2552f0f609ead5476edb784044c7e4b18f3681ee4818ca9d08c41feb9bd4e828648c25a00deaa1f9e4 + "@babel/template": ^7.21.9 + "@babel/traverse": ^7.22.1 + "@babel/types": ^7.22.3 + checksum: 385289ee8b87cf9af448bbb9fcf747f6e67600db5f7f64eb4ad97761ee387819bf2212b6a757008286c6bfacf4f3fc0b6de88686f2e517a70fb59996bdfbd1e9 languageName: node linkType: hard @@ -509,12 +566,12 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.21.8": - version: 7.21.8 - resolution: "@babel/parser@npm:7.21.8" +"@babel/parser@npm:^7.21.9, @babel/parser@npm:^7.22.0": + version: 7.22.3 + resolution: "@babel/parser@npm:7.22.3" bin: parser: ./bin/babel-parser.js - checksum: 1b9a820fedfb6ef179e6ffa1dbc080808882949dec68340a616da2aa354af66ea2886bd68e61bd444d270aa0b24ad6273e3cfaf17d6878c34bf2521becacb353 + checksum: 016f2960212fd86817e15d90b9b3450d2b51af189b1c17a20ade5735d9ec69e76e29def317e09188ecd5fa6eab4f9ab72d88b8b829c1b2994400a6a2c2dc1958 languageName: node linkType: hard @@ -1731,6 +1788,17 @@ __metadata: languageName: node linkType: hard +"@babel/template@npm:^7.21.9": + version: 7.21.9 + resolution: "@babel/template@npm:7.21.9" + dependencies: + "@babel/code-frame": ^7.21.4 + "@babel/parser": ^7.21.9 + "@babel/types": ^7.21.5 + checksum: 6ec2c60d4d53b2a9230ab82c399ba6525df87e9a4e01e4b111e071cbad283b1362e7c99a1bc50027073f44f2de36a495a89c27112c4e7efe7ef9c8d9c84de2ec + languageName: node + linkType: hard + "@babel/traverse@npm:^7.18.11, @babel/traverse@npm:^7.20.7, @babel/traverse@npm:^7.21.0, @babel/traverse@npm:^7.21.2, @babel/traverse@npm:^7.21.4, @babel/traverse@npm:^7.7.2": version: 7.21.4 resolution: "@babel/traverse@npm:7.21.4" @@ -1767,6 +1835,24 @@ __metadata: languageName: node linkType: hard +"@babel/traverse@npm:^7.22.1": + version: 7.22.1 + resolution: "@babel/traverse@npm:7.22.1" + dependencies: + "@babel/code-frame": ^7.21.4 + "@babel/generator": ^7.22.0 + "@babel/helper-environment-visitor": ^7.22.1 + "@babel/helper-function-name": ^7.21.0 + "@babel/helper-hoist-variables": ^7.18.6 + "@babel/helper-split-export-declaration": ^7.18.6 + "@babel/parser": ^7.22.0 + "@babel/types": ^7.22.0 + debug: ^4.1.0 + globals: ^11.1.0 + checksum: 5761837f9ce9b6ec2fe851ce76c6048d4fc11fc5be13218b7492849e42497ea957dafd2b84ab673aaabf31ac26ddc79c298d2a0fcff79ebdfc5c204cb35071a1 + languageName: node + linkType: hard + "@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.10, @babel/types@npm:^7.18.6, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.2, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.0, @babel/types@npm:^7.21.2, @babel/types@npm:^7.21.4, @babel/types@npm:^7.3.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3": version: 7.21.4 resolution: "@babel/types@npm:7.21.4" @@ -1789,6 +1875,17 @@ __metadata: languageName: node linkType: hard +"@babel/types@npm:^7.22.0, @babel/types@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/types@npm:7.22.3" + dependencies: + "@babel/helper-string-parser": ^7.21.5 + "@babel/helper-validator-identifier": ^7.19.1 + to-fast-properties: ^2.0.0 + checksum: 6111fa5990635dfba8812a84bb4889429feb41a2c03c89de2654724e88a85b5740d4795c64a480d188d2f7109e7b47f3f0ba3d56da1b697cd31c65922f4decf7 + languageName: node + linkType: hard + "@bcoe/v8-coverage@npm:^0.2.3": version: 0.2.3 resolution: "@bcoe/v8-coverage@npm:0.2.3" @@ -18070,7 +18167,7 @@ dexie@latest: version: 0.0.0-use.local resolution: "wire-webapp@workspace:." dependencies: - "@babel/core": 7.21.8 + "@babel/core": 7.22.1 "@babel/eslint-parser": 7.21.8 "@babel/plugin-proposal-decorators": 7.21.0 "@babel/preset-env": 7.21.5 From 9e76bb69b191d0f680a562867ed45f4c6cf20672 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 May 2023 15:04:48 +0000 Subject: [PATCH 018/137] chore(deps-dev): Bump css-loader from 6.7.4 to 6.8.1 (#15252) Bumps [css-loader](https://github.com/webpack-contrib/css-loader) from 6.7.4 to 6.8.1. - [Release notes](https://github.com/webpack-contrib/css-loader/releases) - [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/css-loader/compare/v6.7.4...v6.8.1) --- updated-dependencies: - dependency-name: css-loader dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index b67dfa0a37c..5ae53b22edc 100644 --- a/package.json +++ b/package.json @@ -109,7 +109,7 @@ "caniuse-lite": "^1.0.30001489", "cross-env": "7.0.3", "cspell": "6.31.1", - "css-loader": "^6.7.4", + "css-loader": "^6.8.1", "cssnano": "^5.1.14", "dexie": "3.2.3", "dotenv": "16.0.3", diff --git a/yarn.lock b/yarn.lock index 3970b0e4491..5739468912f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7592,21 +7592,21 @@ __metadata: languageName: node linkType: hard -"css-loader@npm:^6.7.4": - version: 6.7.4 - resolution: "css-loader@npm:6.7.4" +"css-loader@npm:^6.8.1": + version: 6.8.1 + resolution: "css-loader@npm:6.8.1" dependencies: icss-utils: ^5.1.0 postcss: ^8.4.21 postcss-modules-extract-imports: ^3.0.0 - postcss-modules-local-by-default: ^4.0.1 + postcss-modules-local-by-default: ^4.0.3 postcss-modules-scope: ^3.0.0 postcss-modules-values: ^4.0.0 postcss-value-parser: ^4.2.0 semver: ^7.3.8 peerDependencies: webpack: ^5.0.0 - checksum: 6021fa9e375d767b9675e295c1513f2ee4ae04f76d9de69a75b8446e05f6e02b2170407ea72939925b788dcd5aa308527f6b41be3870dc1f4b0bfff8d2532c6e + checksum: 7c1784247bdbe76dc5c55fb1ac84f1d4177a74c47259942c9cfdb7a8e6baef11967a0bc85ac285f26bd26d5059decb848af8154a03fdb4f4894f41212f45eef3 languageName: node linkType: hard @@ -14399,16 +14399,16 @@ dexie@latest: languageName: node linkType: hard -"postcss-modules-local-by-default@npm:^4.0.1": - version: 4.0.1 - resolution: "postcss-modules-local-by-default@npm:4.0.1" +"postcss-modules-local-by-default@npm:^4.0.3": + version: 4.0.3 + resolution: "postcss-modules-local-by-default@npm:4.0.3" dependencies: icss-utils: ^5.0.0 postcss-selector-parser: ^6.0.2 postcss-value-parser: ^4.1.0 peerDependencies: postcss: ^8.1.0 - checksum: 1a95eb8bc54a363a77dbd77a0a88f500e7937ecbed5903becef9362eace28de406e6fdf62640126c22964678370e87eb10481eea2703702772935b4515603bfd + checksum: 2f8083687f3d6067885f8863dd32dbbb4f779cfcc7e52c17abede9311d84faf6d3ed8760e7c54c6380281732ae1f78e5e56a28baf3c271b33f450a11c9e30485 languageName: node linkType: hard @@ -18239,7 +18239,7 @@ dexie@latest: countly-sdk-web: 23.2.2 cross-env: 7.0.3 cspell: 6.31.1 - css-loader: ^6.7.4 + css-loader: ^6.8.1 cssnano: ^5.1.14 date-fns: 2.30.0 dexie: 3.2.3 From 3a4bad03b112a8b824a6c6cb3b9e4306043d2cd0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 May 2023 15:06:03 +0000 Subject: [PATCH 019/137] chore(deps-dev): Bump @babel/plugin-proposal-decorators (#15253) Bumps [@babel/plugin-proposal-decorators](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-proposal-decorators) from 7.21.0 to 7.22.3. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.22.3/packages/babel-plugin-proposal-decorators) --- updated-dependencies: - dependency-name: "@babel/plugin-proposal-decorators" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 79 ++++++++++++++++++++++++++++++++++++++++++---------- 2 files changed, 66 insertions(+), 15 deletions(-) diff --git a/package.json b/package.json index 5ae53b22edc..ca5ef3a6ecf 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "devDependencies": { "@babel/core": "7.22.1", "@babel/eslint-parser": "7.21.8", - "@babel/plugin-proposal-decorators": "7.21.0", + "@babel/plugin-proposal-decorators": "7.22.3", "@babel/preset-env": "7.21.5", "@babel/preset-react": "7.18.6", "@babel/preset-typescript": "7.21.5", diff --git a/yarn.lock b/yarn.lock index 5739468912f..566e84fec2f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -236,6 +236,25 @@ __metadata: languageName: node linkType: hard +"@babel/helper-create-class-features-plugin@npm:^7.22.1": + version: 7.22.1 + resolution: "@babel/helper-create-class-features-plugin@npm:7.22.1" + dependencies: + "@babel/helper-annotate-as-pure": ^7.18.6 + "@babel/helper-environment-visitor": ^7.22.1 + "@babel/helper-function-name": ^7.21.0 + "@babel/helper-member-expression-to-functions": ^7.22.0 + "@babel/helper-optimise-call-expression": ^7.18.6 + "@babel/helper-replace-supers": ^7.22.1 + "@babel/helper-skip-transparent-expression-wrappers": ^7.20.0 + "@babel/helper-split-export-declaration": ^7.18.6 + semver: ^6.3.0 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: a132d940c345effc55f4d018db4d113be56528cc5f9bdc12d14da311d27febdde9c606c62e81d17c7ab06b44fb7995d6116ed2aceee75ffa6c5e4e2da3c106ba + languageName: node + linkType: hard + "@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.20.5": version: 7.21.4 resolution: "@babel/helper-create-regexp-features-plugin@npm:7.21.4" @@ -322,6 +341,15 @@ __metadata: languageName: node linkType: hard +"@babel/helper-member-expression-to-functions@npm:^7.22.0": + version: 7.22.3 + resolution: "@babel/helper-member-expression-to-functions@npm:7.22.3" + dependencies: + "@babel/types": ^7.22.3 + checksum: c31b7c8096e722ab7717a1e2343b26afa469172aeb1a8643e9387a14bb50d77dd032fafedf282fcde37b90dcadd2e770c0dfea745a3b1de893d607f2ccba7c0f + languageName: node + linkType: hard + "@babel/helper-module-imports@npm:^7.10.4, @babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.18.6": version: 7.18.6 resolution: "@babel/helper-module-imports@npm:7.18.6" @@ -439,6 +467,20 @@ __metadata: languageName: node linkType: hard +"@babel/helper-replace-supers@npm:^7.22.1": + version: 7.22.1 + resolution: "@babel/helper-replace-supers@npm:7.22.1" + dependencies: + "@babel/helper-environment-visitor": ^7.22.1 + "@babel/helper-member-expression-to-functions": ^7.22.0 + "@babel/helper-optimise-call-expression": ^7.18.6 + "@babel/template": ^7.21.9 + "@babel/traverse": ^7.22.1 + "@babel/types": ^7.22.0 + checksum: 4179090f7010cf9456d17ec354df10f4f647d9b57f6e0b021519d504afca977f67ca39ffe04b47369ea671a744309d0d58f436cb4c18aef000f1df3c0e1162ba + languageName: node + linkType: hard + "@babel/helper-simple-access@npm:^7.20.2": version: 7.20.2 resolution: "@babel/helper-simple-access@npm:7.20.2" @@ -575,6 +617,15 @@ __metadata: languageName: node linkType: hard +"@babel/parser@npm:^7.21.9, @babel/parser@npm:^7.22.0": + version: 7.22.3 + resolution: "@babel/parser@npm:7.22.3" + bin: + parser: ./bin/babel-parser.js + checksum: 016f2960212fd86817e15d90b9b3450d2b51af189b1c17a20ade5735d9ec69e76e29def317e09188ecd5fa6eab4f9ab72d88b8b829c1b2994400a6a2c2dc1958 + languageName: node + linkType: hard + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.18.6": version: 7.18.6 resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.18.6" @@ -638,18 +689,18 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-proposal-decorators@npm:7.21.0": - version: 7.21.0 - resolution: "@babel/plugin-proposal-decorators@npm:7.21.0" +"@babel/plugin-proposal-decorators@npm:7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-proposal-decorators@npm:7.22.3" dependencies: - "@babel/helper-create-class-features-plugin": ^7.21.0 - "@babel/helper-plugin-utils": ^7.20.2 - "@babel/helper-replace-supers": ^7.20.7 + "@babel/helper-create-class-features-plugin": ^7.22.1 + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/helper-replace-supers": ^7.22.1 "@babel/helper-split-export-declaration": ^7.18.6 - "@babel/plugin-syntax-decorators": ^7.21.0 + "@babel/plugin-syntax-decorators": ^7.22.3 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 2889a060010af7ac2e24f7a193262e50a94e254dd86d273e25a2bec2a2f97dd95b136bb933f63448c1cdde4f38ac7877837685657aa8161699eb226d9f1eb453 + checksum: e68d9311924095d6e35a8ed52dfaa06ec8a24bbfa2ca2a241a9ef31a543b014eaf32e6434b737cf87368ffc3051d80091d8640554f99f34211caaa7e90985ea9 languageName: node linkType: hard @@ -847,14 +898,14 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-decorators@npm:^7.21.0": - version: 7.21.0 - resolution: "@babel/plugin-syntax-decorators@npm:7.21.0" +"@babel/plugin-syntax-decorators@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-syntax-decorators@npm:7.22.3" dependencies: - "@babel/helper-plugin-utils": ^7.20.2 + "@babel/helper-plugin-utils": ^7.21.5 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 31108e73c3e569f2795ddb4f5f1f32c13c6be97a107d41e318c8f58ca3fde0fa958af3d1a302ab64f36f73ce4d6dda7889732243561c087a7cc3b22192d42a65 + checksum: 1886778ae5284202329e60f5be3322307dc77d0764a75e23f8fc222bc05409f4153035eb817cabd40265cc1c20eb201ca539c8cd2e883b312024dbb6480cdd95 languageName: node linkType: hard @@ -18169,7 +18220,7 @@ dexie@latest: dependencies: "@babel/core": 7.22.1 "@babel/eslint-parser": 7.21.8 - "@babel/plugin-proposal-decorators": 7.21.0 + "@babel/plugin-proposal-decorators": 7.22.3 "@babel/preset-env": 7.21.5 "@babel/preset-react": 7.18.6 "@babel/preset-typescript": 7.21.5 From 7f44db956226f3470b8392cd33be8e0ce0269f1c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 May 2023 15:09:34 +0000 Subject: [PATCH 020/137] chore(deps-dev): Bump workbox-webpack-plugin from 6.5.4 to 6.6.0 (#15254) Bumps [workbox-webpack-plugin](https://github.com/googlechrome/workbox) from 6.5.4 to 6.6.0. - [Release notes](https://github.com/googlechrome/workbox/releases) - [Commits](https://github.com/googlechrome/workbox/compare/v6.5.4...v6.6.0) --- updated-dependencies: - dependency-name: workbox-webpack-plugin dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 218 +++++++++++++++++++++++++-------------------------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/package.json b/package.json index ca5ef3a6ecf..cf6487dda98 100644 --- a/package.json +++ b/package.json @@ -180,7 +180,7 @@ "webpack-cli": "5.1.1", "webpack-dev-middleware": "6.1.1", "webpack-hot-middleware": "2.25.3", - "workbox-webpack-plugin": "6.5.4" + "workbox-webpack-plugin": "6.6.0" }, "engines": { "yarn": ">= 1.0.0", diff --git a/yarn.lock b/yarn.lock index 566e84fec2f..23af9e43ab9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -18395,7 +18395,7 @@ dexie@latest: webpack-dev-middleware: 6.1.1 webpack-hot-middleware: 2.25.3 webrtc-adapter: 6.4.8 - workbox-webpack-plugin: 6.5.4 + workbox-webpack-plugin: 6.6.0 zustand: 4.3.8 languageName: unknown linkType: soft @@ -18407,28 +18407,28 @@ dexie@latest: languageName: node linkType: hard -"workbox-background-sync@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-background-sync@npm:6.5.4" +"workbox-background-sync@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-background-sync@npm:6.6.0" dependencies: idb: ^7.0.1 - workbox-core: 6.5.4 - checksum: 60ac80275cc9083b82eb53b6034e3d555d15146927a21c6017329e2b5de12d802619cc2cc6cf023f534a1f1a51671d89cdb59b26a80587d5391e8dc4b7f7dd1d + workbox-core: 6.6.0 + checksum: ac2990110643aef62ca0be54e962296de7b09593b0262bd09fe4893978a42fa1f256c6d989ed472a31ae500b2255b80c6678530a6024eafb0b2f3a93a3c94a5f languageName: node linkType: hard -"workbox-broadcast-update@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-broadcast-update@npm:6.5.4" +"workbox-broadcast-update@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-broadcast-update@npm:6.6.0" dependencies: - workbox-core: 6.5.4 - checksum: 63cbab2012456871ffeae401e10b16668a0654fa3fa311743cf14e05b8719b797ac3afb47dc8955d87e24f0f1199a547b090bcfdbddd67191b07697d24ac5746 + workbox-core: 6.6.0 + checksum: 46a74b3b703244eb363e1731a2d6fe1fb2cd9b82d454733dfc6941fd35b76a852685f56db92408383ac50d564c2fd4282f0c6c4db60ba9beb5f311ea8f944dc7 languageName: node linkType: hard -"workbox-build@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-build@npm:6.5.4" +"workbox-build@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-build@npm:6.6.0" dependencies: "@apideck/better-ajv-errors": ^0.3.1 "@babel/core": ^7.11.1 @@ -18452,163 +18452,163 @@ dexie@latest: strip-comments: ^2.0.1 tempy: ^0.6.0 upath: ^1.2.0 - workbox-background-sync: 6.5.4 - workbox-broadcast-update: 6.5.4 - workbox-cacheable-response: 6.5.4 - workbox-core: 6.5.4 - workbox-expiration: 6.5.4 - workbox-google-analytics: 6.5.4 - workbox-navigation-preload: 6.5.4 - workbox-precaching: 6.5.4 - workbox-range-requests: 6.5.4 - workbox-recipes: 6.5.4 - workbox-routing: 6.5.4 - workbox-strategies: 6.5.4 - workbox-streams: 6.5.4 - workbox-sw: 6.5.4 - workbox-window: 6.5.4 - checksum: 7336bbab4ce8e6e43a17873beedf7360ec32e72310306c670cd4d9ebd7e5a6a729257b2806e63830136a9bf01955632c96b27edf7a00d52c7744dbe875cca6c1 + workbox-background-sync: 6.6.0 + workbox-broadcast-update: 6.6.0 + workbox-cacheable-response: 6.6.0 + workbox-core: 6.6.0 + workbox-expiration: 6.6.0 + workbox-google-analytics: 6.6.0 + workbox-navigation-preload: 6.6.0 + workbox-precaching: 6.6.0 + workbox-range-requests: 6.6.0 + workbox-recipes: 6.6.0 + workbox-routing: 6.6.0 + workbox-strategies: 6.6.0 + workbox-streams: 6.6.0 + workbox-sw: 6.6.0 + workbox-window: 6.6.0 + checksum: cd1a6c413659c2fd66f4438012f65b211cc748bb594c79bf0d9a60de0cefff3f8a4a23ab06f32c62064c37397ffffc1b77d3328658b7556ea7ff88e57f6ee4fd languageName: node linkType: hard -"workbox-cacheable-response@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-cacheable-response@npm:6.5.4" +"workbox-cacheable-response@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-cacheable-response@npm:6.6.0" dependencies: - workbox-core: 6.5.4 - checksum: f7545b71c1505d6f56f4ba1191989ea7af7119e67fa4eb414d80603221acd0fa31362014106c1df9b9ea0e28bdcf1e2b440859acab06a75e38e978a0d1c2e489 + workbox-core: 6.6.0 + checksum: 9e4e00c53679fd2020874cbdf54bb17560fd12353120ea08ca6213e5a11bf08139072616d79f5f8ab80d09f00efde94b003fe9bf5b6e23815be30d7aca760835 languageName: node linkType: hard -"workbox-core@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-core@npm:6.5.4" - checksum: d973cc6c1c5fdbde7f6642632384c2e0de48f08228eb234db2c97a18a7e5422b483005767e7b447ea774abc0772dfc1edef2ef2b5df174df4d40ae61d4c49719 +"workbox-core@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-core@npm:6.6.0" + checksum: 7d773a866b73a733780c52b895f9cf7bec926c9187395c307174deefba9a0a2fcd1edce0d1ca12b8a6c95ca9cf7755ccc1885b03bc82ebcfc4843e015bd84d7b languageName: node linkType: hard -"workbox-expiration@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-expiration@npm:6.5.4" +"workbox-expiration@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-expiration@npm:6.6.0" dependencies: idb: ^7.0.1 - workbox-core: 6.5.4 - checksum: 4b012b69ceafeb5afb3dd6c5c9abe6d55f2eb70666ab603bd78ff839f602336e7493990f729d507ded1fa505b852a5f9135f63afb75b9554c8f948e571143fce + workbox-core: 6.6.0 + checksum: b100b9c512754bc3e1a9c7c7d20d215d72c601a7b956333ca7753704a771a9f00e1732e9b774da4549bae390dd3cd138c6392f6a25fd67f7dcd84f89b0df7e9c languageName: node linkType: hard -"workbox-google-analytics@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-google-analytics@npm:6.5.4" +"workbox-google-analytics@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-google-analytics@npm:6.6.0" dependencies: - workbox-background-sync: 6.5.4 - workbox-core: 6.5.4 - workbox-routing: 6.5.4 - workbox-strategies: 6.5.4 - checksum: fcce5e313780cb4f74ac962c4809fe04f9a93d3d3905d282552a2cbe6d5c6c1b8744641fe7c57d1e4b62754b90c56155e97e589712f99f6a4cab750731d60b93 + workbox-background-sync: 6.6.0 + workbox-core: 6.6.0 + workbox-routing: 6.6.0 + workbox-strategies: 6.6.0 + checksum: 7b287da7517ae416aae8ea1494830bb517a29ab9786b2a8b8bf98971377b83715070e784399065ab101d4bba381ab0abbb8bd0962b3010bc01f54fdafb0b6702 languageName: node linkType: hard -"workbox-navigation-preload@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-navigation-preload@npm:6.5.4" +"workbox-navigation-preload@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-navigation-preload@npm:6.6.0" dependencies: - workbox-core: 6.5.4 - checksum: c8c341b799f328bb294de8eb9e331a55501d495153237e4ddbaa08bf8630efa700621df5d81f08fb9bffc0f40ecd191a60581f72a3cd5cc72ed2e5baa318c63a + workbox-core: 6.6.0 + checksum: d254465648e45ec6b6d7c3471354336501901d3872622ea9ba1aa1f935d4d52941d0f92fa6c06e7363e10dbac4874d5d4bff7d99cbe094925046f562a37e88cc languageName: node linkType: hard -"workbox-precaching@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-precaching@npm:6.5.4" +"workbox-precaching@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-precaching@npm:6.6.0" dependencies: - workbox-core: 6.5.4 - workbox-routing: 6.5.4 - workbox-strategies: 6.5.4 - checksum: 15ef24ffb04edd13bcdfa6c4e7f64002551badce2d507031c343019b3bcdc569591fdff8f8e30cf1262d641d3eff611115bdda7b2ad0deb9d4ccef8f4be8bd20 + workbox-core: 6.6.0 + workbox-routing: 6.6.0 + workbox-strategies: 6.6.0 + checksum: 62e5ee2e40568a56d4131bba461623579f56b9bd273aa7d2805e43151057f413c2ef32fb3d007aff0a5ac3ad84d5feae87408284249a487a5d51c3775c46c816 languageName: node linkType: hard -"workbox-range-requests@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-range-requests@npm:6.5.4" +"workbox-range-requests@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-range-requests@npm:6.6.0" dependencies: - workbox-core: 6.5.4 - checksum: 50f144ced7af7db77b3c64c06c0f9924db5b8573ff2c50b3899fc22c4a360baaf6b332e65f47cf812adfc9dec882a94556fed1cf90ae4ef20b645caa03d1149e + workbox-core: 6.6.0 + checksum: a55d1a364b2155548695dc8f6f85baade196d7d1bec980bcdbda80236803b14167995a81b944cffe932a94c4d556466773121afe3661a6f0a13403cbe96d8d9f languageName: node linkType: hard -"workbox-recipes@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-recipes@npm:6.5.4" +"workbox-recipes@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-recipes@npm:6.6.0" dependencies: - workbox-cacheable-response: 6.5.4 - workbox-core: 6.5.4 - workbox-expiration: 6.5.4 - workbox-precaching: 6.5.4 - workbox-routing: 6.5.4 - workbox-strategies: 6.5.4 - checksum: 397befeb7c4c63adb0eb1913934ecaf496846844124044f0b39348288ad5950ffb45eb488cfef2504adeafe28a51cdbcc21af2a234813d81ab3da0949942c265 + workbox-cacheable-response: 6.6.0 + workbox-core: 6.6.0 + workbox-expiration: 6.6.0 + workbox-precaching: 6.6.0 + workbox-routing: 6.6.0 + workbox-strategies: 6.6.0 + checksum: f2ecf38502260703e4b0dcef67e3ac26d615f2c90f6d863ca7308db52454f67934ba842fd577ee807d9f510f1a277fd66af7caf57d39e50a181d05dbb3e550a7 languageName: node linkType: hard -"workbox-routing@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-routing@npm:6.5.4" +"workbox-routing@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-routing@npm:6.6.0" dependencies: - workbox-core: 6.5.4 - checksum: 7198c50b9016d3cea0e5b51512d66f5813d6e6ad5e99c201435d6c0ab3baee1c90aa2bbdd72dd954f439267b6e6196fb04ec96e62347e6c89385db6c1a4dec79 + workbox-core: 6.6.0 + checksum: 7a70b836196eb67332d33a94c0b57859781fe869e81a9c95452d3f4f368d3199f8c3da632dbc10425fde902a1930cf8cfd83f6434ad2b586904ce68cd9f35c6d languageName: node linkType: hard -"workbox-strategies@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-strategies@npm:6.5.4" +"workbox-strategies@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-strategies@npm:6.6.0" dependencies: - workbox-core: 6.5.4 - checksum: 52134ecd6c05f4edd31e7b022b33a91b7b59c215bfdfb987bc0f10be02fea4d4e6385a9638a2303ba336190c5d28f9721182cd78a6779b9c817a66ec12cb1c6b + workbox-core: 6.6.0 + checksum: 236232a77fb4a4847d1e9ae6c7c9bd9c6b9449209baab9d8d90f78240326a9c0f69551b408ebf9e76610d86da15563bf27439b7e885a7bac01dfd08047c0dd7b languageName: node linkType: hard -"workbox-streams@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-streams@npm:6.5.4" +"workbox-streams@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-streams@npm:6.6.0" dependencies: - workbox-core: 6.5.4 - workbox-routing: 6.5.4 - checksum: efd6917ead915011be2b25dc3ebbb9d051dbd10ba2d91cdaec36ca742360e2c33627564653fc40f336dee874d501e94bcc4a25d1b65eaf5a6ee5f1a8b894af44 + workbox-core: 6.6.0 + workbox-routing: 6.6.0 + checksum: 64a295e48e44e3fa4743b5baec646fc9117428e7592033475e38c461e45c294910712f322c32417d354b22999902ef8035119e070e61e159e531d878d991fc33 languageName: node linkType: hard -"workbox-sw@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-sw@npm:6.5.4" - checksum: b95c76a74b84ff268ef7691447125697f4de85b076ebc33c9545fb7532b020b6f66b37f7a4bedbc21ab45473d1109337a5f037c45b3d99126ae8f5eeb898a687 +"workbox-sw@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-sw@npm:6.6.0" + checksum: bb5f8695de02f89c7955465dcbd568299915565008dc8a068c5d19c1347f75d417640b9f61590e16b169b703e77d02f8b1e10c4b241f74f43cfe76175bfa5fed languageName: node linkType: hard -"workbox-webpack-plugin@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-webpack-plugin@npm:6.5.4" +"workbox-webpack-plugin@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-webpack-plugin@npm:6.6.0" dependencies: fast-json-stable-stringify: ^2.1.0 pretty-bytes: ^5.4.1 upath: ^1.2.0 webpack-sources: ^1.4.3 - workbox-build: 6.5.4 + workbox-build: 6.6.0 peerDependencies: webpack: ^4.4.0 || ^5.9.0 - checksum: d42ab213994767863711d54b6e2ea277839bd731430f7f3f826ccbb8927c6e9e42e2bea6316358d715a8f90f445ce2c094a46018c8a3b3e7035acc7b2822574e + checksum: b8e04a342f2d45086f28ae56e4806d74dd153c3b750855533a55954f4e85752113e76a6d79a32206eb697a342725897834c9e7976894374d8698cd950477d37a languageName: node linkType: hard -"workbox-window@npm:6.5.4": - version: 6.5.4 - resolution: "workbox-window@npm:6.5.4" +"workbox-window@npm:6.6.0": + version: 6.6.0 + resolution: "workbox-window@npm:6.6.0" dependencies: "@types/trusted-types": ^2.0.2 - workbox-core: 6.5.4 - checksum: bc43c8d31908ab564d740eb1041180c0b0ca4d1f0a3ccde59c5764a8f96d7b08edb7df975360fd37c2bec9f3f57ca9de6c7e34fd252aa1a4a075b5b002f74f60 + workbox-core: 6.6.0 + checksum: bb1dd031c1525317ceffbdc3e4f502a70dce461fd6355146e1050c1090f3c640bf65edf42a5d2a3b91b4d0c313df32c1405d88bf701d44c0e3ebc492cd77fe14 languageName: node linkType: hard From 6e81e80d05bf397cb81f0941ed5386e0fa746690 Mon Sep 17 00:00:00 2001 From: Amir Ghezelbash Date: Mon, 29 May 2023 18:11:02 +0330 Subject: [PATCH 021/137] chore: Bump @wireapp/core from 40.2.8 to 40.3.0 (#15261) --- package.json | 2 +- yarn.lock | 29 ++++++++++------------------- 2 files changed, 11 insertions(+), 20 deletions(-) diff --git a/package.json b/package.json index cf6487dda98..34ca4091642 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "@emotion/react": "11.11.0", "@types/eslint": "8.37.0", "@wireapp/avs": "9.2.13", - "@wireapp/core": "40.2.8", + "@wireapp/core": "40.3.0", "@wireapp/lru-cache": "3.8.1", "@wireapp/react-ui-kit": "9.7.1", "@wireapp/store-engine-dexie": "2.1.1", diff --git a/yarn.lock b/yarn.lock index 23af9e43ab9..63bc0f7b221 100644 --- a/yarn.lock +++ b/yarn.lock @@ -617,15 +617,6 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.21.9, @babel/parser@npm:^7.22.0": - version: 7.22.3 - resolution: "@babel/parser@npm:7.22.3" - bin: - parser: ./bin/babel-parser.js - checksum: 016f2960212fd86817e15d90b9b3450d2b51af189b1c17a20ade5735d9ec69e76e29def317e09188ecd5fa6eab4f9ab72d88b8b829c1b2994400a6a2c2dc1958 - languageName: node - linkType: hard - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.18.6": version: 7.18.6 resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.18.6" @@ -5434,9 +5425,9 @@ __metadata: languageName: node linkType: hard -"@wireapp/api-client@npm:^24.14.1": - version: 24.14.1 - resolution: "@wireapp/api-client@npm:24.14.1" +"@wireapp/api-client@npm:^24.15.0": + version: 24.15.0 + resolution: "@wireapp/api-client@npm:24.15.0" dependencies: "@wireapp/commons": ^5.1.0 "@wireapp/priority-queue": ^2.1.1 @@ -5449,7 +5440,7 @@ __metadata: spark-md5: 3.0.2 tough-cookie: 4.1.2 ws: 8.11.0 - checksum: e8fe3704acba47e83884d4c6209e2f956ce7017adb950be8f2d8244dbebef6191dcd120d964a4c20f04d8b824c427c3629ec9b40c385d64185d2ee2676e5548e + checksum: 5a2a6dad73b56110690f6e62bd7f45bb7ed1ccdaaa748f8207fb7da987150dd7e2c8cf8cfd68a7c3c951e9ac69afd49dd2335157156dff277c3f72efc3695273 languageName: node linkType: hard @@ -5502,11 +5493,11 @@ __metadata: languageName: node linkType: hard -"@wireapp/core@npm:40.2.8": - version: 40.2.8 - resolution: "@wireapp/core@npm:40.2.8" +"@wireapp/core@npm:40.3.0": + version: 40.3.0 + resolution: "@wireapp/core@npm:40.3.0" dependencies: - "@wireapp/api-client": ^24.14.1 + "@wireapp/api-client": ^24.15.0 "@wireapp/commons": ^5.1.0 "@wireapp/core-crypto": 0.8.2 "@wireapp/cryptobox": 12.8.0 @@ -5523,7 +5514,7 @@ __metadata: logdown: 3.3.1 long: ^5.2.0 uuidjs: 4.2.13 - checksum: ee76fdfbae0b00714f88a7806cc47760efc7769e0bdb4773fa62e5ee241adf03419d78a09999ada4fbfc24acc45a4953d69658b24c7bd8894eb723ea5e1c2600 + checksum: 975932a904843790651cf7f28b0a0df5e83cdd3d3a631caef5ded9e08b91e316e128310427e75fd91650083dcaace8cecd2df46b321b52ac9b4cfbd4313803f4 languageName: node linkType: hard @@ -18267,7 +18258,7 @@ dexie@latest: "@typescript-eslint/parser": ^5.59.7 "@wireapp/avs": 9.2.13 "@wireapp/copy-config": 2.1.0 - "@wireapp/core": 40.2.8 + "@wireapp/core": 40.3.0 "@wireapp/eslint-config": 2.2.1 "@wireapp/lru-cache": 3.8.1 "@wireapp/prettier-config": 0.6.0 From 681fe19f27771925767b2090811d07d355ab01a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 May 2023 14:46:21 +0000 Subject: [PATCH 022/137] chore(deps-dev): Bump @babel/preset-react from 7.18.6 to 7.22.3 (#15258) Bumps [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react) from 7.18.6 to 7.22.3. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.22.3/packages/babel-preset-react) --- updated-dependencies: - dependency-name: "@babel/preset-react" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 33 ++++++++++++++++++++++++--------- 2 files changed, 25 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 34ca4091642..a8bfa2eaa50 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,7 @@ "@babel/eslint-parser": "7.21.8", "@babel/plugin-proposal-decorators": "7.22.3", "@babel/preset-env": "7.21.5", - "@babel/preset-react": "7.18.6", + "@babel/preset-react": "7.22.3", "@babel/preset-typescript": "7.21.5", "@emotion/eslint-plugin": "^11.11.0", "@faker-js/faker": "7.6.0", diff --git a/yarn.lock b/yarn.lock index 63bc0f7b221..063fb63a167 100644 --- a/yarn.lock +++ b/yarn.lock @@ -538,7 +538,7 @@ __metadata: languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.18.6, @babel/helper-validator-option@npm:^7.21.0": +"@babel/helper-validator-option@npm:^7.21.0": version: 7.21.0 resolution: "@babel/helper-validator-option@npm:7.21.0" checksum: 8ece4c78ffa5461fd8ab6b6e57cc51afad59df08192ed5d84b475af4a7193fc1cb794b59e3e7be64f3cdc4df7ac78bf3dbb20c129d7757ae078e6279ff8c2f07 @@ -1426,6 +1426,21 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-react-jsx@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-react-jsx@npm:7.22.3" + dependencies: + "@babel/helper-annotate-as-pure": ^7.18.6 + "@babel/helper-module-imports": ^7.21.4 + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/plugin-syntax-jsx": ^7.21.4 + "@babel/types": ^7.22.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 063243f5767de490d10ed671223f27baababa4b89b67d1d77207f8f91f8915c485b877773472c97398aef3ce898c3570d367994d5598a0686e18ff5bf3472f31 + languageName: node + linkType: hard + "@babel/plugin-transform-react-pure-annotations@npm:^7.18.6": version: 7.18.6 resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.18.6" @@ -1763,19 +1778,19 @@ __metadata: languageName: node linkType: hard -"@babel/preset-react@npm:7.18.6": - version: 7.18.6 - resolution: "@babel/preset-react@npm:7.18.6" +"@babel/preset-react@npm:7.22.3": + version: 7.22.3 + resolution: "@babel/preset-react@npm:7.22.3" dependencies: - "@babel/helper-plugin-utils": ^7.18.6 - "@babel/helper-validator-option": ^7.18.6 + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/helper-validator-option": ^7.21.0 "@babel/plugin-transform-react-display-name": ^7.18.6 - "@babel/plugin-transform-react-jsx": ^7.18.6 + "@babel/plugin-transform-react-jsx": ^7.22.3 "@babel/plugin-transform-react-jsx-development": ^7.18.6 "@babel/plugin-transform-react-pure-annotations": ^7.18.6 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 540d9cf0a0cc0bb07e6879994e6fb7152f87dafbac880b56b65e2f528134c7ba33e0cd140b58700c77b2ebf4c81fa6468fed0ba391462d75efc7f8c1699bb4c3 + checksum: 0b6210e8ea7485d71dfa7745e6b03e6252e3fd363cc84765c81709b51ad89bcf0a5887a82651dedfc007b7e47ae918496ee963f42c52d9ce3ddbcc5815b96bb7 languageName: node linkType: hard @@ -18213,7 +18228,7 @@ dexie@latest: "@babel/eslint-parser": 7.21.8 "@babel/plugin-proposal-decorators": 7.22.3 "@babel/preset-env": 7.21.5 - "@babel/preset-react": 7.18.6 + "@babel/preset-react": 7.22.3 "@babel/preset-typescript": 7.21.5 "@datadog/browser-logs": ^4.42.2 "@datadog/browser-rum": ^4.42.2 From fedee1d75a858764a2db1dc6e13ecbbba90886a1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 May 2023 14:50:15 +0000 Subject: [PATCH 023/137] chore(deps): Bump @wireapp/react-ui-kit from 9.7.1 to 9.7.2 (#15263) Bumps [@wireapp/react-ui-kit](https://github.com/wireapp/wire-web-packages) from 9.7.1 to 9.7.2. - [Commits](https://github.com/wireapp/wire-web-packages/compare/@wireapp/react-ui-kit@9.7.1...@wireapp/react-ui-kit@9.7.2) --- updated-dependencies: - dependency-name: "@wireapp/react-ui-kit" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index a8bfa2eaa50..4d7094a6ea6 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "@wireapp/avs": "9.2.13", "@wireapp/core": "40.3.0", "@wireapp/lru-cache": "3.8.1", - "@wireapp/react-ui-kit": "9.7.1", + "@wireapp/react-ui-kit": "9.7.2", "@wireapp/store-engine-dexie": "2.1.1", "@wireapp/store-engine-sqleet": "1.8.9", "@wireapp/webapp-events": "0.17.0", diff --git a/yarn.lock b/yarn.lock index 063fb63a167..e576f473817 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5640,9 +5640,9 @@ __metadata: languageName: node linkType: hard -"@wireapp/react-ui-kit@npm:9.7.1": - version: 9.7.1 - resolution: "@wireapp/react-ui-kit@npm:9.7.1" +"@wireapp/react-ui-kit@npm:9.7.2": + version: 9.7.2 + resolution: "@wireapp/react-ui-kit@npm:9.7.2" dependencies: "@types/color": 3.0.3 color: 4.2.3 @@ -5657,7 +5657,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 774225cbab371178b2e40529724796fafa3aa537582157dd22265b599f25fd85a819b454eff9cf2d9a408e00cbbbadb7106ac865a732a2a0098e849ba20d8a7b + checksum: af9b7f9abd375dab9a4c2992f95359969ebf2bfc2151657138eb2a04fb1faaf0077f0de8b51089f13fa52daf4bc6960a322795b1a9915f364b61c52730dd7dda languageName: node linkType: hard @@ -18277,7 +18277,7 @@ dexie@latest: "@wireapp/eslint-config": 2.2.1 "@wireapp/lru-cache": 3.8.1 "@wireapp/prettier-config": 0.6.0 - "@wireapp/react-ui-kit": 9.7.1 + "@wireapp/react-ui-kit": 9.7.2 "@wireapp/store-engine": ^5.1.1 "@wireapp/store-engine-dexie": 2.1.1 "@wireapp/store-engine-sqleet": 1.8.9 From 3bed0b819efaf28c2e58e41ec463db8083a0e1fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 May 2023 14:52:03 +0000 Subject: [PATCH 024/137] chore(deps-dev): Bump @babel/preset-env from 7.21.5 to 7.22.4 (#15262) Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.21.5 to 7.22.4. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.22.4/packages/babel-preset-env) --- updated-dependencies: - dependency-name: "@babel/preset-env" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 460 +++++++++++++++++++++++++++++++++++++++++++++------ 2 files changed, 407 insertions(+), 55 deletions(-) diff --git a/package.json b/package.json index 4d7094a6ea6..24bbdd6ded9 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "@babel/core": "7.22.1", "@babel/eslint-parser": "7.21.8", "@babel/plugin-proposal-decorators": "7.22.3", - "@babel/preset-env": "7.21.5", + "@babel/preset-env": "7.22.4", "@babel/preset-react": "7.22.3", "@babel/preset-typescript": "7.21.5", "@emotion/eslint-plugin": "^11.11.0", diff --git a/yarn.lock b/yarn.lock index e576f473817..b912286179d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -44,14 +44,7 @@ __metadata: languageName: node linkType: hard -"@babel/compat-data@npm:^7.21.5": - version: 7.21.7 - resolution: "@babel/compat-data@npm:7.21.7" - checksum: 28747eb3fc084d088ba2db0336f52118cfa730a57bdbac81630cae1f38ad0336605b95b3390325937802f344e0b7fa25e2f1b67e3ee2d7383b877f88dee0e51c - languageName: node - linkType: hard - -"@babel/compat-data@npm:^7.22.0": +"@babel/compat-data@npm:^7.22.0, @babel/compat-data@npm:^7.22.3": version: 7.22.3 resolution: "@babel/compat-data@npm:7.22.3" checksum: eb001646f41459f42ccb0d39ee8bb3c3c495bc297234817044c0002689c625e3159a6678c53fd31bd98cf21f31472b73506f350fc6906e3bdfa49cb706e2af8d @@ -188,21 +181,6 @@ __metadata: languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.21.5": - version: 7.21.5 - resolution: "@babel/helper-compilation-targets@npm:7.21.5" - dependencies: - "@babel/compat-data": ^7.21.5 - "@babel/helper-validator-option": ^7.21.0 - browserslist: ^4.21.3 - lru-cache: ^5.1.1 - semver: ^6.3.0 - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 0edecb9c970ddc22ebda1163e77a7f314121bef9e483e0e0d9a5802540eed90d5855b6bf9bce03419b35b2e07c323e62d0353b153fa1ca34f17dbba897a83c25 - languageName: node - linkType: hard - "@babel/helper-compilation-targets@npm:^7.22.1": version: 7.22.1 resolution: "@babel/helper-compilation-targets@npm:7.22.1" @@ -267,6 +245,19 @@ __metadata: languageName: node linkType: hard +"@babel/helper-create-regexp-features-plugin@npm:^7.22.1": + version: 7.22.1 + resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.1" + dependencies: + "@babel/helper-annotate-as-pure": ^7.18.6 + regexpu-core: ^5.3.1 + semver: ^6.3.0 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 52d875762110d5dac41ce21fa30a2aaa47c119ca58add190a5123b7a843da096854c0b6358c327b8e0dc2f2219a47eace69332d8a26f165f529ec402a4e6f974 + languageName: node + linkType: hard + "@babel/helper-define-polyfill-provider@npm:^0.3.3": version: 0.3.3 resolution: "@babel/helper-define-polyfill-provider@npm:0.3.3" @@ -283,6 +274,22 @@ __metadata: languageName: node linkType: hard +"@babel/helper-define-polyfill-provider@npm:^0.4.0": + version: 0.4.0 + resolution: "@babel/helper-define-polyfill-provider@npm:0.4.0" + dependencies: + "@babel/helper-compilation-targets": ^7.17.7 + "@babel/helper-plugin-utils": ^7.16.7 + debug: ^4.1.1 + lodash.debounce: ^4.0.8 + resolve: ^1.14.2 + semver: ^6.1.2 + peerDependencies: + "@babel/core": ^7.4.0-0 + checksum: 5dca4c5e78457c5ced366bea601efa4e8c69bf5d53b0fe540283897575c49b1b88191c8ef062110de9046e886703ed3270fcda3a87f0886cdbb549204d3ff63f + languageName: node + linkType: hard + "@babel/helper-environment-visitor@npm:^7.18.9": version: 7.18.9 resolution: "@babel/helper-environment-visitor@npm:7.18.9" @@ -641,6 +648,19 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.22.3" + dependencies: + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/helper-skip-transparent-expression-wrappers": ^7.20.0 + "@babel/plugin-transform-optional-chaining": ^7.22.3 + peerDependencies: + "@babel/core": ^7.13.0 + checksum: d786e4d89c0674cab4fb65e804920782b2ff8319a3e6c561c81b0265451f4ac9f8ce1f9699303398636352b5177730e31c219a086b72980bf39f98faadeab3c1 + languageName: node + linkType: hard + "@babel/plugin-proposal-async-generator-functions@npm:^7.20.7": version: 7.20.7 resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.20.7" @@ -933,6 +953,17 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-syntax-import-attributes@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.22.3" + dependencies: + "@babel/helper-plugin-utils": ^7.21.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 48cf66ba1b6772134f4e638c42ff51a0e8037cea540733642146e031641641e8a03e4f43e6be613e2313d174f95d9b3a1f14f41db0a9fa78a8330282b5aad03c + languageName: node + linkType: hard + "@babel/plugin-syntax-import-meta@npm:^7.10.4, @babel/plugin-syntax-import-meta@npm:^7.8.3": version: 7.10.4 resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" @@ -1065,6 +1096,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-syntax-unicode-sets-regex@npm:^7.18.6": + version: 7.18.6 + resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6" + dependencies: + "@babel/helper-create-regexp-features-plugin": ^7.18.6 + "@babel/helper-plugin-utils": ^7.18.6 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: a651d700fe63ff0ddfd7186f4ebc24447ca734f114433139e3c027bc94a900d013cf1ef2e2db8430425ba542e39ae160c3b05f06b59fd4656273a3df97679e9c + languageName: node + linkType: hard + "@babel/plugin-transform-arrow-functions@npm:^7.20.7": version: 7.20.7 resolution: "@babel/plugin-transform-arrow-functions@npm:7.20.7" @@ -1087,6 +1130,20 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-async-generator-functions@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-async-generator-functions@npm:7.22.3" + dependencies: + "@babel/helper-environment-visitor": ^7.22.1 + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/helper-remap-async-to-generator": ^7.18.9 + "@babel/plugin-syntax-async-generators": ^7.8.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 0ea339f9e484df0b72eb962dca81f5e6291d674eb4de7af2cde2a7e2ff728fbc4fdad662f2e77bf5bdbd2b628e111b9a7c71c3165684147ca1bf1f891fc30a4b + languageName: node + linkType: hard + "@babel/plugin-transform-async-to-generator@npm:^7.20.7": version: 7.20.7 resolution: "@babel/plugin-transform-async-to-generator@npm:7.20.7" @@ -1122,6 +1179,31 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-class-properties@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-class-properties@npm:7.22.3" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.22.1 + "@babel/helper-plugin-utils": ^7.21.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 4037397badb5d537d87c092da99a0278f735e66dc667a31495aa2dd5fcf1315bfe8981773d2ce502ff8048c68ab32a7c3019df714945520443e28380fa5e7f74 + languageName: node + linkType: hard + +"@babel/plugin-transform-class-static-block@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-class-static-block@npm:7.22.3" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.22.1 + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/plugin-syntax-class-static-block": ^7.14.5 + peerDependencies: + "@babel/core": ^7.12.0 + checksum: f407a3354ee0720803cd3366d7d081643d37201892243deed1aa76eb9330c11bf4e548441fa6a77637262a1b61890c1aacea176ad828650b8eb3f5b4d2da9c97 + languageName: node + linkType: hard + "@babel/plugin-transform-classes@npm:^7.21.0": version: 7.21.0 resolution: "@babel/plugin-transform-classes@npm:7.21.0" @@ -1199,6 +1281,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-dynamic-import@npm:^7.22.1": + version: 7.22.1 + resolution: "@babel/plugin-transform-dynamic-import@npm:7.22.1" + dependencies: + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/plugin-syntax-dynamic-import": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e322a08f01cedddcd7c70aa6a74342e900df39ab13dbaa2c8175af660b1786dd26b582546fc37e16bec47181931963e173ff53ffd7c41d5f54687da5f8d457bb + languageName: node + linkType: hard + "@babel/plugin-transform-exponentiation-operator@npm:^7.18.6": version: 7.18.6 resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.18.6" @@ -1211,6 +1305,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-export-namespace-from@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-export-namespace-from@npm:7.22.3" + dependencies: + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/plugin-syntax-export-namespace-from": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 7bb031ea6e05e8090ac18dc03c62527be29f541e9ec0c93031d77d4540c736b43384a2f2a9aef1f72b7867989f1ce2aaefb325dbc7cc49c59f55aed87a96d488 + languageName: node + linkType: hard + "@babel/plugin-transform-for-of@npm:^7.21.0": version: 7.21.0 resolution: "@babel/plugin-transform-for-of@npm:7.21.0" @@ -1246,6 +1352,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-json-strings@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-json-strings@npm:7.22.3" + dependencies: + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/plugin-syntax-json-strings": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2b09a549bdd80020b390dbc91aaf0be624e42fff64026a38abad1ec6c7714551edad8a84edb555288778aa9e3bb20e9df535587466b30347b63532fb1f404731 + languageName: node + linkType: hard + "@babel/plugin-transform-literals@npm:^7.18.9": version: 7.18.9 resolution: "@babel/plugin-transform-literals@npm:7.18.9" @@ -1257,6 +1375,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-logical-assignment-operators@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.22.3" + dependencies: + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b2452c6804aa440bd3fc662ee4f477c3acfa4a7f768ac66a6084a9e0774ac52cfff7cc6ea72495cc4e0728d2d7f98b65555927484dc96e9564adf1bcc5aa956e + languageName: node + linkType: hard + "@babel/plugin-transform-member-expression-literals@npm:^7.18.6": version: 7.18.6 resolution: "@babel/plugin-transform-member-expression-literals@npm:7.18.6" @@ -1320,6 +1450,20 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-modules-systemjs@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-modules-systemjs@npm:7.22.3" + dependencies: + "@babel/helper-hoist-variables": ^7.18.6 + "@babel/helper-module-transforms": ^7.22.1 + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/helper-validator-identifier": ^7.19.1 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a12a063dad61cccf50686d3f394f9f3f6c06261160c897a4b3423309aa7c40d37bd88126cf8535701f3490b99ac93b34c947f664465d63a74477ba66ab1d82e9 + languageName: node + linkType: hard + "@babel/plugin-transform-modules-umd@npm:^7.18.6": version: 7.18.6 resolution: "@babel/plugin-transform-modules-umd@npm:7.18.6" @@ -1344,6 +1488,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.22.3" + dependencies: + "@babel/helper-create-regexp-features-plugin": ^7.22.1 + "@babel/helper-plugin-utils": ^7.21.5 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: baf3d8d785ab36df2d7396b8a255e1209eecf83ad5334121fbb9e966a95353fe2100dd3683436f4c74b3c848ec0b34817491c4d14b074e3e539e2040076173d8 + languageName: node + linkType: hard + "@babel/plugin-transform-new-target@npm:^7.18.6": version: 7.18.6 resolution: "@babel/plugin-transform-new-target@npm:7.18.6" @@ -1355,6 +1511,56 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-new-target@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-new-target@npm:7.22.3" + dependencies: + "@babel/helper-plugin-utils": ^7.21.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a28043575aae52127b7287711cf0b244a28279464d979858408ca6197169b6f7e6341e5b4554a894d409245fcd696c9bf38d5f1f1c64f84a82f479bf35659920 + languageName: node + linkType: hard + +"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.22.3" + dependencies: + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 404c3c7eb8b99f226ce40147d350ad3df55b38ffe39856356f7cfbbb1626ce060bc1daff0663c090d53160d39fdb26ea67ca291d47211ff7746a8a0c3bbc1639 + languageName: node + linkType: hard + +"@babel/plugin-transform-numeric-separator@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-numeric-separator@npm:7.22.3" + dependencies: + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/plugin-syntax-numeric-separator": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2cbcf21d040cb9ab6ded383586620f3a84e8619fecdc222d8b3d462c706b1e8ceae2dddf530d9177291c155c80dd67100142e76a11f1e230aeda6d90273a2890 + languageName: node + linkType: hard + +"@babel/plugin-transform-object-rest-spread@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-object-rest-spread@npm:7.22.3" + dependencies: + "@babel/compat-data": ^7.22.3 + "@babel/helper-compilation-targets": ^7.22.1 + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/plugin-syntax-object-rest-spread": ^7.8.3 + "@babel/plugin-transform-parameters": ^7.22.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 43f4cb8eb60e76bb506cab86a6c9a98b2f4f986296a20a01f93c6a7bf3835621a22e3e85eaca094c86b03580f93e583391f4c0da0af0c9408ff1a2b35f2e96ca + languageName: node + linkType: hard + "@babel/plugin-transform-object-super@npm:^7.18.6": version: 7.18.6 resolution: "@babel/plugin-transform-object-super@npm:7.18.6" @@ -1367,6 +1573,31 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-optional-catch-binding@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.22.3" + dependencies: + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e766bd2ac74fcd2226c8816500c788268a1fa5200498a288f10854253addb36871cd7b415e20736819e7fcb996a0e33312bc1ce6db9b540ec9dd7b946cb37dda + languageName: node + linkType: hard + +"@babel/plugin-transform-optional-chaining@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-optional-chaining@npm:7.22.3" + dependencies: + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/helper-skip-transparent-expression-wrappers": ^7.20.0 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 9b50a28b59250ecabeae928b8237c596e6f81f5fcdacd03a99a3777bbfea2447773936f4b5091e63b2d46e707429d9bdf22fcd0fb4b05a702bf08f554bea3ae2 + languageName: node + linkType: hard + "@babel/plugin-transform-parameters@npm:^7.20.7, @babel/plugin-transform-parameters@npm:^7.21.3": version: 7.21.3 resolution: "@babel/plugin-transform-parameters@npm:7.21.3" @@ -1378,6 +1609,43 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-parameters@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-parameters@npm:7.22.3" + dependencies: + "@babel/helper-plugin-utils": ^7.21.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 68a30f630f5d99be7675fab23d009205302f33f1eac015418d5344983fe8f97f4eae0130f6e4f3c21b8dd8971d516346fba90b01ba3c2c15f23b47c6f4b7161a + languageName: node + linkType: hard + +"@babel/plugin-transform-private-methods@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-private-methods@npm:7.22.3" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.22.1 + "@babel/helper-plugin-utils": ^7.21.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 048501cfdf86c3de5750dc0728cf73d65f1ec4ad932e16e55b238ac0b5b805882c1fbbdb63077d95ce8beadae840cee11b767cc6918264517245e7f04baf9f63 + languageName: node + linkType: hard + +"@babel/plugin-transform-private-property-in-object@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-private-property-in-object@npm:7.22.3" + dependencies: + "@babel/helper-annotate-as-pure": ^7.18.6 + "@babel/helper-create-class-features-plugin": ^7.22.1 + "@babel/helper-plugin-utils": ^7.21.5 + "@babel/plugin-syntax-private-property-in-object": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ea3c347687672119305ba2f2ef7ca66905c1713c6652bb01deacc057178bedcf07c46b6b75e1fe8688ffed8fcabe312a735eeb0fef21dd9ab61a61db23ef6ba5 + languageName: node + linkType: hard + "@babel/plugin-transform-property-literals@npm:^7.18.6": version: 7.18.6 resolution: "@babel/plugin-transform-property-literals@npm:7.18.6" @@ -1580,6 +1848,18 @@ __metadata: languageName: node linkType: hard +"@babel/plugin-transform-unicode-property-regex@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.22.3" + dependencies: + "@babel/helper-create-regexp-features-plugin": ^7.22.1 + "@babel/helper-plugin-utils": ^7.21.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 666592f5f5496e7dc267fb32e5c0d1ca620a5a1b7dcfec4fec517a625d2413213f795d3905aea05f45639285578ef13351cedfc5b699aaa482841866089863f6 + languageName: node + linkType: hard + "@babel/plugin-transform-unicode-regex@npm:^7.18.6": version: 7.18.6 resolution: "@babel/plugin-transform-unicode-regex@npm:7.18.6" @@ -1592,37 +1872,36 @@ __metadata: languageName: node linkType: hard -"@babel/preset-env@npm:7.21.5": - version: 7.21.5 - resolution: "@babel/preset-env@npm:7.21.5" +"@babel/plugin-transform-unicode-sets-regex@npm:^7.22.3": + version: 7.22.3 + resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.22.3" dependencies: - "@babel/compat-data": ^7.21.5 - "@babel/helper-compilation-targets": ^7.21.5 + "@babel/helper-create-regexp-features-plugin": ^7.22.1 + "@babel/helper-plugin-utils": ^7.21.5 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 992f6ae2764b1ee3bea9d948132daed22f042517cd6109a8fd2c52c03e7b930fac5a9e6e28130b0ed5a6f1cbf809c9735985352de0484b4c95fb0f6dd88614a2 + languageName: node + linkType: hard + +"@babel/preset-env@npm:7.22.4": + version: 7.22.4 + resolution: "@babel/preset-env@npm:7.22.4" + dependencies: + "@babel/compat-data": ^7.22.3 + "@babel/helper-compilation-targets": ^7.22.1 "@babel/helper-plugin-utils": ^7.21.5 "@babel/helper-validator-option": ^7.21.0 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ^7.18.6 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^7.20.7 - "@babel/plugin-proposal-async-generator-functions": ^7.20.7 - "@babel/plugin-proposal-class-properties": ^7.18.6 - "@babel/plugin-proposal-class-static-block": ^7.21.0 - "@babel/plugin-proposal-dynamic-import": ^7.18.6 - "@babel/plugin-proposal-export-namespace-from": ^7.18.9 - "@babel/plugin-proposal-json-strings": ^7.18.6 - "@babel/plugin-proposal-logical-assignment-operators": ^7.20.7 - "@babel/plugin-proposal-nullish-coalescing-operator": ^7.18.6 - "@babel/plugin-proposal-numeric-separator": ^7.18.6 - "@babel/plugin-proposal-object-rest-spread": ^7.20.7 - "@babel/plugin-proposal-optional-catch-binding": ^7.18.6 - "@babel/plugin-proposal-optional-chaining": ^7.21.0 - "@babel/plugin-proposal-private-methods": ^7.18.6 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^7.22.3 "@babel/plugin-proposal-private-property-in-object": ^7.21.0 - "@babel/plugin-proposal-unicode-property-regex": ^7.18.6 "@babel/plugin-syntax-async-generators": ^7.8.4 "@babel/plugin-syntax-class-properties": ^7.12.13 "@babel/plugin-syntax-class-static-block": ^7.14.5 "@babel/plugin-syntax-dynamic-import": ^7.8.3 "@babel/plugin-syntax-export-namespace-from": ^7.8.3 "@babel/plugin-syntax-import-assertions": ^7.20.0 + "@babel/plugin-syntax-import-attributes": ^7.22.3 "@babel/plugin-syntax-import-meta": ^7.10.4 "@babel/plugin-syntax-json-strings": ^7.8.3 "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 @@ -1633,28 +1912,43 @@ __metadata: "@babel/plugin-syntax-optional-chaining": ^7.8.3 "@babel/plugin-syntax-private-property-in-object": ^7.14.5 "@babel/plugin-syntax-top-level-await": ^7.14.5 + "@babel/plugin-syntax-unicode-sets-regex": ^7.18.6 "@babel/plugin-transform-arrow-functions": ^7.21.5 + "@babel/plugin-transform-async-generator-functions": ^7.22.3 "@babel/plugin-transform-async-to-generator": ^7.20.7 "@babel/plugin-transform-block-scoped-functions": ^7.18.6 "@babel/plugin-transform-block-scoping": ^7.21.0 + "@babel/plugin-transform-class-properties": ^7.22.3 + "@babel/plugin-transform-class-static-block": ^7.22.3 "@babel/plugin-transform-classes": ^7.21.0 "@babel/plugin-transform-computed-properties": ^7.21.5 "@babel/plugin-transform-destructuring": ^7.21.3 "@babel/plugin-transform-dotall-regex": ^7.18.6 "@babel/plugin-transform-duplicate-keys": ^7.18.9 + "@babel/plugin-transform-dynamic-import": ^7.22.1 "@babel/plugin-transform-exponentiation-operator": ^7.18.6 + "@babel/plugin-transform-export-namespace-from": ^7.22.3 "@babel/plugin-transform-for-of": ^7.21.5 "@babel/plugin-transform-function-name": ^7.18.9 + "@babel/plugin-transform-json-strings": ^7.22.3 "@babel/plugin-transform-literals": ^7.18.9 + "@babel/plugin-transform-logical-assignment-operators": ^7.22.3 "@babel/plugin-transform-member-expression-literals": ^7.18.6 "@babel/plugin-transform-modules-amd": ^7.20.11 "@babel/plugin-transform-modules-commonjs": ^7.21.5 - "@babel/plugin-transform-modules-systemjs": ^7.20.11 + "@babel/plugin-transform-modules-systemjs": ^7.22.3 "@babel/plugin-transform-modules-umd": ^7.18.6 - "@babel/plugin-transform-named-capturing-groups-regex": ^7.20.5 - "@babel/plugin-transform-new-target": ^7.18.6 + "@babel/plugin-transform-named-capturing-groups-regex": ^7.22.3 + "@babel/plugin-transform-new-target": ^7.22.3 + "@babel/plugin-transform-nullish-coalescing-operator": ^7.22.3 + "@babel/plugin-transform-numeric-separator": ^7.22.3 + "@babel/plugin-transform-object-rest-spread": ^7.22.3 "@babel/plugin-transform-object-super": ^7.18.6 - "@babel/plugin-transform-parameters": ^7.21.3 + "@babel/plugin-transform-optional-catch-binding": ^7.22.3 + "@babel/plugin-transform-optional-chaining": ^7.22.3 + "@babel/plugin-transform-parameters": ^7.22.3 + "@babel/plugin-transform-private-methods": ^7.22.3 + "@babel/plugin-transform-private-property-in-object": ^7.22.3 "@babel/plugin-transform-property-literals": ^7.18.6 "@babel/plugin-transform-regenerator": ^7.21.5 "@babel/plugin-transform-reserved-words": ^7.18.6 @@ -1664,17 +1958,19 @@ __metadata: "@babel/plugin-transform-template-literals": ^7.18.9 "@babel/plugin-transform-typeof-symbol": ^7.18.9 "@babel/plugin-transform-unicode-escapes": ^7.21.5 + "@babel/plugin-transform-unicode-property-regex": ^7.22.3 "@babel/plugin-transform-unicode-regex": ^7.18.6 + "@babel/plugin-transform-unicode-sets-regex": ^7.22.3 "@babel/preset-modules": ^0.1.5 - "@babel/types": ^7.21.5 - babel-plugin-polyfill-corejs2: ^0.3.3 - babel-plugin-polyfill-corejs3: ^0.6.0 - babel-plugin-polyfill-regenerator: ^0.4.1 - core-js-compat: ^3.25.1 + "@babel/types": ^7.22.4 + babel-plugin-polyfill-corejs2: ^0.4.3 + babel-plugin-polyfill-corejs3: ^0.8.1 + babel-plugin-polyfill-regenerator: ^0.5.0 + core-js-compat: ^3.30.2 semver: ^6.3.0 peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 86e167f3a351c89f8cd1409262481ece6ddc085b76147e801530ce29d60b1cfda8b264b1efd1ae27b8181b073a923c7161f21e2ebc0a41d652d717b10cf1c829 + checksum: 68ae8b712e7548cb0aa593019bf22ed473bd83887c621c1f820ef0af99958d48b687c01b8aee16035cbc70edae1edc703b892e6efed14b95c8435343a2cb2bda languageName: node linkType: hard @@ -1943,6 +2239,17 @@ __metadata: languageName: node linkType: hard +"@babel/types@npm:^7.22.4": + version: 7.22.4 + resolution: "@babel/types@npm:7.22.4" + dependencies: + "@babel/helper-string-parser": ^7.21.5 + "@babel/helper-validator-identifier": ^7.19.1 + to-fast-properties: ^2.0.0 + checksum: ffe36bb4f4a99ad13c426a98c3b508d70736036cae4e471d9c862e3a579847ed4f480686af0fce2633f6f7c0f0d3bf02da73da36e7edd3fde0b2061951dcba9a + languageName: node + linkType: hard + "@bcoe/v8-coverage@npm:^0.2.3": version: 0.2.3 resolution: "@bcoe/v8-coverage@npm:0.2.3" @@ -6449,6 +6756,19 @@ __metadata: languageName: node linkType: hard +"babel-plugin-polyfill-corejs2@npm:^0.4.3": + version: 0.4.3 + resolution: "babel-plugin-polyfill-corejs2@npm:0.4.3" + dependencies: + "@babel/compat-data": ^7.17.7 + "@babel/helper-define-polyfill-provider": ^0.4.0 + semver: ^6.1.1 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 09ba40b9f8ac66a733628b2f12722bb764bdcc4f9600b93d60f1994418a8f84bc4b1ed9ab07c9d288debbf6210413fdff0721a3a43bd89c7f77adf76b0310adc + languageName: node + linkType: hard + "babel-plugin-polyfill-corejs3@npm:^0.6.0": version: 0.6.0 resolution: "babel-plugin-polyfill-corejs3@npm:0.6.0" @@ -6461,6 +6781,18 @@ __metadata: languageName: node linkType: hard +"babel-plugin-polyfill-corejs3@npm:^0.8.1": + version: 0.8.1 + resolution: "babel-plugin-polyfill-corejs3@npm:0.8.1" + dependencies: + "@babel/helper-define-polyfill-provider": ^0.4.0 + core-js-compat: ^3.30.1 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c23a581973c141a4687126cf964981180ef27e3eb0b34b911161db4f5caf9ba7ff60bee0ebe46d650ba09e03a6a3ac2cd6a6ae5f4f5363a148470e5cd8447df2 + languageName: node + linkType: hard + "babel-plugin-polyfill-regenerator@npm:^0.4.1": version: 0.4.1 resolution: "babel-plugin-polyfill-regenerator@npm:0.4.1" @@ -6472,6 +6804,17 @@ __metadata: languageName: node linkType: hard +"babel-plugin-polyfill-regenerator@npm:^0.5.0": + version: 0.5.0 + resolution: "babel-plugin-polyfill-regenerator@npm:0.5.0" + dependencies: + "@babel/helper-define-polyfill-provider": ^0.4.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ef2bcffc7c9a5e4426fc2dbf89bf3a46999a8415c21cd741c3ab3cb4b5ab804aaa3d71ef733f0eda1bcc0b91d9d80f98d33983a66dab9b8bed166ec38f8f8ad1 + languageName: node + linkType: hard + "babel-plugin-transform-import-meta@npm:^2.2.0": version: 2.2.0 resolution: "babel-plugin-transform-import-meta@npm:2.2.0" @@ -7358,6 +7701,15 @@ __metadata: languageName: node linkType: hard +"core-js-compat@npm:^3.30.1, core-js-compat@npm:^3.30.2": + version: 3.30.2 + resolution: "core-js-compat@npm:3.30.2" + dependencies: + browserslist: ^4.21.5 + checksum: 4c81d635559eebc2f81db60f5095a235f580a2f90698113c4124c72761393592b139e30974cce6095a9a6aad6bb3cd467b24b20c32e77ed24ca74eb5944d0638 + languageName: node + linkType: hard + "core-js@npm:3.25.5": version: 3.25.5 resolution: "core-js@npm:3.25.5" @@ -18227,7 +18579,7 @@ dexie@latest: "@babel/core": 7.22.1 "@babel/eslint-parser": 7.21.8 "@babel/plugin-proposal-decorators": 7.22.3 - "@babel/preset-env": 7.21.5 + "@babel/preset-env": 7.22.4 "@babel/preset-react": 7.22.3 "@babel/preset-typescript": 7.21.5 "@datadog/browser-logs": ^4.42.2 From e86108323609e89b631434ba16d874c0cd099c6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20G=C3=B3rka?= Date: Tue, 30 May 2023 11:56:23 +0200 Subject: [PATCH 025/137] runfix: duplicate system messages (#15265) --- .../components/MessagesList/MessageList.tsx | 36 +++++++++++++++---- 1 file changed, 30 insertions(+), 6 deletions(-) diff --git a/src/script/components/MessagesList/MessageList.tsx b/src/script/components/MessagesList/MessageList.tsx index 592053124ee..fd9d3b64119 100644 --- a/src/script/components/MessagesList/MessageList.tsx +++ b/src/script/components/MessagesList/MessageList.tsx @@ -19,6 +19,7 @@ import React, {FC, useEffect, useLayoutEffect, useRef, useState} from 'react'; +import {CONVERSATION_EVENT} from '@wireapp/api-client/lib/event/'; import {TabIndex} from '@wireapp/react-ui-kit/lib/types/enums'; import cx from 'classnames'; @@ -29,7 +30,9 @@ import {ContentMessage} from 'src/script/entity/message/ContentMessage'; import {DecryptErrorMessage} from 'src/script/entity/message/DecryptErrorMessage'; import {MemberMessage} from 'src/script/entity/message/MemberMessage'; import {Message as MessageEntity} from 'src/script/entity/message/Message'; +import {SystemMessage} from 'src/script/entity/message/SystemMessage'; import {User} from 'src/script/entity/User'; +import {ClientEvent} from 'src/script/event/Client'; import {useRoveFocus} from 'src/script/hooks/useRoveFocus'; import {ServiceEntity} from 'src/script/integration/ServiceEntity'; import {useKoSubscribableChildren} from 'Util/ComponentUtil'; @@ -69,21 +72,26 @@ interface MessagesListParams { setMsgElementsFocusable: (isMsgElementsFocusable: boolean) => void; } -const filterDuplicatedMemberMessages = (messages: MessageEntity[]) => { - const typesToFilter = ['conversation.member-join', 'conversation.group-creation', 'conversation.member-leave']; +const filterDuplicatedSystemMessages = (messages: MessageEntity[]) => { return messages.reduce((uniqMessages, currentMessage) => { if (isMemberMessage(currentMessage)) { + const typesToFilter = [ + CONVERSATION_EVENT.MEMBER_JOIN, + CONVERSATION_EVENT.MEMBER_LEAVE, + ClientEvent.CONVERSATION.GROUP_CREATION, + ] as string[]; + const uniqMemberMessages = uniqMessages.filter(isMemberMessage); if (!!uniqMemberMessages.length && typesToFilter.includes(currentMessage.type)) { switch (currentMessage.type) { - case 'conversation.group-creation': + case ClientEvent.CONVERSATION.GROUP_CREATION: // Dont show duplicated group creation messages if (uniqMemberMessages.some(m => m.type === currentMessage.type)) { return uniqMessages; } - case 'conversation.member-join': - case 'conversation.member-leave': + case CONVERSATION_EVENT.MEMBER_JOIN: + case CONVERSATION_EVENT.MEMBER_LEAVE: // Dont show duplicated member join/leave messages that follow each other if (uniqMemberMessages?.[uniqMemberMessages.length - 1]?.htmlCaption() === currentMessage.htmlCaption()) { return uniqMessages; @@ -92,6 +100,22 @@ const filterDuplicatedMemberMessages = (messages: MessageEntity[]) => { } } + if (currentMessage.isSystem()) { + const systemMessagesToFilter = [CONVERSATION_EVENT.RENAME] as string[]; + if (systemMessagesToFilter.includes(currentMessage.type)) { + const uniqUpdateMessages = uniqMessages.filter( + (message): message is SystemMessage => message.isSystem() && systemMessagesToFilter.includes(message.type), + ); + + if (uniqUpdateMessages.length > 0) { + // Dont show duplicated system messages that follow each other + if (uniqUpdateMessages?.[uniqUpdateMessages.length - 1]?.caption() === currentMessage.caption()) { + return uniqMessages; + } + } + } + } + return [...uniqMessages, currentMessage]; }, []); }; @@ -143,7 +167,7 @@ const MessagesList: FC = ({ const [loaded, setLoaded] = useState(false); const [focusedMessage, setFocusedMessage] = useState(initialMessage?.id); - const filteredMessages = filterDuplicatedMemberMessages(filterHiddenMessages(allMessages)); + const filteredMessages = filterDuplicatedSystemMessages(filterHiddenMessages(allMessages)); const filteredMessagesLength = filteredMessages.length; const [messagesContainer, setMessageContainer] = useState(null); From b216ea953b832f7d2a9dee67509110e377fb7479 Mon Sep 17 00:00:00 2001 From: Virgile <78490891+V-Gira@users.noreply.github.com> Date: Tue, 30 May 2023 16:47:27 +0200 Subject: [PATCH 026/137] feat: display warning for failure to send a message to an offline back-end [FS-1989] (#15231) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: display warning for failure to send a message to an offline back-end [FS-1989] * refactor make offline backend help center link reusable * implement new error message on complete sending failure when the recipient b-e is offline * remove getConfig() call from React components * Update src/script/components/MessagesList/Message/ContentMessage/ContentMessage.tsx Co-authored-by: Przemysław Jóźwik * replace assertion of error type by if statement * implement correct focus of buttons and links * replace accent color by blue-500 in warnings links --------- Co-authored-by: Przemysław Jóźwik --- server/config/client.config.ts | 2 +- server/config/env.ts | 2 +- src/i18n/en-US.json | 6 +-- .../Message/ContentMessage/ContentMessage.tsx | 11 +++-- .../CompleteFailureToSend.tsx | 47 ++++++++++++++----- .../PartialFailureToSend.test.tsx | 38 ++++++++++----- .../PartialFailureToSend.tsx | 32 +++++++++++-- .../Warnings/Warnings.styles.ts | 4 ++ .../Message/FailedToAddUsersMessage.test.tsx | 14 ++++-- .../Message/FailedToAddUsersMessage.tsx | 26 +++++----- .../MessagesList/Message/MessageWrapper.tsx | 2 +- src/script/conversation/MessageRepository.ts | 14 ++++-- src/script/message/StatusType.ts | 1 + 13 files changed, 143 insertions(+), 56 deletions(-) diff --git a/server/config/client.config.ts b/server/config/client.config.ts index 26d846f3740..ac5c1d85ce4 100644 --- a/server/config/client.config.ts +++ b/server/config/client.config.ts @@ -88,7 +88,7 @@ export function generateConfig(params: ConfigGeneratorParams, env: Env) { MICROPHONE_ACCESS_DENIED: env.URL_SUPPORT_MICROPHONE_ACCESS_DENIED, PRIVACY_VERIFY_FINGERPRINT: env.URL_SUPPORT_PRIVACY_VERIFY_FINGERPRINT, SCREEN_ACCESS_DENIED: env.URL_SUPPORT_SCREEN_ACCESS_DENIED, - USER_ADD_FAILURE: env.URL_SUPPORT_USER_ADD_FAILURE, + OFFLINE_BACKEND: env.URL_SUPPORT_OFFLINE_BACKEND, }, TEAMS_BASE: env.URL_TEAMS_BASE, TEAMS_CREATE: env.URL_TEAMS_CREATE, diff --git a/server/config/env.ts b/server/config/env.ts index 12a8c54538f..1dd7cc6e25e 100644 --- a/server/config/env.ts +++ b/server/config/env.ts @@ -229,7 +229,7 @@ export type Env = { URL_SUPPORT_SCREEN_ACCESS_DENIED: string; - URL_SUPPORT_USER_ADD_FAILURE: string; + URL_SUPPORT_OFFLINE_BACKEND: string; URL_WHATS_NEW: string; diff --git a/src/i18n/en-US.json b/src/i18n/en-US.json index b35a1587bf9..b9d7459b75a 100644 --- a/src/i18n/en-US.json +++ b/src/i18n/en-US.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations in Wire", "oauth.scope.write_conversations_code": "Create guest links to conversations in Wire", "oauth.subhead": "Microsoft Outlook requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/script/components/MessagesList/Message/ContentMessage/ContentMessage.tsx b/src/script/components/MessagesList/Message/ContentMessage/ContentMessage.tsx index 21401662754..a23d2334ca5 100644 --- a/src/script/components/MessagesList/Message/ContentMessage/ContentMessage.tsx +++ b/src/script/components/MessagesList/Message/ContentMessage/ContentMessage.tsx @@ -183,12 +183,17 @@ const ContentMessageComponent: React.FC = ({ ))} {failedToSend && ( - + )} - {status === StatusType.FAILED && ( + {[StatusType.FAILED, StatusType.FEDERATION_ERROR].includes(status) && ( onRetry(message)} /> )} diff --git a/src/script/components/MessagesList/Message/ContentMessage/Warnings/CompleteFailureToSend/CompleteFailureToSend.tsx b/src/script/components/MessagesList/Message/ContentMessage/Warnings/CompleteFailureToSend/CompleteFailureToSend.tsx index 56bdfbd7c5b..02b7d20d6d6 100644 --- a/src/script/components/MessagesList/Message/ContentMessage/Warnings/CompleteFailureToSend/CompleteFailureToSend.tsx +++ b/src/script/components/MessagesList/Message/ContentMessage/Warnings/CompleteFailureToSend/CompleteFailureToSend.tsx @@ -17,27 +17,52 @@ * */ -import {Button, ButtonVariant} from '@wireapp/react-ui-kit'; +import {Button, ButtonVariant, Link, LinkVariant} from '@wireapp/react-ui-kit'; +import {useMessageFocusedTabIndex} from 'Components/MessagesList/Message/util'; +import {Config} from 'src/script/Config'; import {t} from 'Util/LocalizerUtil'; -import {warning} from '../Warnings.styles'; +import {backendErrorLink, warning} from '../Warnings.styles'; type Props = { - isTextAsset: boolean; + isMessageFocused: boolean; onRetry: () => void; + unreachableDomain?: string; }; -export const CompleteFailureToSendWarning = ({isTextAsset, onRetry}: Props) => { +const config = Config.getConfig(); + +export const CompleteFailureToSendWarning = ({isMessageFocused, onRetry, unreachableDomain}: Props) => { + const messageFocusedTabIndex = useMessageFocusedTabIndex(isMessageFocused); return ( <> -
-

{isTextAsset ? t('messageCouldNotBeSent') : t('messageWillNotBeSent')}

-
- -
+ {unreachableDomain ? ( +

+ {' '} + + {t('offlineBackendLearnMore')} + +

+ ) : ( +

{t('messageCouldNotBeSentConnectivityIssues')}

+ )} +
+
); diff --git a/src/script/components/MessagesList/Message/ContentMessage/Warnings/PartialFailureToSend/PartialFailureToSend.test.tsx b/src/script/components/MessagesList/Message/ContentMessage/Warnings/PartialFailureToSend/PartialFailureToSend.test.tsx index 3febe57e929..1d6e7be3307 100644 --- a/src/script/components/MessagesList/Message/ContentMessage/Warnings/PartialFailureToSend/PartialFailureToSend.test.tsx +++ b/src/script/components/MessagesList/Message/ContentMessage/Warnings/PartialFailureToSend/PartialFailureToSend.test.tsx @@ -35,7 +35,9 @@ describe('PartialFailureToSendWarning', () => { const users = generateUsers(nbUsers, 'domain'); const queued = generateUserClients(users); - const {container} = render(withTheme()); + const {container} = render( + withTheme(), + ); expect(container.textContent).toContain(`${nbUsers} participants didn't get your message`); }); @@ -49,7 +51,9 @@ describe('PartialFailureToSendWarning', () => { ...generateUserClients(users1), ...generateUserClients(users2), }; - const {container} = render(withTheme()); + const {container} = render( + withTheme(), + ); expect(container.textContent).toContain(`${nbUsersDomain1 + nbUsersDomain2} participants didn't get your message`); }); @@ -60,7 +64,9 @@ describe('PartialFailureToSendWarning', () => { const users2 = generateQualifiedIds(nbUsersDomain2, 'domain2'); const failed = [...users1, ...users2]; - const {container} = render(withTheme()); + const {container} = render( + withTheme(), + ); expect(container.textContent).toContain(`${nbUsersDomain1 + nbUsersDomain2} participants didn't get your message`); }); @@ -82,7 +88,7 @@ describe('PartialFailureToSendWarning', () => { const failed = [...unreachableUsers1, ...unreachableUsers2]; const {container} = render( - withTheme(), + withTheme(), ); expect(container.textContent).toContain( `${ @@ -95,7 +101,7 @@ describe('PartialFailureToSendWarning', () => { const users = generateUsers(1, 'domain'); const queued = generateUserClients(users); const {queryByText, container} = render( - withTheme(), + withTheme(), ); expect(queryByText('Show details')).toBeNull(); @@ -106,7 +112,7 @@ describe('PartialFailureToSendWarning', () => { const users = generateQualifiedIds(1, 'domain'); const failed = users; const {queryByText, container} = render( - withTheme(), + withTheme(), ); expect(queryByText('Show details')).toBeNull(); @@ -115,7 +121,9 @@ describe('PartialFailureToSendWarning', () => { it('toggles the extra info', () => { const queued = generateUserClients(generateUsers(2, 'domain')); - const {getByText} = render(withTheme()); + const {getByText} = render( + withTheme(), + ); act(() => { getByText('Show details').click(); @@ -136,7 +144,7 @@ describe('PartialFailureToSendWarning', () => { const queued = generateUserClients(users); const {getByText, getAllByTestId} = render( - withTheme(), + withTheme(), ); act(() => { @@ -160,7 +168,9 @@ describe('PartialFailureToSendWarning', () => { ]; const {getByText, getAllByTestId, container} = render( - withTheme(), + withTheme( + , + ), ); act(() => { @@ -180,7 +190,9 @@ describe('PartialFailureToSendWarning', () => { const failed = [...generateQualifiedIds(1, 'domain2')]; const {getByText} = render( - withTheme(), + withTheme( + , + ), ); act(() => { getByText('Show details').click(); @@ -202,7 +214,9 @@ describe('PartialFailureToSendWarning', () => { const failed = [] as QualifiedId[]; const {getByText, container} = render( - withTheme(), + withTheme( + , + ), ); act(() => { getByText('Show details').click(); @@ -217,7 +231,7 @@ describe('PartialFailureToSendWarning', () => { const queued = {} as QualifiedUserClients; const {getByText, container} = render( - withTheme(), + withTheme(), ); act(() => { getByText('Show details').click(); diff --git a/src/script/components/MessagesList/Message/ContentMessage/Warnings/PartialFailureToSend/PartialFailureToSend.tsx b/src/script/components/MessagesList/Message/ContentMessage/Warnings/PartialFailureToSend/PartialFailureToSend.tsx index 1510e26b91b..f029b4c12b5 100644 --- a/src/script/components/MessagesList/Message/ContentMessage/Warnings/PartialFailureToSend/PartialFailureToSend.tsx +++ b/src/script/components/MessagesList/Message/ContentMessage/Warnings/PartialFailureToSend/PartialFailureToSend.tsx @@ -23,19 +23,24 @@ import type {QualifiedUserClients} from '@wireapp/api-client/lib/conversation'; import {QualifiedId} from '@wireapp/api-client/lib/user'; import {countBy, map} from 'underscore'; -import {Bold, Button, ButtonVariant} from '@wireapp/react-ui-kit'; +import {Bold, Button, ButtonVariant, Link, LinkVariant} from '@wireapp/react-ui-kit'; +import {useMessageFocusedTabIndex} from 'Components/MessagesList/Message/util'; +import {Config} from 'src/script/Config'; import {t} from 'Util/LocalizerUtil'; import {matchQualifiedIds} from 'Util/QualifiedId'; -import {warning} from '../Warnings.styles'; +import {backendErrorLink, warning} from '../Warnings.styles'; export type User = {qualifiedId: QualifiedId; name: () => string}; type Props = { failedToSend: {queued?: QualifiedUserClients; failed?: QualifiedId[]}; + isMessageFocused: boolean; knownUsers: User[]; }; +const config = Config.getConfig(); + type ParsedUsers = {namedUsers: User[]; unknownUsers: QualifiedId[]}; function generateNamedUsers(users: User[], userClients: QualifiedUserClients): ParsedUsers { @@ -72,10 +77,12 @@ function joinWith(elements: React.ReactNode[], separator: string) { }, []); } -export const PartialFailureToSendWarning = ({failedToSend, knownUsers}: Props) => { +export const PartialFailureToSendWarning = ({failedToSend, isMessageFocused, knownUsers}: Props) => { const [isOpen, setIsOpen] = useState(false); const {queued = {}, failed = []} = failedToSend; + const messageFocusedTabIndex = useMessageFocusedTabIndex(isMessageFocused); + const userCount = Object.entries(queued).reduce((count, [_domain, users]) => count + Object.keys(users).length, 0) + failed.length; @@ -148,12 +155,27 @@ export const PartialFailureToSendWarning = ({failedToSend, knownUsers}: Props) = )} {unreachableUsers.length === 1 ? ` ${t('messageFailedToSendWillNotReceiveSingular')}` - : ` ${t('messageFailedToSendWillNotReceivePlural')}`} + : ` ${t('messageFailedToSendWillNotReceivePlural')}`}{' '} + + {t('offlineBackendLearnMore')} +

)} )} - diff --git a/src/script/components/MessagesList/Message/ContentMessage/Warnings/Warnings.styles.ts b/src/script/components/MessagesList/Message/ContentMessage/Warnings/Warnings.styles.ts index 558be76bcdb..6c771f6235e 100644 --- a/src/script/components/MessagesList/Message/ContentMessage/Warnings/Warnings.styles.ts +++ b/src/script/components/MessagesList/Message/ContentMessage/Warnings/Warnings.styles.ts @@ -20,3 +20,7 @@ import {CSSObject} from '@emotion/react'; export const warning: CSSObject = {color: 'var(--danger-color)', fontSize: 'var(--font-size-small)'}; +export const backendErrorLink: CSSObject = { + fontSize: 'var(--font-size-small)', + '&:visited:hover, &:hover': {color: 'var(--blue-500)'}, +}; diff --git a/src/script/components/MessagesList/Message/FailedToAddUsersMessage.test.tsx b/src/script/components/MessagesList/Message/FailedToAddUsersMessage.test.tsx index 02dcebf6d5c..bac6e07560e 100644 --- a/src/script/components/MessagesList/Message/FailedToAddUsersMessage.test.tsx +++ b/src/script/components/MessagesList/Message/FailedToAddUsersMessage.test.tsx @@ -64,7 +64,9 @@ describe('FailedToAddUsersMessage', () => { qualifiedIds: [qualifiedId1], }); - const {getByTestId} = render(withTheme()); + const {getByTestId} = render( + withTheme(), + ); const elementMessageFailedToAdd = getByTestId('element-message-failed-to-add-users'); expect(elementMessageFailedToAdd.getAttribute('data-uie-value')).toEqual('1-user-not-added'); @@ -81,7 +83,9 @@ describe('FailedToAddUsersMessage', () => { qualifiedIds: [qualifiedId1, qualifiedId2], }); - const {getByTestId} = render(withTheme()); + const {getByTestId} = render( + withTheme(), + ); const elementMessageFailedToAdd = getByTestId('element-message-failed-to-add-users'); expect(elementMessageFailedToAdd.getAttribute('data-uie-value')).toEqual('multi-users-not-added'); @@ -98,7 +102,9 @@ describe('FailedToAddUsersMessage', () => { qualifiedIds: [qualifiedId1, qualifiedId2], }); - const {getByTestId} = render(withTheme()); + const {getByTestId} = render( + withTheme(), + ); const elementMessageFailedToAdd = getByTestId('element-message-failed-to-add-users'); expect(elementMessageFailedToAdd.getAttribute('data-uie-value')).toEqual('multi-users-not-added'); @@ -126,7 +132,7 @@ describe('FailedToAddUsersMessage', () => { }); const {getByTestId, getAllByTestId} = render( - withTheme(), + withTheme(), ); const elementMessageFailedToAdd = getByTestId('element-message-failed-to-add-users'); diff --git a/src/script/components/MessagesList/Message/FailedToAddUsersMessage.tsx b/src/script/components/MessagesList/Message/FailedToAddUsersMessage.tsx index 90c9c63da11..0c2bcdd923b 100644 --- a/src/script/components/MessagesList/Message/FailedToAddUsersMessage.tsx +++ b/src/script/components/MessagesList/Message/FailedToAddUsersMessage.tsx @@ -32,23 +32,29 @@ import {useKoSubscribableChildren} from 'Util/ComponentUtil'; import {t} from 'Util/LocalizerUtil'; import {matchQualifiedIds} from 'Util/QualifiedId'; -import {warning} from './ContentMessage/Warnings/Warnings.styles'; +import {backendErrorLink, warning} from './ContentMessage/Warnings/Warnings.styles'; import {MessageTime} from './MessageTime'; +import {useMessageFocusedTabIndex} from './util'; import {FailedToAddUsersMessage as FailedToAddUsersMessageEntity} from '../../../entity/message/FailedToAddUsersMessage'; export interface FailedToAddUsersMessageProps { + isMessageFocused: boolean; message: FailedToAddUsersMessageEntity; userState?: UserState; } +const config = Config.getConfig(); + const FailedToAddUsersMessage: React.FC = ({ + isMessageFocused, message, userState = container.resolve(UserState), }) => { + const messageFocusedTabIndex = useMessageFocusedTabIndex(isMessageFocused); + const [isOpen, setIsOpen] = useState(false); const {timestamp} = useKoSubscribableChildren(message, ['timestamp']); - const config = Config.getConfig(); const {users: allUsers} = useKoSubscribableChildren(userState, ['users']); @@ -70,19 +76,14 @@ const FailedToAddUsersMessage: React.FC = ({ <> {' '} - {t('failedToAddParticipantsLearnMore')} + {t('offlineBackendLearnMore')} ); @@ -160,6 +161,7 @@ const FailedToAddUsersMessage: React.FC = ({ )} {total > 1 && (
diff --git a/src/script/components/MessagesList/Message/ContentMessage/MessageHeader.tsx b/src/script/components/MessagesList/Message/ContentMessage/MessageHeader.tsx index 28ea6859999..a7d73d84e06 100644 --- a/src/script/components/MessagesList/Message/ContentMessage/MessageHeader.tsx +++ b/src/script/components/MessagesList/Message/ContentMessage/MessageHeader.tsx @@ -67,7 +67,7 @@ function BadgeSection({sender}: {sender: User}) { )} - {sender.isDirectGuest() && ( + {sender.isDirectGuest() && !sender.isFederated && ( = ({ )} - {isGuest && user.isAvailable && ( + {isGuest && user.isAvailable && !isFederated && (
{t('conversationGuestIndicator')} From efb563058f99db61821c8ff8da61f72923a392ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Jun 2023 17:02:49 +0000 Subject: [PATCH 092/137] chore(deps): Bump crowdin/github-action from 1.9.0 to 1.10.0 (#15342) Bumps [crowdin/github-action](https://github.com/crowdin/github-action) from 1.9.0 to 1.10.0. - [Release notes](https://github.com/crowdin/github-action/releases) - [Commits](https://github.com/crowdin/github-action/compare/v1.9.0...v1.10.0) --- updated-dependencies: - dependency-name: crowdin/github-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/sync_translations.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_translations.yml b/.github/workflows/sync_translations.yml index de1c39b4f98..db83a004a8f 100644 --- a/.github/workflows/sync_translations.yml +++ b/.github/workflows/sync_translations.yml @@ -37,7 +37,7 @@ jobs: run: yarn translate:merge - name: Download translations - uses: crowdin/github-action@v1.9.0 + uses: crowdin/github-action@v1.10.0 env: GITHUB_TOKEN: ${{secrets.OTTO_THE_BOT_GH_TOKEN}} CROWDIN_PROJECT_ID: 342359 From 81eff5a0c119dc2f0ee3aa401531ddb81d830a2d Mon Sep 17 00:00:00 2001 From: Otto the Bot Date: Wed, 14 Jun 2023 10:31:44 +0200 Subject: [PATCH 093/137] chore: Update translations (#15234) --- src/i18n/ar-SA.json | 6 +++--- src/i18n/bn-BD.json | 6 +++--- src/i18n/ca-ES.json | 6 +++--- src/i18n/cs-CZ.json | 6 +++--- src/i18n/da-DK.json | 6 +++--- src/i18n/de-DE.json | 16 ++++++++-------- src/i18n/el-GR.json | 6 +++--- src/i18n/en-US.json | 20 ++++++++++---------- src/i18n/es-ES.json | 14 +++++++------- src/i18n/et-EE.json | 6 +++--- src/i18n/fa-IR.json | 6 +++--- src/i18n/fi-FI.json | 6 +++--- src/i18n/fr-FR.json | 6 +++--- src/i18n/ga-IE.json | 6 +++--- src/i18n/he-IL.json | 6 +++--- src/i18n/hi-IN.json | 6 +++--- src/i18n/hr-HR.json | 6 +++--- src/i18n/hu-HU.json | 6 +++--- src/i18n/id-ID.json | 6 +++--- src/i18n/is-IS.json | 6 +++--- src/i18n/it-IT.json | 6 +++--- src/i18n/ja-JP.json | 6 +++--- src/i18n/lt-LT.json | 6 +++--- src/i18n/lv-LV.json | 6 +++--- src/i18n/ms-MY.json | 6 +++--- src/i18n/nl-NL.json | 6 +++--- src/i18n/no-NO.json | 6 +++--- src/i18n/pl-PL.json | 6 +++--- src/i18n/pt-BR.json | 6 +++--- src/i18n/pt-PT.json | 6 +++--- src/i18n/ro-RO.json | 6 +++--- src/i18n/ru-RU.json | 6 +++--- src/i18n/si-LK.json | 6 +++--- src/i18n/sk-SK.json | 6 +++--- src/i18n/sl-SI.json | 6 +++--- src/i18n/sr-SP.json | 6 +++--- src/i18n/sv-SE.json | 6 +++--- src/i18n/th-TH.json | 6 +++--- src/i18n/tr-TR.json | 6 +++--- src/i18n/uk-UA.json | 6 +++--- src/i18n/uz-UZ.json | 6 +++--- src/i18n/vi-VN.json | 6 +++--- src/i18n/zh-CN.json | 6 +++--- src/i18n/zh-HK.json | 6 +++--- src/i18n/zh-TW.json | 6 +++--- 45 files changed, 151 insertions(+), 151 deletions(-) diff --git a/src/i18n/ar-SA.json b/src/i18n/ar-SA.json index d7535b5b04c..17f0e457ef1 100644 --- a/src/i18n/ar-SA.json +++ b/src/i18n/ar-SA.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "موافق", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/bn-BD.json b/src/i18n/bn-BD.json index a073893ee16..ac2d491a683 100644 --- a/src/i18n/bn-BD.json +++ b/src/i18n/bn-BD.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/ca-ES.json b/src/i18n/ca-ES.json index a073893ee16..ac2d491a683 100644 --- a/src/i18n/ca-ES.json +++ b/src/i18n/ca-ES.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/cs-CZ.json b/src/i18n/cs-CZ.json index e4b7fe1c5e0..8e01057e820 100644 --- a/src/i18n/cs-CZ.json +++ b/src/i18n/cs-CZ.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/da-DK.json b/src/i18n/da-DK.json index 8f3778ca27b..ef2745c9730 100644 --- a/src/i18n/da-DK.json +++ b/src/i18n/da-DK.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/de-DE.json b/src/i18n/de-DE.json index c80cb408074..3c0e47c8ee5 100644 --- a/src/i18n/de-DE.json +++ b/src/i18n/de-DE.json @@ -78,7 +78,7 @@ "accessibility.conversationAssetImageAlt": "Bild von {{username}} vom {{messageDate}}", "accessibility.conversationContextMenuOpenLabel": "Messaging-Optionen öffnen", "accessibility.conversationDetailsActionDevicesLabel": "Geräte anzeigen", - "accessibility.conversationDetailsActionGroupAdminLabel": "Set group admin", + "accessibility.conversationDetailsActionGroupAdminLabel": "Als Gruppen-Admin festlegen", "accessibility.conversationDetailsActionNotificationsLabel": "Einstellungen für Benachrichtigungen anzeigen", "accessibility.conversationDetailsCloseLabel": "Detailansicht des Bildes schließen", "accessibility.conversationOptionsMenu": "Unterhaltungsoptionen öffnen", @@ -89,7 +89,7 @@ "accessibility.conversationStatusUnreadMention": "Ungelesene Erwähnung", "accessibility.conversationStatusUnreadPing": "Verpasster Ping", "accessibility.conversationStatusUnreadReply": "Ungelesene Antwort", - "accessibility.conversationTitle": "{{username}} status {{status}}", + "accessibility.conversationTitle": "{{username}} Status {{status}}", "accessibility.giphyModal.close": "Fenster 'GIF' schließen", "accessibility.giphyModal.loading": "Gif laden", "accessibility.giphyModal.selectGif": "Gif auswählen", @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] konnte nicht zur Gruppe hinzugefügt werden, da das Backend von [bold]{{domain}}[/bold] nicht erreicht werden konnte.", "failedToAddParticipants": "[bold]{{total}} Teilnehmer[/bold] konnten nicht zur Gruppe hinzugefügt werden.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] und [bold]{{name}}[/bold] konnten nicht zur Gruppe hinzugefügt werden, da das Backend von [bold]{{domain}}[/bold] nicht erreicht werden konnte.", - "failedToAddParticipantsLearnMore": "Mehr erfahren", "featureConfigChangeModalApplock": "Die verbindliche App-Sperre ist deaktiviert. Sie benötigen kein Kennwort oder keine biometrische Authentifizierung mehr, um die App zu entsperren.", "featureConfigChangeModalApplockHeadline": "Team-Einstellungen geändert", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Kamera in Anrufen ist deaktiviert", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "E-Mail-Adresse bestätigen", "mediaBtnPause": "Pause", "mediaBtnPlay": "Wiedergabe", - "messageCouldNotBeSent": "Nachricht konnte aufgrund von Verbindungsproblemen nicht gesendet werden.", + "messageCouldNotBeSentBackEndOffline": "Nachricht nicht gesendet, da das Backend von [bold]{{domain}}[/bold] nicht erreicht werden konnte.", + "messageCouldNotBeSentConnectivityIssues": "Nachricht konnte aufgrund von Verbindungsproblemen nicht gesendet werden.", "messageCouldNotBeSentRetry": "Wiederholen", "messageDetailsEdited": "Bearbeitet: {{edited}}", "messageDetailsNoLikes": "Niemand hat diese Nachricht bisher mit Gefällt mir markiert.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "wird Ihre Nachricht nicht erhalten.", "messageFailedToSendWillReceivePlural": "werden Ihre Nachricht später erhalten.", "messageFailedToSendWillReceiveSingular": "wird Ihre Nachricht später erhalten.", - "messageWillNotBeSent": "Datei konnte aufgrund von Verbindungsproblemen nicht gesendet werden.", "mlsToggleInfo": "Wenn dies aktiviert ist, wird für die Unterhaltung das neue Messaging-Layer-Security-Protokoll (MLS) verwendet.", "mlsToggleName": "MLS", "modalAccountCreateAction": "Verstanden", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Mehr erfahren", "ongoingAudioCall": "Laufender Audioanruf mit {{conversationName}}.", "ongoingGroupAudioCall": "Laufende Telefonkonferenz mit {{conversationName}}.", "ongoingGroupVideoCall": "Laufende Videokonferenz mit {{conversationName}}, Ihre Kamera ist {{cameraStatus}}.", @@ -1113,8 +1113,8 @@ "preferencesOptionsFontSizeDefault": "Standard", "preferencesOptionsFontSizeLarge": "Groß", "preferencesOptionsFontSizeSmall": "Klein", - "preferencesOptionsInputLevelDetected": "Audio detected from microphone", - "preferencesOptionsInputLevelNotDetected": "No audio detected from microphone", + "preferencesOptionsInputLevelDetected": "Ton vom Mikrofon erkannt", + "preferencesOptionsInputLevelNotDetected": "Kein Ton vom Mikrofon erkannt", "preferencesOptionsNotifications": "Benachrichtigungen", "preferencesOptionsNotificationsNone": "Aus", "preferencesOptionsNotificationsObfuscate": "Details ausblenden", @@ -1259,7 +1259,7 @@ "tooltipPreferencesPassword": "Öffnen Sie eine andere Website, um Ihr Passwort zurückzusetzen", "tooltipPreferencesPicture": "Ändern Sie Ihr Bild…", "tooltipPreferencesRename": "Ändern Sie Ihren Namen", - "tooltipPreferencesTabs": "Preferences tabs", + "tooltipPreferencesTabs": "Einstellungsoptionen", "tooltipSearchClose": "Schließen (Esc)", "unavailableUser": "Name nicht verfügbar", "unknownApplicationErrorDescription": "Ein unbekannter Anwendungsfehler ist aufgetreten. Bitte versuchen Sie es erneut, um wieder zu Ihrer vorherigen Aktion zu kommen. Oder laden Sie Wire neu, um zu Ihrer letzten Unterhaltung zurückzukehren.", diff --git a/src/i18n/el-GR.json b/src/i18n/el-GR.json index c5c55459a23..257a3305fb6 100644 --- a/src/i18n/el-GR.json +++ b/src/i18n/el-GR.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "Εντάξει", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/en-US.json b/src/i18n/en-US.json index b9d7459b75a..ac2d491a683 100644 --- a/src/i18n/en-US.json +++ b/src/i18n/en-US.json @@ -9,7 +9,7 @@ "BackendError.LABEL.CONVERSATION_NOT_FOUND": "CONVERSATION_NOT_FOUND", "BackendError.LABEL.CONVERSATION_TOO_MANY_MEMBERS": "This conversation has reached the limit of participants", "BackendError.LABEL.EMAIL_EXISTS": "This email address is already in use. {supportEmailExistsLink}", - "BackendError.LABEL.EMAIL_REQUIRED": "You can't use your username as two-factor authentication is activated. Please log in with your email instead.", + "BackendError.LABEL.EMAIL_REQUIRED": "Log in with an email address is required when two-factor authentication is activated", "BackendError.LABEL.HANDLE_EXISTS": "This username is already taken", "BackendError.LABEL.HANDLE_TOO_SHORT": "Please enter a username with at least 2 characters", "BackendError.LABEL.INVALID_CODE": "Please retry, or request another code.", @@ -671,8 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -966,16 +966,16 @@ "notificationVoiceChannelDeactivate": "Called", "oauth.allow": "Allow", "oauth.cancel": "Don't Allow", - "oauth.details": "If you allow the permissions listed above, your Outlook Calendar will be able to connect to Wire. If you don’t grant the permissions, you can’t use this add-in.", + "oauth.details": "If you allow the permissions listed, Wire™ will be able to connect to your calendar. It won’t see the content of your calendar, just the ones happening with Wire. If you don’t grant the permissions, you can’t use this add-in.", "oauth.headline": "Permissions", - "oauth.learnMore": "Learn more about these permissions", - "oauth.logout": "Switch Wire account", + "oauth.learnMore": "Learn more about these permissions in the settings.", + "oauth.logout": "Switch account", "oauth.privacypolicy": "Wire's Privacy Policy", - "oauth.scope.read_feature_configs": "View your team's feature configurations", - "oauth.scope.read_self": "View your Wire username, profile name, and email", - "oauth.scope.write_conversations": "Create conversations in Wire", - "oauth.scope.write_conversations_code": "Create guest links to conversations in Wire", - "oauth.subhead": "Microsoft Outlook requires your permission to:", + "oauth.scope.read_feature_configs": "Access team feature configurations", + "oauth.scope.read_self": "Access user information", + "oauth.scope.write_conversations": "Create conversations", + "oauth.scope.write_conversations_code": "Create conversation guest links", + "oauth.subhead": "{app} requires your permission to:", "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", diff --git a/src/i18n/es-ES.json b/src/i18n/es-ES.json index 5a0c8be18b1..ca1c7ab6918 100644 --- a/src/i18n/es-ES.json +++ b/src/i18n/es-ES.json @@ -112,7 +112,7 @@ "accessibility.headings.preferencesDevices": "Preferences - devices", "accessibility.headings.preferencesOptions": "Preferences - options", "accessibility.headings.sidebar": "Navigation", - "accessibility.messageDetailsReadReceipts": "Message viewed by {{readReceiptText}}, open details", + "accessibility.messageDetailsReadReceipts": "Mensaje visto por {{readReceiptText}}, abrir detalle", "accessibility.messages.like": "Like message", "accessibility.messages.liked": "Unlike message", "accessibility.openConversation": "Open profile of {{name}}", @@ -152,7 +152,7 @@ "authAccountSignIn": "Iniciar sesión", "authAccountSignInPhone": "Acceso con número de teléfono", "authBlockedCookies": "Habilita las cookies para iniciar sesión.", - "authBlockedDatabase": "{{brandName}} necesita acceso al almacenamiento local para mostrar los mensaj No está disponible en modo privado.", + "authBlockedDatabase": "{{brandName}} necesita acceso al almacenamiento local para mostrar los mensajes, No está disponible en modo privado.", "authBlockedTabs": "{{brandName}} ya está abierto en otra pestaña.", "authBlockedTabsAction": "Utilice esta pestaña en su lugar", "authErrorCode": "Código no válido", @@ -190,7 +190,7 @@ "authPlaceholderPhone": "Número de teléfono", "authPostedResend": "Reenviar a {{email}}", "authPostedResendAction": "¿No aparece ningún correo electrónico?", - "authPostedResendDetail": "Revise su buzón de correo electrónico y siga las instruccion", + "authPostedResendDetail": "Revise su buzón de correo electrónico y siga las instrucciones", "authPostedResendHeadline": "Tiene un correo electrónico.", "authSSOLoginTitle": "Log in with single sign-on", "authVerifyAccountAdd": "Agregar", @@ -375,7 +375,7 @@ "conversationLabelFavorites": "Favorites", "conversationLabelGroups": "Groups", "conversationLabelPeople": "People", - "conversationLikesCaption": "{{number}} de personas", + "conversationLikesCaption": "{{number}} personas", "conversationLocationLink": "Abrir Mapa", "conversationMemberJoined": "[bold]{{name}}[/bold] añadió a {{users}} a la conversación", "conversationMemberJoinedMore": "[bold]{{name}}[/bold] agregó a {{users}} y [showmore]{{count}} más[/showmore] a la conversación", @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/et-EE.json b/src/i18n/et-EE.json index 35bd856dc3b..d5ff592e60b 100644 --- a/src/i18n/et-EE.json +++ b/src/i18n/et-EE.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Muudetud: {{edited}}", "messageDetailsNoLikes": "Keegi pole seda sõnumit veel meeldivaks märkinud.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/fa-IR.json b/src/i18n/fa-IR.json index d04ca4083f3..3cbed1e3151 100644 --- a/src/i18n/fa-IR.json +++ b/src/i18n/fa-IR.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "تایید", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/fi-FI.json b/src/i18n/fi-FI.json index e665812fcb5..16e4c6a4d26 100644 --- a/src/i18n/fi-FI.json +++ b/src/i18n/fi-FI.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/fr-FR.json b/src/i18n/fr-FR.json index c4c638f6dc7..c7288270845 100644 --- a/src/i18n/fr-FR.json +++ b/src/i18n/fr-FR.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Édité : {{edited}}", "messageDetailsNoLikes": "Personne n’a encore aimé ce message.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/ga-IE.json b/src/i18n/ga-IE.json index a073893ee16..ac2d491a683 100644 --- a/src/i18n/ga-IE.json +++ b/src/i18n/ga-IE.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/he-IL.json b/src/i18n/he-IL.json index a073893ee16..ac2d491a683 100644 --- a/src/i18n/he-IL.json +++ b/src/i18n/he-IL.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/hi-IN.json b/src/i18n/hi-IN.json index c817b9084bc..53439e1c484 100644 --- a/src/i18n/hi-IN.json +++ b/src/i18n/hi-IN.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/hr-HR.json b/src/i18n/hr-HR.json index eb10e51d65d..5da69c60386 100644 --- a/src/i18n/hr-HR.json +++ b/src/i18n/hr-HR.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Uređeno: {{edited}}", "messageDetailsNoLikes": "Nikome se još nije svidjela poruka.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "U redu", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/hu-HU.json b/src/i18n/hu-HU.json index b7f0d47a2f5..87c4bd4d220 100644 --- a/src/i18n/hu-HU.json +++ b/src/i18n/hu-HU.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Szerkesztve: {{edited}}", "messageDetailsNoLikes": "Még senkinek nem tetszett ez az üzenet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/id-ID.json b/src/i18n/id-ID.json index 11c15e28bdd..e087cf9dff3 100644 --- a/src/i18n/id-ID.json +++ b/src/i18n/id-ID.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/is-IS.json b/src/i18n/is-IS.json index a073893ee16..ac2d491a683 100644 --- a/src/i18n/is-IS.json +++ b/src/i18n/is-IS.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/it-IT.json b/src/i18n/it-IT.json index 8baa58211bb..02cc6834e1e 100644 --- a/src/i18n/it-IT.json +++ b/src/i18n/it-IT.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/ja-JP.json b/src/i18n/ja-JP.json index dda9674953c..89d8a54f299 100644 --- a/src/i18n/ja-JP.json +++ b/src/i18n/ja-JP.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "編集済: {{edited}}", "messageDetailsNoLikes": "まだ、誰もこのメッセージにいいねしていません。", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/lt-LT.json b/src/i18n/lt-LT.json index 262bf230096..07d0ac21a01 100644 --- a/src/i18n/lt-LT.json +++ b/src/i18n/lt-LT.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Taisyta: {{edited}}", "messageDetailsNoLikes": "Kol kas ši žinutė niekam nepatiko.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "GERAI", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/lv-LV.json b/src/i18n/lv-LV.json index 86610e98e09..4f66efe45d4 100644 --- a/src/i18n/lv-LV.json +++ b/src/i18n/lv-LV.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "Labi", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/ms-MY.json b/src/i18n/ms-MY.json index a073893ee16..ac2d491a683 100644 --- a/src/i18n/ms-MY.json +++ b/src/i18n/ms-MY.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/nl-NL.json b/src/i18n/nl-NL.json index 965997c8625..1221b33ad21 100644 --- a/src/i18n/nl-NL.json +++ b/src/i18n/nl-NL.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/no-NO.json b/src/i18n/no-NO.json index e243d8a645d..0d2f4022fde 100644 --- a/src/i18n/no-NO.json +++ b/src/i18n/no-NO.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/pl-PL.json b/src/i18n/pl-PL.json index 5fff7a9cc3c..bb599f38db9 100644 --- a/src/i18n/pl-PL.json +++ b/src/i18n/pl-PL.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/pt-BR.json b/src/i18n/pt-BR.json index fa83f834f51..58cd9f263a1 100644 --- a/src/i18n/pt-BR.json +++ b/src/i18n/pt-BR.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "O bloqueio obrigatório do aplicativo agora está desativado. Você não precisa de senha ou autenticação biométrica ao retornar ao aplicativo.", "featureConfigChangeModalApplockHeadline": "As configurações da equipe foram alteradas", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "A câmera nas chamadas está desativada", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verifique sua conta", "mediaBtnPause": "Pausar", "mediaBtnPlay": "Reproduzir", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Editado: {{edited}}", "messageDetailsNoLikes": "Ninguém curtiu esta mensagem ainda.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "Quando ativado, a conversa usará o novo protocolo de segurança de camada de mensagens (MLS).", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/pt-PT.json b/src/i18n/pt-PT.json index 45ffebdd2c2..53df9dae2b7 100644 --- a/src/i18n/pt-PT.json +++ b/src/i18n/pt-PT.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/ro-RO.json b/src/i18n/ro-RO.json index e6456288d6c..c0cf8c294e8 100644 --- a/src/i18n/ro-RO.json +++ b/src/i18n/ro-RO.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/ru-RU.json b/src/i18n/ru-RU.json index 57687fd5a18..f2bc4f72776 100644 --- a/src/i18n/ru-RU.json +++ b/src/i18n/ru-RU.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] не может быть добавлен в группу, поскольку бэкэнд [bold]{{domain}}[/bold] недоступен.", "failedToAddParticipants": "[bold]{{total}} участников[/bold] не удалось добавить в группу.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] и [bold]{{name}}[/bold] не могут быть добавлены в группу, поскольку бэкэнд [bold]{{domain}}[/bold] недоступен.", - "failedToAddParticipantsLearnMore": "Подробнее", "featureConfigChangeModalApplock": "Обязательная блокировка приложения теперь отключена. При возвращении в приложение не требуется ввод пароля или биометрическая аутентификация.", "featureConfigChangeModalApplockHeadline": "Настройки команды изменены", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Камера во время вызовов отключена", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Подтвердите учетную запись", "mediaBtnPause": "Пауза", "mediaBtnPlay": "Воспроизвести", - "messageCouldNotBeSent": "Не удалось отправить сообщение из-за проблем с подключением.", + "messageCouldNotBeSentBackEndOffline": "Сообщение не может быть отправлено, поскольку бэкэнд [bold]{{domain}}[/bold] недоступен.", + "messageCouldNotBeSentConnectivityIssues": "Не удалось отправить сообщение из-за проблем с подключением.", "messageCouldNotBeSentRetry": "Повторить", "messageDetailsEdited": "Изменено: {{edited}}", "messageDetailsNoLikes": "Сообщение еще никому не понравилось.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "не получит ваше сообщение.", "messageFailedToSendWillReceivePlural": "получит ваше сообщение позднее.", "messageFailedToSendWillReceiveSingular": "получит ваше сообщение позднее.", - "messageWillNotBeSent": "Не удалось отправить файл из-за проблем с подключением.", "mlsToggleInfo": "При включении в беседе будет использоваться новый протокол безопасности уровня обмена сообщениями (MLS).", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Создать беседу", "oauth.scope.write_conversations_code": "Создать гостевую ссылку на беседу", "oauth.subhead": "{app} необходимы разрешения для:", + "offlineBackendLearnMore": "Подробнее", "ongoingAudioCall": "Текущий аудиовызов с {{conversationName}}.", "ongoingGroupAudioCall": "Текущий групповой вызов с {{conversationName}}.", "ongoingGroupVideoCall": "Текущий групповой вызов с {{conversationName}}, ваша камера {{cameraStatus}}.", diff --git a/src/i18n/si-LK.json b/src/i18n/si-LK.json index a073893ee16..ac2d491a683 100644 --- a/src/i18n/si-LK.json +++ b/src/i18n/si-LK.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/sk-SK.json b/src/i18n/sk-SK.json index 21d3eb332e2..b543e9ad483 100644 --- a/src/i18n/sk-SK.json +++ b/src/i18n/sk-SK.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/sl-SI.json b/src/i18n/sl-SI.json index e0e67afc2b8..c9f8d6a2d61 100644 --- a/src/i18n/sl-SI.json +++ b/src/i18n/sl-SI.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "V redu", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/sr-SP.json b/src/i18n/sr-SP.json index 35292c9abe8..f85d3be921b 100644 --- a/src/i18n/sr-SP.json +++ b/src/i18n/sr-SP.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Измењено: {{edited}}", "messageDetailsNoLikes": "Нико још није лајковао ову поруку", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "У реду", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/sv-SE.json b/src/i18n/sv-SE.json index 13e934c2a27..507db65666d 100644 --- a/src/i18n/sv-SE.json +++ b/src/i18n/sv-SE.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/th-TH.json b/src/i18n/th-TH.json index a073893ee16..ac2d491a683 100644 --- a/src/i18n/th-TH.json +++ b/src/i18n/th-TH.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/tr-TR.json b/src/i18n/tr-TR.json index 20a8e1ae478..9884aa3aa90 100644 --- a/src/i18n/tr-TR.json +++ b/src/i18n/tr-TR.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "{{edited}}’da düzenlenmiş", "messageDetailsNoLikes": "Bu mesajı henüz kimse beğenmemiş.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "TAMAM", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/uk-UA.json b/src/i18n/uk-UA.json index c4d7cc76ac6..28b358c3f97 100644 --- a/src/i18n/uk-UA.json +++ b/src/i18n/uk-UA.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Відредаговане: {{edited}}", "messageDetailsNoLikes": "Це повідомлення поки що ніхто не лайкнув.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/uz-UZ.json b/src/i18n/uz-UZ.json index a073893ee16..ac2d491a683 100644 --- a/src/i18n/uz-UZ.json +++ b/src/i18n/uz-UZ.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/vi-VN.json b/src/i18n/vi-VN.json index a073893ee16..ac2d491a683 100644 --- a/src/i18n/vi-VN.json +++ b/src/i18n/vi-VN.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/zh-CN.json b/src/i18n/zh-CN.json index 6d456ab78a8..34ffab7c6a5 100644 --- a/src/i18n/zh-CN.json +++ b/src/i18n/zh-CN.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "没有人喜欢这个消息。", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "确定", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/zh-HK.json b/src/i18n/zh-HK.json index a073893ee16..ac2d491a683 100644 --- a/src/i18n/zh-HK.json +++ b/src/i18n/zh-HK.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "OK", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", diff --git a/src/i18n/zh-TW.json b/src/i18n/zh-TW.json index c78da198e5b..d5a7feee252 100644 --- a/src/i18n/zh-TW.json +++ b/src/i18n/zh-TW.json @@ -518,7 +518,6 @@ "failedToAddParticipantDetails": "[bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", "failedToAddParticipants": "[bold]{{total}} participants[/bold] could not be added to the group.", "failedToAddParticipantsDetails": "[bold]{{names}}[/bold] and [bold]{{name}}[/bold] could not be added to the group as the backend of [bold]{{domain}}[/bold] could not be reached.", - "failedToAddParticipantsLearnMore": "Learn more", "featureConfigChangeModalApplock": "Mandatory app lock is now disabled. You do not need a passcode or biometric authentication when returning to the app.", "featureConfigChangeModalApplockHeadline": "Team settings changed", "featureConfigChangeModalAudioVideoDescriptionItemCameraDisabled": "Camera in calls is disabled", @@ -672,7 +671,8 @@ "login.twoFactorLoginTitle": "Verify your account", "mediaBtnPause": "Pause", "mediaBtnPlay": "Play", - "messageCouldNotBeSent": "Message could not be sent due to connectivity issues.", + "messageCouldNotBeSentBackEndOffline": "Message could not be sent as the back-end of [bold]{{domain}}[/bold] could not be reached.", + "messageCouldNotBeSentConnectivityIssues": "Message could not be sent due to connectivity issues.", "messageCouldNotBeSentRetry": "Retry", "messageDetailsEdited": "Edited: {{edited}}", "messageDetailsNoLikes": "No one has liked this message yet.", @@ -692,7 +692,6 @@ "messageFailedToSendWillNotReceiveSingular": "won't get your message.", "messageFailedToSendWillReceivePlural": "will get your message later.", "messageFailedToSendWillReceiveSingular": "will get your message later.", - "messageWillNotBeSent": "File could not be sent due to connectivity issues.", "mlsToggleInfo": "When this is on, conversation will use the new messaging layer security (MLS) protocol.", "mlsToggleName": "MLS", "modalAccountCreateAction": "確認", @@ -977,6 +976,7 @@ "oauth.scope.write_conversations": "Create conversations", "oauth.scope.write_conversations_code": "Create conversation guest links", "oauth.subhead": "{app} requires your permission to:", + "offlineBackendLearnMore": "Learn more", "ongoingAudioCall": "Ongoing audio call with {{conversationName}}.", "ongoingGroupAudioCall": "Ongoing conference call with {{conversationName}}.", "ongoingGroupVideoCall": "Ongoing video conference call with {{conversationName}}, your camera is {{cameraStatus}}.", From 0615fd9451dfc8c897fc30a0402977c82552a4a3 Mon Sep 17 00:00:00 2001 From: Timothy LeBon Date: Wed, 14 Jun 2023 10:56:11 +0200 Subject: [PATCH 094/137] feat: add manual deploy for mls migration env(#15343) --- .github/workflows/deploy-to-test-env.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy-to-test-env.yml b/.github/workflows/deploy-to-test-env.yml index b2d9e9c39b9..b6645234b65 100644 --- a/.github/workflows/deploy-to-test-env.yml +++ b/.github/workflows/deploy-to-test-env.yml @@ -10,6 +10,7 @@ on: options: - wire-webapp-qa - wire-webapp-edge + - wire-webapp-mls concurrency: group: ci-${{ github.ref }} From d5ef1bbfe2b8d7a2d61c5952c7c908662381d3ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20G=C3=B3rka?= Date: Thu, 15 Jun 2023 11:15:45 +0200 Subject: [PATCH 095/137] runfix: subscribe to mls conversation state change in conversation state (#15344) --- src/script/conversation/ConversationState.ts | 6 +++++ .../mlsConversationState.ts | 24 ++++++++++++------- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/src/script/conversation/ConversationState.ts b/src/script/conversation/ConversationState.ts index 0b93b20b965..4eb312d06ed 100644 --- a/src/script/conversation/ConversationState.ts +++ b/src/script/conversation/ConversationState.ts @@ -71,6 +71,12 @@ export class ConversationState { this.selfMLSConversation = ko.pureComputed(() => this.conversations().find(conversation => isMLSConversation(conversation) && isSelfConversation(conversation)), ); + + //anytime mls conversation state changes, we update the sorted conversations that will recalculate visible conversations + useMLSConversationState.subscribe(() => { + this.sortedConversations.notifySubscribers(); + }); + this.visibleConversations = ko.pureComputed(() => { const filteredMLSConversations = useMLSConversationState .getState() diff --git a/src/script/mls/mlsConversationState/mlsConversationState.ts b/src/script/mls/mlsConversationState/mlsConversationState.ts index 600e171c85f..550038645a5 100644 --- a/src/script/mls/mlsConversationState/mlsConversationState.ts +++ b/src/script/mls/mlsConversationState/mlsConversationState.ts @@ -62,16 +62,24 @@ export const useMLSConversationState = create((set, get) => { isPendingWelcome: groupId => get().pendingWelcome.has(groupId), markAsEstablished: groupId => - set(state => ({ - ...state, - established: state.established.add(groupId), - })), + set(state => { + const newState = new Set(state.established); + newState.add(groupId); + return { + ...state, + established: newState, + }; + }), markAsPendingWelcome: groupId => - set(state => ({ - ...state, - pendingWelcome: state.pendingWelcome.add(groupId), - })), + set(state => { + const newState = new Set(state.pendingWelcome); + newState.add(groupId); + return { + ...state, + pendingWelcome: newState, + }; + }), pendingWelcome: initialState.pendingWelcome, From 40f792c25c806604fa0ac667cb460c8f9ce550e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20G=C3=B3rka?= Date: Fri, 16 Jun 2023 14:45:21 +0200 Subject: [PATCH 096/137] runfix: don't include conv domain when deleting conv form the store (#15345) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * runfix: don't include conv domain when deleting conv form the store * refactor: shorten return Co-authored-by: Przemysław Jóźwik --------- Co-authored-by: Przemysław Jóźwik --- src/script/conversation/ConversationRepository.ts | 6 +++--- src/script/conversation/ConversationService.ts | 6 ++---- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/script/conversation/ConversationRepository.ts b/src/script/conversation/ConversationRepository.ts index 665e097b714..42f8f2fcb57 100644 --- a/src/script/conversation/ConversationRepository.ts +++ b/src/script/conversation/ConversationRepository.ts @@ -351,7 +351,7 @@ export class ConversationRepository { conversationEntity.is_cleared() && conversationEntity.removed_from_conversation() ) { - this.conversationService.deleteConversationFromDb(conversationEntity); + this.conversationService.deleteConversationFromDb(conversationEntity.id); this.deleteConversationFromRepository(conversationEntity); } }); @@ -949,7 +949,7 @@ export class ConversationRepository { this.conversationLabelRepository.saveLabels(); } this.deleteConversationFromRepository(conversationId); - await this.conversationService.deleteConversationFromDb(conversationId); + await this.conversationService.deleteConversationFromDb(conversationId.id); if (conversationEntity.protocol === ConversationProtocol.MLS) { const {groupId} = conversationEntity; if (groupId) { @@ -1896,7 +1896,7 @@ export class ConversationRepository { this.deleteMessages(conversationEntity, timestamp); if (conversationEntity.removed_from_conversation()) { - this.conversationService.deleteConversationFromDb(conversationEntity); + this.conversationService.deleteConversationFromDb(conversationEntity.id); this.deleteConversationFromRepository(conversationEntity); } } diff --git a/src/script/conversation/ConversationService.ts b/src/script/conversation/ConversationService.ts index f718a8ee702..28ff043106d 100644 --- a/src/script/conversation/ConversationService.ts +++ b/src/script/conversation/ConversationService.ts @@ -295,10 +295,8 @@ export class ConversationService { * Deletes a conversation entity from the local database. * @returns Resolves when the entity was deleted */ - async deleteConversationFromDb({id, domain}: QualifiedId): Promise { - const key = domain ? `${id}@${domain}` : id; - const primaryKey = await this.storageService.delete(StorageSchemata.OBJECT_STORE.CONVERSATIONS, key); - return primaryKey; + async deleteConversationFromDb(conversationId: string): Promise { + return this.storageService.delete(StorageSchemata.OBJECT_STORE.CONVERSATIONS, conversationId); } loadConversation(conversationId: string): Promise { From cb803fcc7863218abffc2d7f0c26b14624294389 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Jun 2023 17:02:38 +0000 Subject: [PATCH 097/137] chore(deps): Bump crowdin/github-action from 1.10.0 to 1.11.0 (#15347) Bumps [crowdin/github-action](https://github.com/crowdin/github-action) from 1.10.0 to 1.11.0. - [Release notes](https://github.com/crowdin/github-action/releases) - [Commits](https://github.com/crowdin/github-action/compare/v1.10.0...v1.11.0) --- updated-dependencies: - dependency-name: crowdin/github-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/sync_translations.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_translations.yml b/.github/workflows/sync_translations.yml index db83a004a8f..a075511852b 100644 --- a/.github/workflows/sync_translations.yml +++ b/.github/workflows/sync_translations.yml @@ -37,7 +37,7 @@ jobs: run: yarn translate:merge - name: Download translations - uses: crowdin/github-action@v1.10.0 + uses: crowdin/github-action@v1.11.0 env: GITHUB_TOKEN: ${{secrets.OTTO_THE_BOT_GH_TOKEN}} CROWDIN_PROJECT_ID: 342359 From 08375ad3b16f1bc3fbfe73203056d00f1ce7b112 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:00:29 +0000 Subject: [PATCH 098/137] chore(deps): Bump dotenv from 16.1.4 to 16.3.1 in /server (#15348) Bumps [dotenv](https://github.com/motdotla/dotenv) from 16.1.4 to 16.3.1. - [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md) - [Commits](https://github.com/motdotla/dotenv/compare/v16.1.4...v16.3.1) --- updated-dependencies: - dependency-name: dotenv dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- server/package.json | 2 +- server/yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/server/package.json b/server/package.json index cc6dc74f67b..dd384894522 100644 --- a/server/package.json +++ b/server/package.json @@ -5,7 +5,7 @@ "license": "GPL-3.0", "dependencies": { "@wireapp/commons": "5.1.0", - "dotenv": "16.1.4", + "dotenv": "16.3.1", "dotenv-extended": "2.9.0", "express": "4.18.2", "express-sitemap-xml": "3.0.1", diff --git a/server/yarn.lock b/server/yarn.lock index cf89ce72933..68639553f86 100644 --- a/server/yarn.lock +++ b/server/yarn.lock @@ -2077,10 +2077,10 @@ __metadata: languageName: node linkType: hard -"dotenv@npm:16.1.4": - version: 16.1.4 - resolution: "dotenv@npm:16.1.4" - checksum: c1b2e13df4d374a6a29e134c56c7b040ba20500677fe8b9939ea654f3b3badb9aaa0b172e40e4dfa1233a4177dbb8fb79d84cc79a50ac9c9641fe2ad98c14876 +"dotenv@npm:16.3.1": + version: 16.3.1 + resolution: "dotenv@npm:16.3.1" + checksum: 15d75e7279018f4bafd0ee9706593dd14455ddb71b3bcba9c52574460b7ccaf67d5cf8b2c08a5af1a9da6db36c956a04a1192b101ee102a3e0cf8817bbcf3dfd languageName: node linkType: hard @@ -5663,7 +5663,7 @@ __metadata: "@types/jest": ^29.5.2 "@types/node": 18.11.18 "@wireapp/commons": 5.1.0 - dotenv: 16.1.4 + dotenv: 16.3.1 dotenv-extended: 2.9.0 express: 4.18.2 express-sitemap-xml: 3.0.1 From 6f18fe8c98ff0aac7a3fb28140e2d3d5abdfe667 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:01:51 +0000 Subject: [PATCH 099/137] chore(deps-dev): Bump caniuse-lite from 1.0.30001499 to 1.0.30001504 (#15349) Bumps [caniuse-lite](https://github.com/browserslist/caniuse-lite) from 1.0.30001499 to 1.0.30001504. - [Commits](https://github.com/browserslist/caniuse-lite/compare/1.0.30001499...1.0.30001504) --- updated-dependencies: - dependency-name: caniuse-lite dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index a80f1999a27..596125189f5 100644 --- a/package.json +++ b/package.json @@ -106,7 +106,7 @@ "autoprefixer": "^10.4.13", "babel-loader": "9.1.2", "babel-plugin-transform-import-meta": "^2.2.0", - "caniuse-lite": "^1.0.30001499", + "caniuse-lite": "^1.0.30001504", "cross-env": "7.0.3", "cspell": "6.31.1", "css-loader": "^6.8.1", diff --git a/yarn.lock b/yarn.lock index 52041208ed3..abc98b648a4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7540,10 +7540,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001499": - version: 1.0.30001499 - resolution: "caniuse-lite@npm:1.0.30001499" - checksum: 3ff07cb04f5a3b93e01f6bc87dbf8e6c704b72c1389930b1ebd0527ee0bf23dfdd7129d147b439616dc17384b516519cda965f62f8c02c73aadf0339dcf2dc73 +"caniuse-lite@npm:^1.0.30001504": + version: 1.0.30001504 + resolution: "caniuse-lite@npm:1.0.30001504" + checksum: 0256f8ef2f5d6d1559198967d7325952e6451e79ff1b92d3d6ba1ec43efedf49fcd3fbb0735ebed0bfd96c6c6a49730e169535e273c60795d23ef25bd37e3e3d languageName: node linkType: hard @@ -19005,7 +19005,7 @@ dexie@latest: babel-loader: 9.1.2 babel-plugin-transform-import-meta: ^2.2.0 beautiful-react-hooks: ^4.3.0 - caniuse-lite: ^1.0.30001499 + caniuse-lite: ^1.0.30001504 classnames: 2.3.2 copy-webpack-plugin: 11.0.0 core-js: 3.25.5 From ab7482eb36fbea39ad20d5e8d8ca2a36d073cef7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:02:36 +0000 Subject: [PATCH 100/137] chore(deps-dev): Bump @formatjs/cli from 6.1.2 to 6.1.3 (#15350) Bumps [@formatjs/cli](https://github.com/formatjs/formatjs) from 6.1.2 to 6.1.3. - [Release notes](https://github.com/formatjs/formatjs/releases) - [Commits](https://github.com/formatjs/formatjs/compare/@formatjs/cli@6.1.2...@formatjs/cli@6.1.3) --- updated-dependencies: - dependency-name: "@formatjs/cli" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 596125189f5..6fbb02019bf 100644 --- a/package.json +++ b/package.json @@ -62,7 +62,7 @@ "@babel/preset-typescript": "7.22.5", "@emotion/eslint-plugin": "^11.11.0", "@faker-js/faker": "7.6.0", - "@formatjs/cli": "6.1.2", + "@formatjs/cli": "6.1.3", "@koush/wrtc": "0.5.3", "@testing-library/react": "13.4.0", "@types/adm-zip": "0.5.0", diff --git a/yarn.lock b/yarn.lock index abc98b648a4..6e36459932b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3744,9 +3744,9 @@ __metadata: languageName: node linkType: hard -"@formatjs/cli@npm:6.1.2": - version: 6.1.2 - resolution: "@formatjs/cli@npm:6.1.2" +"@formatjs/cli@npm:6.1.3": + version: 6.1.3 + resolution: "@formatjs/cli@npm:6.1.3" peerDependencies: "@vue/compiler-sfc": ^3.2.34 peerDependenciesMeta: @@ -3754,7 +3754,7 @@ __metadata: optional: true bin: formatjs: bin/formatjs - checksum: 944bf765360178f5fe85d4a4ca0a169e63b734ed57aa5314907379e1d07cb8185dbdbe4820580a80c4ee63148591994d7497cbe560e4caf160182524b0da563c + checksum: 118dbc4ad1e547298bef57763f51cb1ae9c3bddc734ebe7ebc5dfe5b8625dcb9a9d98873aff38ac9d27e4858a3bab19dc2a7088e195e3ec60c1b0a06840123ce languageName: node linkType: hard @@ -18951,7 +18951,7 @@ dexie@latest: "@emotion/eslint-plugin": ^11.11.0 "@emotion/react": 11.11.1 "@faker-js/faker": 7.6.0 - "@formatjs/cli": 6.1.2 + "@formatjs/cli": 6.1.3 "@koush/wrtc": 0.5.3 "@testing-library/react": 13.4.0 "@types/adm-zip": 0.5.0 From 9e35b22de39a6cfa825af59489c8b5a37811b9ca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:04:16 +0000 Subject: [PATCH 101/137] chore(deps): Bump react-router-dom from 6.12.1 to 6.13.0 (#15351) Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.12.1 to 6.13.0. - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.13.0/packages/react-router-dom) --- updated-dependencies: - dependency-name: react-router-dom dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 23 +++++++++++++++++------ 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 6fbb02019bf..00686623575 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "react-intl": "6.4.3", "react-redux": "8.0.7", "react-router": "6.12.1", - "react-router-dom": "6.12.1", + "react-router-dom": "6.13.0", "react-transition-group": "4.4.5", "redux": "4.2.1", "redux-logdown": "1.0.4", diff --git a/yarn.lock b/yarn.lock index 6e36459932b..af91f807150 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15975,16 +15975,16 @@ dexie@latest: languageName: node linkType: hard -"react-router-dom@npm:6.12.1": - version: 6.12.1 - resolution: "react-router-dom@npm:6.12.1" +"react-router-dom@npm:6.13.0": + version: 6.13.0 + resolution: "react-router-dom@npm:6.13.0" dependencies: "@remix-run/router": 1.6.3 - react-router: 6.12.1 + react-router: 6.13.0 peerDependencies: react: ">=16.8" react-dom: ">=16.8" - checksum: 885528986b6e32bde0cc6ff1f318186ce6931cf4a2a36511fe12eafb380576b448a991d43fe473dbb9bc97bb7efa0c87ac179a7470345a1d3534a34b65578677 + checksum: f51131063c2d5e127b6b3f3f813c6d4988d0f37694a06697dc9d4a4d9d3825e2a4487ec9b81a1d356eb269018814d884ffc2e3d9ff056a46ae59c99c9e7e1086 languageName: node linkType: hard @@ -15999,6 +15999,17 @@ dexie@latest: languageName: node linkType: hard +"react-router@npm:6.13.0": + version: 6.13.0 + resolution: "react-router@npm:6.13.0" + dependencies: + "@remix-run/router": 1.6.3 + peerDependencies: + react: ">=16.8" + checksum: 31a187005d05e063c59324564a283cd28052eaf848ad446c87658f4fc48fa9543329fe8a14d7be14d9bbf62410d383f8cf1cf13898a838bf9c1e3201fe93384c + languageName: node + linkType: hard + "react-select@npm:5.7.3": version: 5.7.3 resolution: "react-select@npm:5.7.3" @@ -19085,7 +19096,7 @@ dexie@latest: react-intl: 6.4.3 react-redux: 8.0.7 react-router: 6.12.1 - react-router-dom: 6.12.1 + react-router-dom: 6.13.0 react-transition-group: 4.4.5 redux: 4.2.1 redux-devtools-extension: 2.13.9 From f925e077162bdf27e99ce3b9ecfd2273f8355aa5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:07:14 +0000 Subject: [PATCH 102/137] chore(deps): Bump @wireapp/react-ui-kit from 9.7.3 to 9.7.5 (#15353) Bumps [@wireapp/react-ui-kit](https://github.com/wireapp/wire-web-packages) from 9.7.3 to 9.7.5. - [Commits](https://github.com/wireapp/wire-web-packages/compare/@wireapp/react-ui-kit@9.7.3...@wireapp/react-ui-kit@9.7.5) --- updated-dependencies: - dependency-name: "@wireapp/react-ui-kit" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 00686623575..45821bbe447 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "@wireapp/avs": "9.2.15", "@wireapp/core": "40.5.1", "@wireapp/lru-cache": "3.8.1", - "@wireapp/react-ui-kit": "9.7.3", + "@wireapp/react-ui-kit": "9.7.5", "@wireapp/store-engine-dexie": "2.1.1", "@wireapp/store-engine-sqleet": "1.8.9", "@wireapp/webapp-events": "0.17.0", diff --git a/yarn.lock b/yarn.lock index af91f807150..31956e0db54 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6293,9 +6293,9 @@ __metadata: languageName: node linkType: hard -"@wireapp/react-ui-kit@npm:9.7.3": - version: 9.7.3 - resolution: "@wireapp/react-ui-kit@npm:9.7.3" +"@wireapp/react-ui-kit@npm:9.7.5": + version: 9.7.5 + resolution: "@wireapp/react-ui-kit@npm:9.7.5" dependencies: "@types/color": 3.0.3 color: 4.2.3 @@ -6310,7 +6310,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: cf765f48ccf39733c477f1d3dbb3709238c68151fb535bc2b483aa175215ad7eb43e263379c60a77232b5c9aa9be23c3b0ac24e93b82e821adddfbcb5add599c + checksum: 0f8178f46f3780c659e2fe4099f7607d82551a5ab5fc862c941abe3ac435e0c3f7087dd596461cc4a9a4a79d1f014d3fd9f980938375ad60ac65935022ca965f languageName: node linkType: hard @@ -19004,7 +19004,7 @@ dexie@latest: "@wireapp/eslint-config": 2.2.2 "@wireapp/lru-cache": 3.8.1 "@wireapp/prettier-config": 0.6.0 - "@wireapp/react-ui-kit": 9.7.3 + "@wireapp/react-ui-kit": 9.7.5 "@wireapp/store-engine": ^5.1.1 "@wireapp/store-engine-dexie": 2.1.1 "@wireapp/store-engine-sqleet": 1.8.9 From 3fe57a1bb454d7a60c3a9cfaf62d4e7f359b38e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:09:15 +0000 Subject: [PATCH 103/137] chore(deps-dev): Bump webpack from 5.86.0 to 5.87.0 (#15352) Bumps [webpack](https://github.com/webpack/webpack) from 5.86.0 to 5.87.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v5.86.0...v5.87.0) --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 35 +++++++++++++++++++++++------------ 2 files changed, 24 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 45821bbe447..d96d7173c6f 100644 --- a/package.json +++ b/package.json @@ -176,7 +176,7 @@ "ts-node": "10.9.1", "tsc-watch": "6.0.4", "typescript": "5.0.4", - "webpack": "5.86.0", + "webpack": "5.87.0", "webpack-cli": "5.1.4", "webpack-dev-middleware": "6.1.1", "webpack-hot-middleware": "2.25.3", diff --git a/yarn.lock b/yarn.lock index 31956e0db54..62c9a3686b0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9053,13 +9053,13 @@ dexie@latest: languageName: node linkType: hard -"enhanced-resolve@npm:^5.14.1": - version: 5.14.1 - resolution: "enhanced-resolve@npm:5.14.1" +"enhanced-resolve@npm:^5.15.0": + version: 5.15.0 + resolution: "enhanced-resolve@npm:5.15.0" dependencies: graceful-fs: ^4.2.4 tapable: ^2.2.0 - checksum: ad2a31928b6649eed40d364838449587f731baa63863e83d2629bebaa8be1eabac18b90f89c1784bc805b0818363e99b22547159edd485d7e5ccf18cdc640642 + checksum: fbd8cdc9263be71cc737aa8a7d6c57b43d6aa38f6cc75dde6fcd3598a130cc465f979d2f4d01bb3bf475acb43817749c79f8eef9be048683602ca91ab52e4f11 languageName: node linkType: hard @@ -16694,7 +16694,7 @@ dexie@latest: languageName: node linkType: hard -"schema-utils@npm:^3.1.1, schema-utils@npm:^3.1.2": +"schema-utils@npm:^3.1.1": version: 3.1.2 resolution: "schema-utils@npm:3.1.2" dependencies: @@ -16705,6 +16705,17 @@ dexie@latest: languageName: node linkType: hard +"schema-utils@npm:^3.2.0": + version: 3.3.0 + resolution: "schema-utils@npm:3.3.0" + dependencies: + "@types/json-schema": ^7.0.8 + ajv: ^6.12.5 + ajv-keywords: ^3.5.2 + checksum: ea56971926fac2487f0757da939a871388891bc87c6a82220d125d587b388f1704788f3706e7f63a7b70e49fc2db974c41343528caea60444afd5ce0fe4b85c0 + languageName: node + linkType: hard + "schema-utils@npm:^4.0.0": version: 4.0.0 resolution: "schema-utils@npm:4.0.0" @@ -18751,9 +18762,9 @@ dexie@latest: languageName: node linkType: hard -"webpack@npm:5.86.0": - version: 5.86.0 - resolution: "webpack@npm:5.86.0" +"webpack@npm:5.87.0": + version: 5.87.0 + resolution: "webpack@npm:5.87.0" dependencies: "@types/eslint-scope": ^3.7.3 "@types/estree": ^1.0.0 @@ -18764,7 +18775,7 @@ dexie@latest: acorn-import-assertions: ^1.9.0 browserslist: ^4.14.5 chrome-trace-event: ^1.0.2 - enhanced-resolve: ^5.14.1 + enhanced-resolve: ^5.15.0 es-module-lexer: ^1.2.1 eslint-scope: 5.1.1 events: ^3.2.0 @@ -18774,7 +18785,7 @@ dexie@latest: loader-runner: ^4.2.0 mime-types: ^2.1.27 neo-async: ^2.6.2 - schema-utils: ^3.1.2 + schema-utils: ^3.2.0 tapable: ^2.1.1 terser-webpack-plugin: ^5.3.7 watchpack: ^2.4.0 @@ -18784,7 +18795,7 @@ dexie@latest: optional: true bin: webpack: bin/webpack.js - checksum: 682b1aa8328bb9d52ae66a1d0a1078af88f9e3b3b3a9c9e1ce203e669581a8e61d522420ef253130eacd510d24d7275b840c1311d50bd048d6fd7c1af186ce55 + checksum: b7d0e390f9d30627e303d54b17cb87b62f49ecffe2d35481f830679904993bae208e23748ffe0e6091b6dd4810562b2f2e88bb0f23b96515d74fb1e3c2898210 languageName: node linkType: hard @@ -19123,7 +19134,7 @@ dexie@latest: uint32: 0.2.1 underscore: 1.13.6 uuidjs: 4.2.13 - webpack: 5.86.0 + webpack: 5.87.0 webpack-cli: 5.1.4 webpack-dev-middleware: 6.1.1 webpack-hot-middleware: 2.25.3 From e85cfe5cbafd297d7976feb2f22e0eb128e8f772 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:11:44 +0000 Subject: [PATCH 104/137] chore(deps-dev): Bump @typescript-eslint/parser from 5.59.9 to 5.59.11 (#15355) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.59.9 to 5.59.11. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.59.11/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 61 +++++++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 54 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index d96d7173c6f..9111eab859f 100644 --- a/package.json +++ b/package.json @@ -96,7 +96,7 @@ "@types/underscore": "1.11.5", "@types/webpack-env": "1.18.1", "@typescript-eslint/eslint-plugin": "^5.59.9", - "@typescript-eslint/parser": "^5.59.9", + "@typescript-eslint/parser": "^5.59.11", "@wireapp/copy-config": "2.1.0", "@wireapp/eslint-config": "2.2.2", "@wireapp/prettier-config": "0.6.0", diff --git a/yarn.lock b/yarn.lock index 62c9a3686b0..8e436275d5c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5688,20 +5688,20 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/parser@npm:^5.59.9": - version: 5.59.9 - resolution: "@typescript-eslint/parser@npm:5.59.9" +"@typescript-eslint/parser@npm:^5.59.11": + version: 5.59.11 + resolution: "@typescript-eslint/parser@npm:5.59.11" dependencies: - "@typescript-eslint/scope-manager": 5.59.9 - "@typescript-eslint/types": 5.59.9 - "@typescript-eslint/typescript-estree": 5.59.9 + "@typescript-eslint/scope-manager": 5.59.11 + "@typescript-eslint/types": 5.59.11 + "@typescript-eslint/typescript-estree": 5.59.11 debug: ^4.3.4 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 69b07d0a5bc6e1d24d23916c057ea9f2f53a0e7fb6dabadff92987c299640edee2c013fb93269322c7124e87b5c515529001397eae33006dfb40e1dcdf1902d7 + checksum: 75eb6e60577690e3c9dd66fde83c9b4e9e5fd818fe9673e532052d5ba8fa21a5f7a69aad19be99e6ef5825e9f52036262b25e918e51f96e1dc26e862448d2d3a languageName: node linkType: hard @@ -5725,6 +5725,16 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/scope-manager@npm:5.59.11": + version: 5.59.11 + resolution: "@typescript-eslint/scope-manager@npm:5.59.11" + dependencies: + "@typescript-eslint/types": 5.59.11 + "@typescript-eslint/visitor-keys": 5.59.11 + checksum: f5c4e6d26da0a983b8f0c016f3ae63b3462442fe9c04d7510ca397461e13f6c48332b09b584258a7f336399fa7cd866f3ab55eaad89c5096a411c0d05d296475 + languageName: node + linkType: hard + "@typescript-eslint/scope-manager@npm:5.59.9": version: 5.59.9 resolution: "@typescript-eslint/scope-manager@npm:5.59.9" @@ -5766,6 +5776,13 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/types@npm:5.59.11": + version: 5.59.11 + resolution: "@typescript-eslint/types@npm:5.59.11" + checksum: 4bb667571a7254f8c2b0dc3e37100e7290f9be14978722cc31c7204dfababd8a346bed4125e70dcafd15d07be386fb55bb9738bd86662ac10b98a6c964716396 + languageName: node + linkType: hard + "@typescript-eslint/types@npm:5.59.9": version: 5.59.9 resolution: "@typescript-eslint/types@npm:5.59.9" @@ -5809,6 +5826,24 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/typescript-estree@npm:5.59.11": + version: 5.59.11 + resolution: "@typescript-eslint/typescript-estree@npm:5.59.11" + dependencies: + "@typescript-eslint/types": 5.59.11 + "@typescript-eslint/visitor-keys": 5.59.11 + debug: ^4.3.4 + globby: ^11.1.0 + is-glob: ^4.0.3 + semver: ^7.3.7 + tsutils: ^3.21.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 516a828884e6939000aac17a27208088055670b0fd9bd22d137a7b2d359a8db9ce9cd09eedffed6f498f968be90ce3c2695a91d46abbd4049f87fd3b7bb986b5 + languageName: node + linkType: hard + "@typescript-eslint/typescript-estree@npm:5.59.9": version: 5.59.9 resolution: "@typescript-eslint/typescript-estree@npm:5.59.9" @@ -5899,6 +5934,16 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/visitor-keys@npm:5.59.11": + version: 5.59.11 + resolution: "@typescript-eslint/visitor-keys@npm:5.59.11" + dependencies: + "@typescript-eslint/types": 5.59.11 + eslint-visitor-keys: ^3.3.0 + checksum: 4894ec4b2b8da773b1f44398c836fcacb7f5a0c81f9404ecd193920e88d618091a7328659e0aa24697edda10479534db30bec7c8b0ba9fa0fce43f78222d5619 + languageName: node + linkType: hard + "@typescript-eslint/visitor-keys@npm:5.59.9": version: 5.59.9 resolution: "@typescript-eslint/visitor-keys@npm:5.59.9" @@ -19008,7 +19053,7 @@ dexie@latest: "@types/underscore": 1.11.5 "@types/webpack-env": 1.18.1 "@typescript-eslint/eslint-plugin": ^5.59.9 - "@typescript-eslint/parser": ^5.59.9 + "@typescript-eslint/parser": ^5.59.11 "@wireapp/avs": 9.2.15 "@wireapp/copy-config": 2.1.0 "@wireapp/core": 40.5.1 From a7c8cd2bbcec7e10351f936f252aaa532b4dd3e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:13:09 +0000 Subject: [PATCH 105/137] chore(deps): Bump react-redux from 8.0.7 to 8.1.0 (#15356) Bumps [react-redux](https://github.com/reduxjs/react-redux) from 8.0.7 to 8.1.0. - [Release notes](https://github.com/reduxjs/react-redux/releases) - [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md) - [Commits](https://github.com/reduxjs/react-redux/compare/v8.0.7...v8.1.0) --- updated-dependencies: - dependency-name: react-redux dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 9111eab859f..e2d77dc907c 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "react-dom": "18.2.0", "react-error-boundary": "4.0.10", "react-intl": "6.4.3", - "react-redux": "8.0.7", + "react-redux": "8.1.0", "react-router": "6.12.1", "react-router-dom": "6.13.0", "react-transition-group": "4.4.5", diff --git a/yarn.lock b/yarn.lock index 8e436275d5c..62ce26e2b69 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15985,9 +15985,9 @@ dexie@latest: languageName: node linkType: hard -"react-redux@npm:8.0.7": - version: 8.0.7 - resolution: "react-redux@npm:8.0.7" +"react-redux@npm:8.1.0": + version: 8.1.0 + resolution: "react-redux@npm:8.1.0" dependencies: "@babel/runtime": ^7.12.1 "@types/hoist-non-react-statics": ^3.3.1 @@ -16016,7 +16016,7 @@ dexie@latest: optional: true redux: optional: true - checksum: d903aa79b12154258fd76b8e61fcf56f72123f69c31033b262805646371e23822cd0cd11d24194cda1e03569a7b1bf86e935cd57a9bab4523186804ed2742fac + checksum: a6b9a07b056677b75596f3eeb56816c1cd611fc52e09ff03e9538cd050223c4f0187f9572b703c1b1d648ad115c5753894f8c709d0f58278e5652026963bf9d6 languageName: node linkType: hard @@ -19150,7 +19150,7 @@ dexie@latest: react-dom: 18.2.0 react-error-boundary: 4.0.10 react-intl: 6.4.3 - react-redux: 8.0.7 + react-redux: 8.1.0 react-router: 6.12.1 react-router-dom: 6.13.0 react-transition-group: 4.4.5 From 0fe70e4f1c3d51388054bce00ac91ba54a6b7321 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:14:57 +0000 Subject: [PATCH 106/137] chore(deps-dev): Bump postcss-preset-env from 8.4.2 to 8.5.0 (#15357) Bumps [postcss-preset-env](https://github.com/csstools/postcss-plugins/tree/HEAD/plugin-packs/postcss-preset-env) from 8.4.2 to 8.5.0. - [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugin-packs/postcss-preset-env/CHANGELOG.md) - [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugin-packs/postcss-preset-env) --- updated-dependencies: - dependency-name: postcss-preset-env dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 30 +++++++++++++++--------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/package.json b/package.json index e2d77dc907c..e3a4071359c 100644 --- a/package.json +++ b/package.json @@ -156,7 +156,7 @@ "postcss-import": "^15.1.0", "postcss-less": "6.0.0", "postcss-loader": "^7.3.2", - "postcss-preset-env": "^8.4.2", + "postcss-preset-env": "^8.5.0", "postcss-scss": "4.0.6", "prettier": "^2.8.8", "raf": "3.4.1", diff --git a/yarn.lock b/yarn.lock index 62ce26e2b69..281f24b05c4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3291,9 +3291,9 @@ __metadata: languageName: node linkType: hard -"@csstools/postcss-relative-color-syntax@npm:^1.0.1": - version: 1.0.1 - resolution: "@csstools/postcss-relative-color-syntax@npm:1.0.1" +"@csstools/postcss-relative-color-syntax@npm:^1.0.2": + version: 1.0.2 + resolution: "@csstools/postcss-relative-color-syntax@npm:1.0.2" dependencies: "@csstools/css-color-parser": ^1.2.0 "@csstools/css-parser-algorithms": ^2.1.1 @@ -3301,7 +3301,7 @@ __metadata: "@csstools/postcss-progressive-custom-properties": ^2.3.0 peerDependencies: postcss: ^8.4 - checksum: 1065676c62801735443d1db015bae9b2b1d8450e4ea0b82a75931e9e34ff2b4a35b1cb864dcfdbf1b3c72d38b485c0127ee98090e4f6f87125d5d21e4ee47012 + checksum: 2c921094a959384553bab26d7d9feb87a5ee6b2b5f29b447572d1b471433dd5829102fb79a2fb0b0d585deaa050063fbdc43bacbaea1118197b3f7496a13a835 languageName: node linkType: hard @@ -15249,15 +15249,15 @@ dexie@latest: languageName: node linkType: hard -"postcss-nesting@npm:^11.2.1": - version: 11.2.2 - resolution: "postcss-nesting@npm:11.2.2" +"postcss-nesting@npm:^11.3.0": + version: 11.3.0 + resolution: "postcss-nesting@npm:11.3.0" dependencies: "@csstools/selector-specificity": ^2.0.0 postcss-selector-parser: ^6.0.10 peerDependencies: postcss: ^8.4 - checksum: 84149edbfe9b0adf069b7ddf06d21fc7a543e7f44b97c3975d8b1f088dddc20853689cb859d5be06000cca83bdc56929b13581bfdaf1971cfafa492add867831 + checksum: bc8f59e8114f21ec3fcbd0661072f3e706f25dc5300a925863485a0ab82950c48b75c1fed9548acddc924fa479ab7277b55fcdcc33eb0fe1742b389683479384 languageName: node linkType: hard @@ -15412,9 +15412,9 @@ dexie@latest: languageName: node linkType: hard -"postcss-preset-env@npm:^8.4.2": - version: 8.4.2 - resolution: "postcss-preset-env@npm:8.4.2" +"postcss-preset-env@npm:^8.5.0": + version: 8.5.0 + resolution: "postcss-preset-env@npm:8.5.0" dependencies: "@csstools/postcss-cascade-layers": ^3.0.1 "@csstools/postcss-color-function": ^2.2.3 @@ -15433,7 +15433,7 @@ dexie@latest: "@csstools/postcss-normalize-display-values": ^2.0.1 "@csstools/postcss-oklab-function": ^2.2.3 "@csstools/postcss-progressive-custom-properties": ^2.3.0 - "@csstools/postcss-relative-color-syntax": ^1.0.1 + "@csstools/postcss-relative-color-syntax": ^1.0.2 "@csstools/postcss-scope-pseudo-class": ^2.0.2 "@csstools/postcss-stepped-value-functions": ^2.1.1 "@csstools/postcss-text-decoration-shorthand": ^2.2.4 @@ -15463,7 +15463,7 @@ dexie@latest: postcss-initial: ^4.0.1 postcss-lab-function: ^5.2.3 postcss-logical: ^6.2.0 - postcss-nesting: ^11.2.1 + postcss-nesting: ^11.3.0 postcss-opacity-percentage: ^2.0.0 postcss-overflow-shorthand: ^4.0.1 postcss-page-break: ^3.0.4 @@ -15474,7 +15474,7 @@ dexie@latest: postcss-value-parser: ^4.2.0 peerDependencies: postcss: ^8.4 - checksum: 16b6833964a05c0440c2070228554460a1761228090c59e5c51c542d7b8f162cd55d42cbc74324c269f9cc64119ab7b17f740b75c6fd06ef1fd1a1413451de81 + checksum: 29e285c16580aecc5b584f82e3990b6161d3984e0b7eeb134107e80b59cad4282359c67aef02099a30496b21c10fa0be2c92e396ac0b9ff05fc4774ee86a10e9 languageName: node linkType: hard @@ -19142,7 +19142,7 @@ dexie@latest: postcss-import: ^15.1.0 postcss-less: 6.0.0 postcss-loader: ^7.3.2 - postcss-preset-env: ^8.4.2 + postcss-preset-env: ^8.5.0 postcss-scss: 4.0.6 prettier: ^2.8.8 raf: 3.4.1 From a5c433a69030298f8b4fb9a79c4ccd0d9593f0ad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:18:45 +0000 Subject: [PATCH 107/137] chore(deps-dev): Bump dotenv from 16.1.4 to 16.3.1 (#15362) Bumps [dotenv](https://github.com/motdotla/dotenv) from 16.1.4 to 16.3.1. - [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md) - [Commits](https://github.com/motdotla/dotenv/compare/v16.1.4...v16.3.1) --- updated-dependencies: - dependency-name: dotenv dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index e3a4071359c..c3a47cf1034 100644 --- a/package.json +++ b/package.json @@ -112,7 +112,7 @@ "css-loader": "^6.8.1", "cssnano": "^5.1.14", "dexie": "3.2.3", - "dotenv": "16.1.4", + "dotenv": "16.3.1", "dpdm": "3.13.1", "eslint": "^8.41.0", "eslint-config-prettier": "^8.8.0", diff --git a/yarn.lock b/yarn.lock index 281f24b05c4..e136ae83773 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8964,10 +8964,10 @@ dexie@latest: languageName: node linkType: hard -"dotenv@npm:16.1.4": - version: 16.1.4 - resolution: "dotenv@npm:16.1.4" - checksum: c1b2e13df4d374a6a29e134c56c7b040ba20500677fe8b9939ea654f3b3badb9aaa0b172e40e4dfa1233a4177dbb8fb79d84cc79a50ac9c9641fe2ad98c14876 +"dotenv@npm:16.3.1": + version: 16.3.1 + resolution: "dotenv@npm:16.3.1" + checksum: 15d75e7279018f4bafd0ee9706593dd14455ddb71b3bcba9c52574460b7ccaf67d5cf8b2c08a5af1a9da6db36c956a04a1192b101ee102a3e0cf8817bbcf3dfd languageName: node linkType: hard @@ -19084,7 +19084,7 @@ dexie@latest: date-fns: 2.30.0 dexie: 3.2.3 dexie-batch: 0.4.3 - dotenv: 16.1.4 + dotenv: 16.3.1 dpdm: 3.13.1 eslint: ^8.41.0 eslint-config-prettier: ^8.8.0 From ec58453cf4c91f8ec05d1472409b5d8328926296 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:19:46 +0000 Subject: [PATCH 108/137] chore(deps): Bump react-router from 6.12.1 to 6.13.0 (#15359) Bumps [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) from 6.12.1 to 6.13.0. - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router@6.13.0/packages/react-router) --- updated-dependencies: - dependency-name: react-router dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 13 +------------ 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index c3a47cf1034..d85f5750943 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "react-error-boundary": "4.0.10", "react-intl": "6.4.3", "react-redux": "8.1.0", - "react-router": "6.12.1", + "react-router": "6.13.0", "react-router-dom": "6.13.0", "react-transition-group": "4.4.5", "redux": "4.2.1", diff --git a/yarn.lock b/yarn.lock index e136ae83773..7ea3183869c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -16033,17 +16033,6 @@ dexie@latest: languageName: node linkType: hard -"react-router@npm:6.12.1": - version: 6.12.1 - resolution: "react-router@npm:6.12.1" - dependencies: - "@remix-run/router": 1.6.3 - peerDependencies: - react: ">=16.8" - checksum: a23a0f2e6635eba19aec8d50b9126f61663d1e6ee6e69d6b2ca6e5dd678496b54d925f0d86a375270646da11cc12be66ac5e6ebf73962957af91ac828b63d10b - languageName: node - linkType: hard - "react-router@npm:6.13.0": version: 6.13.0 resolution: "react-router@npm:6.13.0" @@ -19151,7 +19140,7 @@ dexie@latest: react-error-boundary: 4.0.10 react-intl: 6.4.3 react-redux: 8.1.0 - react-router: 6.12.1 + react-router: 6.13.0 react-router-dom: 6.13.0 react-transition-group: 4.4.5 redux: 4.2.1 From 59bf53930bb9bd135e6481dee2686edc97ccebd0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:21:10 +0000 Subject: [PATCH 109/137] chore(deps): Bump react-intl from 6.4.3 to 6.4.4 (#15360) Bumps [react-intl](https://github.com/formatjs/formatjs) from 6.4.3 to 6.4.4. - [Release notes](https://github.com/formatjs/formatjs/releases) - [Commits](https://github.com/formatjs/formatjs/compare/react-intl@6.4.3...react-intl@6.4.4) --- updated-dependencies: - dependency-name: react-intl dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 130 +++++++++++++++++++++++++-------------------------- 2 files changed, 66 insertions(+), 66 deletions(-) diff --git a/package.json b/package.json index d85f5750943..8f52733fdba 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "react": "18.2.0", "react-dom": "18.2.0", "react-error-boundary": "4.0.10", - "react-intl": "6.4.3", + "react-intl": "6.4.4", "react-redux": "8.1.0", "react-router": "6.13.0", "react-router-dom": "6.13.0", diff --git a/yarn.lock b/yarn.lock index 7ea3183869c..ac5df5d7bdb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3758,94 +3758,94 @@ __metadata: languageName: node linkType: hard -"@formatjs/ecma402-abstract@npm:1.16.0": - version: 1.16.0 - resolution: "@formatjs/ecma402-abstract@npm:1.16.0" +"@formatjs/ecma402-abstract@npm:1.17.0": + version: 1.17.0 + resolution: "@formatjs/ecma402-abstract@npm:1.17.0" dependencies: - "@formatjs/intl-localematcher": 0.3.0 + "@formatjs/intl-localematcher": 0.4.0 tslib: ^2.4.0 - checksum: a3d6016d51b9f9a876e4ad66010ef80b07f54b9bb50f6135267d41203219d38e9b934fc575e65e3556eb89d92640452e03927f50f030906be8919a319d906bd2 + checksum: cc45d238e541076cb27b9cf02d8b97f789d1744b60218da6d31793204850c159e85f5b2557de3905a365eefd52a1c2e7f1febb9e1f009bad23d5eca17b3de6c8 languageName: node linkType: hard -"@formatjs/fast-memoize@npm:2.1.0": - version: 2.1.0 - resolution: "@formatjs/fast-memoize@npm:2.1.0" +"@formatjs/fast-memoize@npm:2.2.0": + version: 2.2.0 + resolution: "@formatjs/fast-memoize@npm:2.2.0" dependencies: tslib: ^2.4.0 - checksum: 778da54abaaa77013205c7f0dceb654ca2d9b76d0d1380b4d4bd08d57a870f62d434f29b2cda4dbf892d47b045e7d2bc90f1273ebd968844dea2a2e8b3315e69 + checksum: 8697fe72a7ece252d600a7d08105f2a2f758e2dd96f54ac0a4c508b1205a559fc08835635e1f8e5ca9dcc3ee61ce1fca4a0e7047b402f29fc96051e293a280ff languageName: node linkType: hard -"@formatjs/icu-messageformat-parser@npm:2.5.0": - version: 2.5.0 - resolution: "@formatjs/icu-messageformat-parser@npm:2.5.0" +"@formatjs/icu-messageformat-parser@npm:2.6.0": + version: 2.6.0 + resolution: "@formatjs/icu-messageformat-parser@npm:2.6.0" dependencies: - "@formatjs/ecma402-abstract": 1.16.0 - "@formatjs/icu-skeleton-parser": 1.5.0 + "@formatjs/ecma402-abstract": 1.17.0 + "@formatjs/icu-skeleton-parser": 1.6.0 tslib: ^2.4.0 - checksum: 11c524cc2c15c1f15b54e81fca506ccfc77f3b3adabdb457053aacfbd28789c88054e378439cf23accf69baeefbe8e35d9bb5a6253235a1bc4724dd4956bfba3 + checksum: 67e76416a381663f62cb7ceaa699b3dc4505b9bfd8dda31950b8fa159e9abc1aae85d2ffa08760448083f113bdabca1653796e988b7a12eef891260726e56ed7 languageName: node linkType: hard -"@formatjs/icu-skeleton-parser@npm:1.5.0": - version: 1.5.0 - resolution: "@formatjs/icu-skeleton-parser@npm:1.5.0" +"@formatjs/icu-skeleton-parser@npm:1.6.0": + version: 1.6.0 + resolution: "@formatjs/icu-skeleton-parser@npm:1.6.0" dependencies: - "@formatjs/ecma402-abstract": 1.16.0 + "@formatjs/ecma402-abstract": 1.17.0 tslib: ^2.4.0 - checksum: 0da173c1fb3d28c8eb4c3fd4eadec9d0b6476d639abb5c371b0a156aa79bbe6d1e0d6fc6fff09b254da7523049baa1032a61a0cad647a3e2e005f7e55317ef39 + checksum: e0a2e251358fb62cc45ad4783f57ed63db361334634557d5dcf3992b98c2c5409146d890b465321f91d2255eda5d8fdbfc9962e9f2e3fa7b10a738abfbe8ebc0 languageName: node linkType: hard -"@formatjs/intl-displaynames@npm:6.4.0": - version: 6.4.0 - resolution: "@formatjs/intl-displaynames@npm:6.4.0" +"@formatjs/intl-displaynames@npm:6.5.0": + version: 6.5.0 + resolution: "@formatjs/intl-displaynames@npm:6.5.0" dependencies: - "@formatjs/ecma402-abstract": 1.16.0 - "@formatjs/intl-localematcher": 0.3.0 + "@formatjs/ecma402-abstract": 1.17.0 + "@formatjs/intl-localematcher": 0.4.0 tslib: ^2.4.0 - checksum: 66d787bdd398da6a14a2f2ae0b74e9f98f6832a0745f5fa8e986d76d3cb21933bdafc503fd6ec4cb94de38f5324867774f60895e6e2ebbabf1db6702f56b50d4 + checksum: d071f8459796240575e9911052b7116a6e2e43687607b0a5d1ac8ceddbaa85324af78694226c37c8172c0f3e7d6b793f506c5758b6bc50b2110516902b532e12 languageName: node linkType: hard -"@formatjs/intl-listformat@npm:7.3.0": - version: 7.3.0 - resolution: "@formatjs/intl-listformat@npm:7.3.0" +"@formatjs/intl-listformat@npm:7.4.0": + version: 7.4.0 + resolution: "@formatjs/intl-listformat@npm:7.4.0" dependencies: - "@formatjs/ecma402-abstract": 1.16.0 - "@formatjs/intl-localematcher": 0.3.0 + "@formatjs/ecma402-abstract": 1.17.0 + "@formatjs/intl-localematcher": 0.4.0 tslib: ^2.4.0 - checksum: 6638e6a3cad750ac5199cf293c549c4048f0de240762dd98c61cece645091f19262ef64c1fb2f7a44b5bb3e5c168a8f53e9aa604b4867290981c30baf8635c0d + checksum: a2deed31cce57f249e470f54675286c36edc2f5ec1d63a2f36e6315a0154ca06404fa5c00aaefc2c52af57d3d471b17c217e885cc9565e5f54c36509af37fe12 languageName: node linkType: hard -"@formatjs/intl-localematcher@npm:0.3.0": - version: 0.3.0 - resolution: "@formatjs/intl-localematcher@npm:0.3.0" +"@formatjs/intl-localematcher@npm:0.4.0": + version: 0.4.0 + resolution: "@formatjs/intl-localematcher@npm:0.4.0" dependencies: tslib: ^2.4.0 - checksum: 26fbe20a3187842ea9fd417429dd53af941ad896c783fcc15df25e92c3fe9b9895f9909de9f9731ef75b81e7fb396d3d10d35656e3f5ff3588488521d600ec3a + checksum: c65108e9a81c3733d2b6240ceedc846d0ae59c3606041cb5cc71c13453cdabe295b0dc8559dc4a8acaafdc45876807bd5e9ef37a3ec1cb864e78db655d434b66 languageName: node linkType: hard -"@formatjs/intl@npm:2.8.0": - version: 2.8.0 - resolution: "@formatjs/intl@npm:2.8.0" - dependencies: - "@formatjs/ecma402-abstract": 1.16.0 - "@formatjs/fast-memoize": 2.1.0 - "@formatjs/icu-messageformat-parser": 2.5.0 - "@formatjs/intl-displaynames": 6.4.0 - "@formatjs/intl-listformat": 7.3.0 - intl-messageformat: 10.4.0 +"@formatjs/intl@npm:2.9.0": + version: 2.9.0 + resolution: "@formatjs/intl@npm:2.9.0" + dependencies: + "@formatjs/ecma402-abstract": 1.17.0 + "@formatjs/fast-memoize": 2.2.0 + "@formatjs/icu-messageformat-parser": 2.6.0 + "@formatjs/intl-displaynames": 6.5.0 + "@formatjs/intl-listformat": 7.4.0 + intl-messageformat: 10.5.0 tslib: ^2.4.0 peerDependencies: typescript: ^4.7 || 5 peerDependenciesMeta: typescript: optional: true - checksum: 8dd6c9cd5671af9faac9d9da14574ac3778b513dcda0bf6369eb81c6f3ca1dc1caff7c31774ac2b0143a60e52f0224cda8336518094882dfaf5e2238c7fc2838 + checksum: 8cd9c9a86ec79148d6e42ace85abbf39e0580a821a6a2d9edceeed3248d439a5f204d988ed714bef92933843a069ee910ed19675d77d60c0472e343dbe610bf4 languageName: node linkType: hard @@ -11298,15 +11298,15 @@ dexie@latest: languageName: node linkType: hard -"intl-messageformat@npm:10.4.0": - version: 10.4.0 - resolution: "intl-messageformat@npm:10.4.0" +"intl-messageformat@npm:10.5.0": + version: 10.5.0 + resolution: "intl-messageformat@npm:10.5.0" dependencies: - "@formatjs/ecma402-abstract": 1.16.0 - "@formatjs/fast-memoize": 2.1.0 - "@formatjs/icu-messageformat-parser": 2.5.0 + "@formatjs/ecma402-abstract": 1.17.0 + "@formatjs/fast-memoize": 2.2.0 + "@formatjs/icu-messageformat-parser": 2.6.0 tslib: ^2.4.0 - checksum: 763b6da80a69242d1a52cb13c9435dd40908a2ae0a7407bef260aa537e0e96cfa5394e7d01fa90dc45c3c2d159ac874d2ae58bbaa2da483effb44e914e87a185 + checksum: 164c49028b8bf2685f57f8f018d9a2c1d827e94b1c300ebf9df50b6aef25adedb3bf511b3cf603364d67257634b57926935066b2f3715ccb6c2af683cc0815a6 languageName: node linkType: hard @@ -15940,19 +15940,19 @@ dexie@latest: languageName: node linkType: hard -"react-intl@npm:6.4.3": - version: 6.4.3 - resolution: "react-intl@npm:6.4.3" +"react-intl@npm:6.4.4": + version: 6.4.4 + resolution: "react-intl@npm:6.4.4" dependencies: - "@formatjs/ecma402-abstract": 1.16.0 - "@formatjs/icu-messageformat-parser": 2.5.0 - "@formatjs/intl": 2.8.0 - "@formatjs/intl-displaynames": 6.4.0 - "@formatjs/intl-listformat": 7.3.0 + "@formatjs/ecma402-abstract": 1.17.0 + "@formatjs/icu-messageformat-parser": 2.6.0 + "@formatjs/intl": 2.9.0 + "@formatjs/intl-displaynames": 6.5.0 + "@formatjs/intl-listformat": 7.4.0 "@types/hoist-non-react-statics": ^3.3.1 "@types/react": 16 || 17 || 18 hoist-non-react-statics: ^3.3.2 - intl-messageformat: 10.4.0 + intl-messageformat: 10.5.0 tslib: ^2.4.0 peerDependencies: react: ^16.6.0 || 17 || 18 @@ -15960,7 +15960,7 @@ dexie@latest: peerDependenciesMeta: typescript: optional: true - checksum: 16f6f6bb1e54f7e69f69103f73d9584ad1a4ef4a442fd123292379ec68aaf658c2818b9fce2d52e776747518d31c44acc37fccfaf1838b0d9baf1ae72da3a6df + checksum: c7003ff4927d6d6bf43edc04008bca48181bbfc1c669071746cbaa63b35fdd655c3172c653ac711eeb5053859aa0603048791f3ac8ca5726014a6d357682dfe1 languageName: node linkType: hard @@ -19138,7 +19138,7 @@ dexie@latest: react: 18.2.0 react-dom: 18.2.0 react-error-boundary: 4.0.10 - react-intl: 6.4.3 + react-intl: 6.4.4 react-redux: 8.1.0 react-router: 6.13.0 react-router-dom: 6.13.0 From b3065389b2fc1489d72bcf27884c1c2fa1850a28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:21:42 +0000 Subject: [PATCH 110/137] chore(deps-dev): Bump @wireapp/copy-config from 2.1.0 to 2.1.1 (#15358) Bumps [@wireapp/copy-config](https://github.com/wireapp/wire-web-packages) from 2.1.0 to 2.1.1. - [Commits](https://github.com/wireapp/wire-web-packages/compare/@wireapp/copy-config@2.1.0...@wireapp/copy-config@2.1.1) --- updated-dependencies: - dependency-name: "@wireapp/copy-config" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 32 ++++++++++++++++++++++---------- 2 files changed, 23 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index 8f52733fdba..ef1e060336d 100644 --- a/package.json +++ b/package.json @@ -97,7 +97,7 @@ "@types/webpack-env": "1.18.1", "@typescript-eslint/eslint-plugin": "^5.59.9", "@typescript-eslint/parser": "^5.59.11", - "@wireapp/copy-config": "2.1.0", + "@wireapp/copy-config": "2.1.1", "@wireapp/eslint-config": "2.2.2", "@wireapp/prettier-config": "0.6.0", "@wireapp/store-engine": "^5.1.1", diff --git a/yarn.lock b/yarn.lock index ac5df5d7bdb..064dbff80ae 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6183,19 +6183,19 @@ __metadata: languageName: node linkType: hard -"@wireapp/copy-config@npm:2.1.0": - version: 2.1.0 - resolution: "@wireapp/copy-config@npm:2.1.0" +"@wireapp/copy-config@npm:2.1.1": + version: 2.1.1 + resolution: "@wireapp/copy-config@npm:2.1.1" dependencies: axios: 1.4.0 copy: 0.3.2 - cosmiconfig: 8.1.3 + cosmiconfig: 8.2.0 fs-extra: 11.1.0 jszip: 3.10.1 logdown: 3.3.1 bin: copy-config: lib/cli.js - checksum: 13e35a2041f705dd3cab3f4c101209f0d5a8f6096a35bfb39dec3dd5974a148ca8e087518d32657ebd537eba7ce8bbbadc1f9ce01d5faa8f351e941495b7fde3 + checksum: 2af760dafb3597deb071c0332e0f1d5938ad00b6a599c23ac053f5cc8cceb94797c3e6f947242436b9129413c1a37d6fff00bd527e44cb77d9ebe19f4c82d847 languageName: node linkType: hard @@ -8138,15 +8138,15 @@ __metadata: languageName: node linkType: hard -"cosmiconfig@npm:8.1.3, cosmiconfig@npm:^8.1.3": - version: 8.1.3 - resolution: "cosmiconfig@npm:8.1.3" +"cosmiconfig@npm:8.2.0": + version: 8.2.0 + resolution: "cosmiconfig@npm:8.2.0" dependencies: import-fresh: ^3.2.1 js-yaml: ^4.1.0 parse-json: ^5.0.0 path-type: ^4.0.0 - checksum: b3d277bc3a8a9e649bf4c3fc9740f4c52bf07387481302aa79839f595045368903bf26ea24a8f7f7b8b180bf46037b027c5cb63b1391ab099f3f78814a147b2b + checksum: 836d5d8efa750f3fb17b03d6ca74cd3154ed025dffd045304b3ef59637f662bde1e5dc88f8830080d180ec60841719cf4ea2ce73fb21ec694b16865c478ff297 languageName: node linkType: hard @@ -8163,6 +8163,18 @@ __metadata: languageName: node linkType: hard +"cosmiconfig@npm:^8.1.3": + version: 8.1.3 + resolution: "cosmiconfig@npm:8.1.3" + dependencies: + import-fresh: ^3.2.1 + js-yaml: ^4.1.0 + parse-json: ^5.0.0 + path-type: ^4.0.0 + checksum: b3d277bc3a8a9e649bf4c3fc9740f4c52bf07387481302aa79839f595045368903bf26ea24a8f7f7b8b180bf46037b027c5cb63b1391ab099f3f78814a147b2b + languageName: node + linkType: hard + "countly-sdk-web@npm:23.2.2": version: 23.2.2 resolution: "countly-sdk-web@npm:23.2.2" @@ -19044,7 +19056,7 @@ dexie@latest: "@typescript-eslint/eslint-plugin": ^5.59.9 "@typescript-eslint/parser": ^5.59.11 "@wireapp/avs": 9.2.15 - "@wireapp/copy-config": 2.1.0 + "@wireapp/copy-config": 2.1.1 "@wireapp/core": 40.5.1 "@wireapp/eslint-config": 2.2.2 "@wireapp/lru-cache": 3.8.1 From a220990f46cdc38ecdd2aef77a9e3de168ef40b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:22:26 +0000 Subject: [PATCH 111/137] chore(deps-dev): Bump @types/react-dom from 18.2.4 to 18.2.5 (#15364) Bumps [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) from 18.2.4 to 18.2.5. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) --- updated-dependencies: - dependency-name: "@types/react-dom" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index ef1e060336d..fcf656a31dd 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,7 @@ "@types/platform": "1.3.4", "@types/prettier": "^2.7.3", "@types/react": "18.0.28", - "@types/react-dom": "18.2.4", + "@types/react-dom": "18.2.5", "@types/react-redux": "7.1.25", "@types/react-transition-group": "4.4.6", "@types/redux-mock-store": "1.0.3", diff --git a/yarn.lock b/yarn.lock index 064dbff80ae..6bd1482d12e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5460,12 +5460,12 @@ __metadata: languageName: node linkType: hard -"@types/react-dom@npm:18.2.4": - version: 18.2.4 - resolution: "@types/react-dom@npm:18.2.4" +"@types/react-dom@npm:18.2.5": + version: 18.2.5 + resolution: "@types/react-dom@npm:18.2.5" dependencies: "@types/react": "*" - checksum: 8301f35cf1cbfec8c723e9477aecf87774e3c168bd457d353b23c45064737213d3e8008b067c6767b7b08e4f2b3823ee239242a6c225fc91e7f8725ef8734124 + checksum: c48209f8c60cb9054f3deee5365bc9fd6dadd8f901b67f1612a334057b2671518fc5145f14aca63ff276a926ccb5358308a6cf58ec700178f382bb3ebde96d91 languageName: node linkType: hard @@ -19043,7 +19043,7 @@ dexie@latest: "@types/platform": 1.3.4 "@types/prettier": ^2.7.3 "@types/react": 18.0.28 - "@types/react-dom": 18.2.4 + "@types/react-dom": 18.2.5 "@types/react-redux": 7.1.25 "@types/react-transition-group": 4.4.6 "@types/redux-mock-store": 1.0.3 From 8dbf249c278367b0b5f010b7d8a6a8d929ad8f25 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:24:12 +0000 Subject: [PATCH 112/137] chore(deps-dev): Bump sinon from 15.1.0 to 15.1.2 (#15365) Bumps [sinon](https://github.com/sinonjs/sinon) from 15.1.0 to 15.1.2. - [Release notes](https://github.com/sinonjs/sinon/releases) - [Changelog](https://github.com/sinonjs/sinon/blob/main/docs/changelog.md) - [Commits](https://github.com/sinonjs/sinon/compare/v15.1.0...v15.1.2) --- updated-dependencies: - dependency-name: sinon dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index fcf656a31dd..5c8ce9c876a 100644 --- a/package.json +++ b/package.json @@ -164,7 +164,7 @@ "redux-mock-store": "1.5.4", "seedrandom": "^3.0.5", "simple-git": "3.19.0", - "sinon": "15.1.0", + "sinon": "15.1.2", "snabbdom": "3.5.1", "style-loader": "^3.3.3", "stylelint": "14.16.1", diff --git a/yarn.lock b/yarn.lock index 6bd1482d12e..748c5b359a5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4888,12 +4888,12 @@ __metadata: languageName: node linkType: hard -"@sinonjs/fake-timers@npm:^10.2.0": - version: 10.2.0 - resolution: "@sinonjs/fake-timers@npm:10.2.0" +"@sinonjs/fake-timers@npm:^10.1.0": + version: 10.1.0 + resolution: "@sinonjs/fake-timers@npm:10.1.0" dependencies: "@sinonjs/commons": ^3.0.0 - checksum: 586c76e1dd90d03b0c4e754f2011325b38ac6055878c81c52434c900f36d9d245438c96ef69e08e28d9fbecf2335fb347b67850962d8b6e539dd7359d8c62802 + checksum: f8f7e23a136e32ba0128493207e4223f453e033471257a971acb43840927e738a0838004b1e4fa046279609762a2dd8d700606616e9264dc3891c4f8d45889a2 languageName: node linkType: hard @@ -16928,17 +16928,17 @@ dexie@latest: languageName: node linkType: hard -"sinon@npm:15.1.0": - version: 15.1.0 - resolution: "sinon@npm:15.1.0" +"sinon@npm:15.1.2": + version: 15.1.2 + resolution: "sinon@npm:15.1.2" dependencies: "@sinonjs/commons": ^3.0.0 - "@sinonjs/fake-timers": ^10.2.0 + "@sinonjs/fake-timers": ^10.1.0 "@sinonjs/samsam": ^8.0.0 diff: ^5.1.0 nise: ^5.1.4 supports-color: ^7.2.0 - checksum: 3f0eab3e293c6206cca4a31f3c2836be86889f16bf6f54e2429550c1d07d0e7e9327cdbe6b7b69662c152a63e9f2661334c266932ba8f3206190009d58cb4f06 + checksum: 4484235fe4e84cc142cb8810a3a80f5b016178d739c1e2cc0b5eb1f0e05e05dd2dffaf53878826ac40743791acabb7265297affced727b0480c8bfe9abead8e8 languageName: node linkType: hard @@ -19162,7 +19162,7 @@ dexie@latest: redux-thunk: 2.4.2 seedrandom: ^3.0.5 simple-git: 3.19.0 - sinon: 15.1.0 + sinon: 15.1.2 snabbdom: 3.5.1 speakingurl: 14.0.1 style-loader: ^3.3.3 From cf1c08273588593e0a50acf5768670bfe29a7e37 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:28:28 +0000 Subject: [PATCH 113/137] chore(deps-dev): Bump postcss-loader from 7.3.2 to 7.3.3 (#15335) Bumps [postcss-loader](https://github.com/webpack-contrib/postcss-loader) from 7.3.2 to 7.3.3. - [Release notes](https://github.com/webpack-contrib/postcss-loader/releases) - [Changelog](https://github.com/webpack-contrib/postcss-loader/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/postcss-loader/compare/v7.3.2...v7.3.3) --- updated-dependencies: - dependency-name: postcss-loader dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 34 +++++++--------------------------- 2 files changed, 8 insertions(+), 28 deletions(-) diff --git a/package.json b/package.json index 5c8ce9c876a..4c9cb603463 100644 --- a/package.json +++ b/package.json @@ -155,7 +155,7 @@ "postcss": "8.4.24", "postcss-import": "^15.1.0", "postcss-less": "6.0.0", - "postcss-loader": "^7.3.2", + "postcss-loader": "^7.3.3", "postcss-preset-env": "^8.5.0", "postcss-scss": "4.0.6", "prettier": "^2.8.8", diff --git a/yarn.lock b/yarn.lock index 748c5b359a5..6df9525b154 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8138,7 +8138,7 @@ __metadata: languageName: node linkType: hard -"cosmiconfig@npm:8.2.0": +"cosmiconfig@npm:8.2.0, cosmiconfig@npm:^8.2.0": version: 8.2.0 resolution: "cosmiconfig@npm:8.2.0" dependencies: @@ -8163,18 +8163,6 @@ __metadata: languageName: node linkType: hard -"cosmiconfig@npm:^8.1.3": - version: 8.1.3 - resolution: "cosmiconfig@npm:8.1.3" - dependencies: - import-fresh: ^3.2.1 - js-yaml: ^4.1.0 - parse-json: ^5.0.0 - path-type: ^4.0.0 - checksum: b3d277bc3a8a9e649bf4c3fc9740f4c52bf07387481302aa79839f595045368903bf26ea24a8f7f7b8b180bf46037b027c5cb63b1391ab099f3f78814a147b2b - languageName: node - linkType: hard - "countly-sdk-web@npm:23.2.2": version: 23.2.2 resolution: "countly-sdk-web@npm:23.2.2" @@ -12854,13 +12842,6 @@ dexie@latest: languageName: node linkType: hard -"klona@npm:^2.0.6": - version: 2.0.6 - resolution: "klona@npm:2.0.6" - checksum: ac9ee3732e42b96feb67faae4d27cf49494e8a3bf3fa7115ce242fe04786788e0aff4741a07a45a2462e2079aa983d73d38519c85d65b70ef11447bbc3c58ce7 - languageName: node - linkType: hard - "knockout@npm:3.5.1": version: 3.5.1 resolution: "knockout@npm:3.5.1" @@ -15110,18 +15091,17 @@ dexie@latest: languageName: node linkType: hard -"postcss-loader@npm:^7.3.2": - version: 7.3.2 - resolution: "postcss-loader@npm:7.3.2" +"postcss-loader@npm:^7.3.3": + version: 7.3.3 + resolution: "postcss-loader@npm:7.3.3" dependencies: - cosmiconfig: ^8.1.3 + cosmiconfig: ^8.2.0 jiti: ^1.18.2 - klona: ^2.0.6 semver: ^7.3.8 peerDependencies: postcss: ^7.0.0 || ^8.0.1 webpack: ^5.0.0 - checksum: 7010f9aea756b801031a9f65c4c880b62c7c42d366312d47a7782c2cb05d0b8bedb149695a895d0104bc6639bc117350aed15da84029f58fc49828fee1fe244c + checksum: c724044d6ae56334535c26bb4efc9c151431d44d60bc8300157c760747281a242757d8dab32db72738434531175b38a408cb0b270bb96207c07584dcfcd899ff languageName: node linkType: hard @@ -19142,7 +19122,7 @@ dexie@latest: postcss: 8.4.24 postcss-import: ^15.1.0 postcss-less: 6.0.0 - postcss-loader: ^7.3.2 + postcss-loader: ^7.3.3 postcss-preset-env: ^8.5.0 postcss-scss: 4.0.6 prettier: ^2.8.8 From 9cd27286e2cc57b88285ba8a294428f361289a80 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jun 2023 15:32:00 +0000 Subject: [PATCH 114/137] chore(deps): Bump @wireapp/core from 40.5.1 to 40.5.2 (#15366) Bumps [@wireapp/core](https://github.com/wireapp/wire-web-packages) from 40.5.1 to 40.5.2. - [Commits](https://github.com/wireapp/wire-web-packages/compare/@wireapp/core@40.5.1...@wireapp/core@40.5.2) --- updated-dependencies: - dependency-name: "@wireapp/core" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 36 ++++++++++++++++++++++++------------ 2 files changed, 25 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index 4c9cb603463..1eb8286d0aa 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "@emotion/react": "11.11.1", "@types/eslint": "8.37.0", "@wireapp/avs": "9.2.15", - "@wireapp/core": "40.5.1", + "@wireapp/core": "40.5.2", "@wireapp/lru-cache": "3.8.1", "@wireapp/react-ui-kit": "9.7.5", "@wireapp/store-engine-dexie": "2.1.1", diff --git a/yarn.lock b/yarn.lock index 6df9525b154..1bfb96b351e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6138,9 +6138,9 @@ __metadata: languageName: node linkType: hard -"@wireapp/api-client@npm:^24.15.4": - version: 24.15.4 - resolution: "@wireapp/api-client@npm:24.15.4" +"@wireapp/api-client@npm:^24.15.5": + version: 24.15.5 + resolution: "@wireapp/api-client@npm:24.15.5" dependencies: "@wireapp/commons": ^5.1.0 "@wireapp/priority-queue": ^2.1.1 @@ -6151,9 +6151,9 @@ __metadata: logdown: 3.3.1 reconnecting-websocket: 4.4.0 spark-md5: 3.0.2 - tough-cookie: 4.1.2 + tough-cookie: 4.1.3 ws: 8.11.0 - checksum: 2689634c012cba0e68f2cc67226a32ac3f5e59e1d99ed8877642fc9fc60b01f9ecacae0e333f7ba4975c70fe2b3925eeedd2f1c2743b209234ad1ac6fc275f58 + checksum: 525aced6e2f8f4d7ebf4fb3baed3be29ff4ee928e513248362b46d4a093a79b08a3b7661cd485248fa80305acb2299742daf79b99195ef09cf8eae1fa7e2d2fd languageName: node linkType: hard @@ -6206,11 +6206,11 @@ __metadata: languageName: node linkType: hard -"@wireapp/core@npm:40.5.1": - version: 40.5.1 - resolution: "@wireapp/core@npm:40.5.1" +"@wireapp/core@npm:40.5.2": + version: 40.5.2 + resolution: "@wireapp/core@npm:40.5.2" dependencies: - "@wireapp/api-client": ^24.15.4 + "@wireapp/api-client": ^24.15.5 "@wireapp/commons": ^5.1.0 "@wireapp/core-crypto": 0.11.0 "@wireapp/cryptobox": 12.8.0 @@ -6227,7 +6227,7 @@ __metadata: logdown: 3.3.1 long: ^5.2.0 uuidjs: 4.2.13 - checksum: b360d94a6312f4d1ed5d72959da8d699f772f2ec0c87300c246130e42c6234f1724cceee60541bd41f54b6968720774e4a291f0a0089fb5cb95d7cd61937cb1f + checksum: f7e0cb030d2d1faf1f08848059252b252681ad80f2fbcd1404c02e70cad2c49617c60b3bd96f80dfc3540dd1c1758a470b38224d864a7aad2c97f516ef15d3c7 languageName: node linkType: hard @@ -17977,7 +17977,19 @@ dexie@latest: languageName: node linkType: hard -"tough-cookie@npm:4.1.2, tough-cookie@npm:^4.0.0": +"tough-cookie@npm:4.1.3": + version: 4.1.3 + resolution: "tough-cookie@npm:4.1.3" + dependencies: + psl: ^1.1.33 + punycode: ^2.1.1 + universalify: ^0.2.0 + url-parse: ^1.5.3 + checksum: c9226afff36492a52118432611af083d1d8493a53ff41ec4ea48e5b583aec744b989e4280bcf476c910ec1525a89a4a0f1cae81c08b18fb2ec3a9b3a72b91dcc + languageName: node + linkType: hard + +"tough-cookie@npm:^4.0.0": version: 4.1.2 resolution: "tough-cookie@npm:4.1.2" dependencies: @@ -19037,7 +19049,7 @@ dexie@latest: "@typescript-eslint/parser": ^5.59.11 "@wireapp/avs": 9.2.15 "@wireapp/copy-config": 2.1.1 - "@wireapp/core": 40.5.1 + "@wireapp/core": 40.5.2 "@wireapp/eslint-config": 2.2.2 "@wireapp/lru-cache": 3.8.1 "@wireapp/prettier-config": 0.6.0 From b2b4075fb4ef76e8acc4ef37cc898fb04a6bb7f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20G=C3=B3rka?= Date: Mon, 19 Jun 2023 11:16:03 +0200 Subject: [PATCH 115/137] runfix: leave conversation before clearing the content (#15367) --- .../conversation/ConversationRepository.ts | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/script/conversation/ConversationRepository.ts b/src/script/conversation/ConversationRepository.ts index 42f8f2fcb57..e12593faf8b 100644 --- a/src/script/conversation/ConversationRepository.ts +++ b/src/script/conversation/ConversationRepository.ts @@ -1547,7 +1547,7 @@ export class ConversationRepository { * @param conversationEntity Conversation to clear * @param leaveConversation Should we leave the conversation before clearing the content? */ - public clearConversation(conversationEntity: Conversation, leaveConversation = false) { + public async clearConversation(conversationEntity: Conversation, leaveConversation = false) { const isActiveConversation = this.conversationState.isActiveConversation(conversationEntity); const nextConversationEntity = this.getNextConversation(conversationEntity); @@ -1556,11 +1556,11 @@ export class ConversationRepository { this.leaveCall(conversationEntity.qualifiedId, LEAVE_CALL_REASON.USER_MANUALY_LEFT_CONVERSATION); } - this.messageRepository.updateClearedTimestamp(conversationEntity); - this._clearConversation(conversationEntity); + await this.messageRepository.updateClearedTimestamp(conversationEntity); + await this._clearConversation(conversationEntity); if (leaveConversation) { - this.removeMember(conversationEntity, this.userState.self().qualifiedId); + await this.removeMember(conversationEntity, this.userState.self().qualifiedId); } if (isActiveConversation) { @@ -1626,12 +1626,11 @@ export class ConversationRepository { * @returns Resolves when user was removed from the conversation */ private async leaveConversation(conversationEntity: Conversation, clearContent: boolean) { - if (clearContent) { - this.clearConversation(conversationEntity, false); - } - const userQualifiedId = this.userState.self().qualifiedId; - return this.removeMemberFromConversation(conversationEntity, userQualifiedId); + + return clearContent + ? this.clearConversation(conversationEntity, true) + : this.removeMemberFromConversation(conversationEntity, userQualifiedId); } /** @@ -1892,11 +1891,11 @@ export class ConversationRepository { * @param conversationEntity Conversation entity to delete * @param timestamp Optional timestamps for which messages to remove */ - private _clearConversation(conversationEntity: Conversation, timestamp?: number) { + private async _clearConversation(conversationEntity: Conversation, timestamp?: number) { this.deleteMessages(conversationEntity, timestamp); if (conversationEntity.removed_from_conversation()) { - this.conversationService.deleteConversationFromDb(conversationEntity.id); + await this.conversationService.deleteConversationFromDb(conversationEntity.id); this.deleteConversationFromRepository(conversationEntity); } } @@ -2747,7 +2746,7 @@ export class ConversationRepository { } if (conversationEntity.is_cleared()) { - this._clearConversation(conversationEntity, conversationEntity.cleared_timestamp()); + await this._clearConversation(conversationEntity, conversationEntity.cleared_timestamp()); } if (isActiveConversation && (conversationEntity.is_archived() || conversationEntity.is_cleared())) { From d0839264ad1af0d317bb527f736542253fec4c41 Mon Sep 17 00:00:00 2001 From: Arjita Date: Tue, 20 Jun 2023 11:45:54 +0200 Subject: [PATCH 116/137] feat: AWS linux 2 migration of webapp environment (#14976) * feat: aws migration QA env(SQSERVICES-1965) * feat: update nginx file * fix: update env name to resolve application name issue * fix: add Procfile * refactor: delete old Profile * feat: copy assets * fix: delete fs.copysysnc * fix: copy Procfile script * fix: add Procfile inside zip.js * feat: update qa env name * Update .github/workflows/test_build_deploy.yml Co-authored-by: Thomas Belin * Update .github/workflows/test_build_deploy.yml Co-authored-by: Thomas Belin * Update .github/workflows/test_build_deploy.yml Co-authored-by: Thomas Belin * Update .github/workflows/test_build_deploy.yml Co-authored-by: Thomas Belin * Update .github/workflows/test_build_deploy.yml Co-authored-by: Thomas Belin * fix: make new Elastic Beanstalk configuration backward compatible * fix: remove comma * fix: create different namespace for new and old configuration * feat: backward compaitable configuration * feat: rename config file * fix: delete old file * fix: print PLATFORM_BRANCH * fix: revert config change * fix: delete unused code * feat: migrate to new al2 staging env * refactor: delete unused code * feat: add new branch in the list * feat: add new env to deploy * fix: remove auto deploy of staging new env * feat: dev env al2 migration * feat: migrate edge to amazon al2 * feat: migrate prod env to amazon al2 * feat: migrate master and avs * fix: remove al2 from auto deploy * chore: small updates to prepare for merge * chore: cleaning up things --------- Co-authored-by: Thomas Belin Co-authored-by: Timothy Le Bon --- .elasticbeanstalk/config.yml | 4 ++-- .github/workflows/deploy-to-test-env.yml | 6 +++--- .github/workflows/test_build_deploy.yml | 10 +++++----- Procfile | 1 + bin/zip.js | 5 ++++- server/.ebextensions/00-environment.config | 6 ++---- server/.platform/nginx/conf.d/proxy.conf | 7 +++++++ 7 files changed, 24 insertions(+), 15 deletions(-) create mode 100644 Procfile create mode 100644 server/.platform/nginx/conf.d/proxy.conf diff --git a/.elasticbeanstalk/config.yml b/.elasticbeanstalk/config.yml index 913fb2593c3..3a0cb15bbc9 100644 --- a/.elasticbeanstalk/config.yml +++ b/.elasticbeanstalk/config.yml @@ -1,8 +1,8 @@ branch-defaults: dev: - environment: wire-webapp-dev + environment: wire-webapp-dev-al2 master: - environment: wire-webapp-master + environment: wire-webapp-master-al2 deploy: artifact: server/dist/s3/ebs.zip global: diff --git a/.github/workflows/deploy-to-test-env.yml b/.github/workflows/deploy-to-test-env.yml index b6645234b65..11a9f31436b 100644 --- a/.github/workflows/deploy-to-test-env.yml +++ b/.github/workflows/deploy-to-test-env.yml @@ -8,9 +8,9 @@ on: required: true type: choice options: - - wire-webapp-qa - - wire-webapp-edge - - wire-webapp-mls + - wire-webapp-qa-al2-migration + - wire-webapp-edge-al2 + - wire-webapp-mls-al2 concurrency: group: ci-${{ github.ref }} diff --git a/.github/workflows/test_build_deploy.yml b/.github/workflows/test_build_deploy.yml index f4a4279a1e6..0071a08918d 100644 --- a/.github/workflows/test_build_deploy.yml +++ b/.github/workflows/test_build_deploy.yml @@ -93,9 +93,9 @@ jobs: key: '${{github.ref}}' map: | { - "edge": { "dev_env": "wire-webapp-edge" }, - "dev": { "dev_env": "wire-webapp-dev" }, - "master": { "dev_env": "wire-webapp-master" } + "edge": { "dev_env": "wire-webapp-edge-al2" }, + "dev": { "dev_env": "wire-webapp-dev-al2" }, + "master": { "dev_env": "wire-webapp-master-al2" } } - uses: kanga333/variable-mapper@master @@ -104,8 +104,8 @@ jobs: key: '${{env.TAG}}' map: | { - "production": { "prod_env": "wire-webapp-prod" }, - "staging": { "prod_env": "wire-webapp-staging" } + "production": { "prod_env": "wire-webapp-prod-al2" }, + "staging": { "prod_env": "wire-webapp-staging-al2" } } - name: Build diff --git a/Procfile b/Procfile new file mode 100644 index 00000000000..e6bad1f0136 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: npm run start:prod \ No newline at end of file diff --git a/bin/zip.js b/bin/zip.js index 129a320fd6e..01e1a0b9233 100644 --- a/bin/zip.js +++ b/bin/zip.js @@ -29,9 +29,12 @@ const S3_PATH = path.resolve(ROOT_PATH, 'server/dist/s3'); archive.file(path.join(SERVER_PATH, 'package.json'), {name: 'package.json'}); archive.file(path.join(ROOT_PATH, '.env.defaults'), {name: '.env.defaults'}); +archive.file(path.join(ROOT_PATH, 'Procfile'), {name: 'Procfile'}); archive.directory(DIST_PATH, false); -fs.mkdirSync(S3_PATH); +if (!fs.existsSync(S3_PATH)) { + fs.mkdirSync(S3_PATH); +} const output = fs.createWriteStream(path.join(S3_PATH, 'ebs.zip')); archive.pipe(output); diff --git a/server/.ebextensions/00-environment.config b/server/.ebextensions/00-environment.config index 0e273cca127..26ec1fb5539 100644 --- a/server/.ebextensions/00-environment.config +++ b/server/.ebextensions/00-environment.config @@ -1,5 +1,3 @@ option_settings: - aws:elasticbeanstalk:container:nodejs: - GzipCompression: true - NodeCommand: "npm run start:prod" - ProxyServer: nginx + aws:elasticbeanstalk:environment:proxy: + ProxyServer: nginx \ No newline at end of file diff --git a/server/.platform/nginx/conf.d/proxy.conf b/server/.platform/nginx/conf.d/proxy.conf new file mode 100644 index 00000000000..19f3ec026c8 --- /dev/null +++ b/server/.platform/nginx/conf.d/proxy.conf @@ -0,0 +1,7 @@ +large_client_header_buffers 4 32k; +fastcgi_buffers 16 32k; +fastcgi_buffer_size 32k; +proxy_buffer_size 128k; +proxy_buffers 4 256k; +proxy_busy_buffers_size 256k; +server_tokens off; \ No newline at end of file From 6fd6731a9830708697f578f2847d8a56b4daa20e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20G=C3=B3rka?= Date: Tue, 20 Jun 2023 18:03:04 +0200 Subject: [PATCH 117/137] runfix: wipe conversation from mls state after it was deleted (#15368) --- package.json | 2 +- .../conversation/ConversationRepository.ts | 15 +++------ .../conversation/ConversationService.ts | 15 +++++++++ .../mlsConversationState.ts | 32 +++++++++++++++---- yarn.lock | 20 ++++++------ 5 files changed, 56 insertions(+), 28 deletions(-) diff --git a/package.json b/package.json index 1eb8286d0aa..072ee8e73d7 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "@emotion/react": "11.11.1", "@types/eslint": "8.37.0", "@wireapp/avs": "9.2.15", - "@wireapp/core": "40.5.2", + "@wireapp/core": "40.5.3", "@wireapp/lru-cache": "3.8.1", "@wireapp/react-ui-kit": "9.7.5", "@wireapp/store-engine-dexie": "2.1.1", diff --git a/src/script/conversation/ConversationRepository.ts b/src/script/conversation/ConversationRepository.ts index e12593faf8b..debb6deaadc 100644 --- a/src/script/conversation/ConversationRepository.ts +++ b/src/script/conversation/ConversationRepository.ts @@ -79,6 +79,7 @@ import {ConversationFilter} from './ConversationFilter'; import {ConversationLabelRepository} from './ConversationLabelRepository'; import {ConversationDatabaseData, ConversationMapper} from './ConversationMapper'; import {ConversationRoleRepository} from './ConversationRoleRepository'; +import {isMLSConversation} from './ConversationSelectors'; import {ConversationService} from './ConversationService'; import {ConversationState} from './ConversationState'; import {ConversationStateHandler} from './ConversationStateHandler'; @@ -950,11 +951,8 @@ export class ConversationRepository { } this.deleteConversationFromRepository(conversationId); await this.conversationService.deleteConversationFromDb(conversationId.id); - if (conversationEntity.protocol === ConversationProtocol.MLS) { - const {groupId} = conversationEntity; - if (groupId) { - await this.core.service!.conversation.wipeMLSConversation(groupId); - } + if (isMLSConversation(conversationEntity)) { + await this.conversationService.wipeMLSConversation(conversationEntity); } }; @@ -2652,11 +2650,8 @@ export class ConversationRepository { eventJson.from = this.userState.self().id; } - if (conversationEntity.protocol === ConversationProtocol.MLS) { - const {groupId} = conversationEntity; - if (groupId) { - await this.core.service!.conversation.wipeMLSConversation(groupId); - } + if (isMLSConversation(conversationEntity)) { + await this.conversationService.wipeMLSConversation(conversationEntity); } } else { // Update conversation roles (in case the removed user had some special role and it's not the self user) diff --git a/src/script/conversation/ConversationService.ts b/src/script/conversation/ConversationService.ts index 28ff043106d..4ad974f2d91 100644 --- a/src/script/conversation/ConversationService.ts +++ b/src/script/conversation/ConversationService.ts @@ -45,11 +45,15 @@ import {container} from 'tsyringe'; import {getLogger, Logger} from 'Util/Logger'; +import {MLSConversation} from './ConversationSelectors'; + import type {Conversation as ConversationEntity} from '../entity/Conversation'; import type {EventService} from '../event/EventService'; import {MessageCategory} from '../message/MessageCategory'; +import {useMLSConversationState} from '../mls'; import {search as fullTextSearch} from '../search/FullTextSearch'; import {APIClient} from '../service/APIClientSingleton'; +import {Core} from '../service/CoreSingleton'; import {StorageService} from '../storage'; import {ConversationRecord} from '../storage/record/ConversationRecord'; import {StorageSchemata} from '../storage/StorageSchemata'; @@ -62,6 +66,7 @@ export class ConversationService { eventService: EventService, private readonly storageService = container.resolve(StorageService), private readonly apiClient = container.resolve(APIClient), + private readonly core = container.resolve(Core), ) { this.eventService = eventService; this.logger = getLogger('ConversationService'); @@ -395,4 +400,14 @@ export class ConversationService { .filter(record => record.ephemeral_expires !== true) .filter(({data: event_data}: any) => fullTextSearch(event_data.content, query)); } + + /** + * Wipes MLS conversation in corecrypto and deletes the conversation state. + * @param mlsConversation mls conversation + */ + async wipeMLSConversation(mlsConversation: MLSConversation) { + const {groupId} = mlsConversation; + await this.core.service!.conversation.wipeMLSConversation(groupId); + return useMLSConversationState.getState().wipeConversationState(groupId); + } } diff --git a/src/script/mls/mlsConversationState/mlsConversationState.ts b/src/script/mls/mlsConversationState/mlsConversationState.ts index 550038645a5..43f1f833a22 100644 --- a/src/script/mls/mlsConversationState/mlsConversationState.ts +++ b/src/script/mls/mlsConversationState/mlsConversationState.ts @@ -39,6 +39,7 @@ type StoreState = MLSConversationState & { filterEstablishedConversations: (conversations: Conversation[]) => Conversation[]; markAsEstablished: (groupId: string) => void; markAsPendingWelcome: (groupId: string) => void; + wipeConversationState: (groupId: string) => void; /** * Will send external proposal for all the conversations that are not pendingWelcome or established * @param conversations The conversations that we want to process (only the mls conversations will be considered) @@ -63,21 +64,25 @@ export const useMLSConversationState = create((set, get) => { markAsEstablished: groupId => set(state => { - const newState = new Set(state.established); - newState.add(groupId); + const established = new Set(state.established); + established.add(groupId); + + const pendingWelcome = new Set(state.pendingWelcome); + pendingWelcome.delete(groupId); + return { - ...state, - established: newState, + established, + pendingWelcome, }; }), markAsPendingWelcome: groupId => set(state => { - const newState = new Set(state.pendingWelcome); - newState.add(groupId); + const pendingWelcome = new Set(state.pendingWelcome); + pendingWelcome.add(groupId); return { ...state, - pendingWelcome: newState, + pendingWelcome, }; }), @@ -121,6 +126,19 @@ export const useMLSConversationState = create((set, get) => { pendingWelcome: new Set([...currentState.pendingWelcome, ...pendingConversations]), }); }, + + wipeConversationState: groupId => + set(state => { + const established = new Set(state.established); + established.delete(groupId); + const pendingWelcome = new Set(state.pendingWelcome); + pendingWelcome.delete(groupId); + return { + ...state, + established, + pendingWelcome, + }; + }), }; }); diff --git a/yarn.lock b/yarn.lock index 1bfb96b351e..25a6b17219c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6138,9 +6138,9 @@ __metadata: languageName: node linkType: hard -"@wireapp/api-client@npm:^24.15.5": - version: 24.15.5 - resolution: "@wireapp/api-client@npm:24.15.5" +"@wireapp/api-client@npm:^24.15.6": + version: 24.15.6 + resolution: "@wireapp/api-client@npm:24.15.6" dependencies: "@wireapp/commons": ^5.1.0 "@wireapp/priority-queue": ^2.1.1 @@ -6153,7 +6153,7 @@ __metadata: spark-md5: 3.0.2 tough-cookie: 4.1.3 ws: 8.11.0 - checksum: 525aced6e2f8f4d7ebf4fb3baed3be29ff4ee928e513248362b46d4a093a79b08a3b7661cd485248fa80305acb2299742daf79b99195ef09cf8eae1fa7e2d2fd + checksum: 9f14648dc839aff733c19b236f78f7563552639293ce9bd131d0a34ede2025b8ed51f22123c0efadf98454b6e4f23211dc605536105709fb741c47bbc7590a81 languageName: node linkType: hard @@ -6206,11 +6206,11 @@ __metadata: languageName: node linkType: hard -"@wireapp/core@npm:40.5.2": - version: 40.5.2 - resolution: "@wireapp/core@npm:40.5.2" +"@wireapp/core@npm:40.5.3": + version: 40.5.3 + resolution: "@wireapp/core@npm:40.5.3" dependencies: - "@wireapp/api-client": ^24.15.5 + "@wireapp/api-client": ^24.15.6 "@wireapp/commons": ^5.1.0 "@wireapp/core-crypto": 0.11.0 "@wireapp/cryptobox": 12.8.0 @@ -6227,7 +6227,7 @@ __metadata: logdown: 3.3.1 long: ^5.2.0 uuidjs: 4.2.13 - checksum: f7e0cb030d2d1faf1f08848059252b252681ad80f2fbcd1404c02e70cad2c49617c60b3bd96f80dfc3540dd1c1758a470b38224d864a7aad2c97f516ef15d3c7 + checksum: f40f7c7f369fbb922121f31d064e38850a18d7dd9be8953daa438313616055a6806095d207c564124023d4a8c800e757deec1f219be948cbb538379f72966125 languageName: node linkType: hard @@ -19049,7 +19049,7 @@ dexie@latest: "@typescript-eslint/parser": ^5.59.11 "@wireapp/avs": 9.2.15 "@wireapp/copy-config": 2.1.1 - "@wireapp/core": 40.5.2 + "@wireapp/core": 40.5.3 "@wireapp/eslint-config": 2.2.2 "@wireapp/lru-cache": 3.8.1 "@wireapp/prettier-config": 0.6.0 From d7259218ca8be01188be0f233512afa30604a989 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Jun 2023 16:13:20 +0000 Subject: [PATCH 118/137] chore(deps-dev): Bump @typescript-eslint/eslint-plugin (#15370) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 5.59.9 to 5.60.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.60.0/packages/eslint-plugin) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 84 ++++++++++++++++++++++++++-------------------------- 2 files changed, 43 insertions(+), 43 deletions(-) diff --git a/package.json b/package.json index 072ee8e73d7..0b7b3e2a216 100644 --- a/package.json +++ b/package.json @@ -95,7 +95,7 @@ "@types/uint32": "0.2.0", "@types/underscore": "1.11.5", "@types/webpack-env": "1.18.1", - "@typescript-eslint/eslint-plugin": "^5.59.9", + "@typescript-eslint/eslint-plugin": "^5.60.0", "@typescript-eslint/parser": "^5.59.11", "@wireapp/copy-config": "2.1.1", "@wireapp/eslint-config": "2.2.2", diff --git a/yarn.lock b/yarn.lock index 25a6b17219c..dfaec16fdca 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5653,14 +5653,14 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^5.59.9": - version: 5.59.9 - resolution: "@typescript-eslint/eslint-plugin@npm:5.59.9" +"@typescript-eslint/eslint-plugin@npm:^5.60.0": + version: 5.60.0 + resolution: "@typescript-eslint/eslint-plugin@npm:5.60.0" dependencies: "@eslint-community/regexpp": ^4.4.0 - "@typescript-eslint/scope-manager": 5.59.9 - "@typescript-eslint/type-utils": 5.59.9 - "@typescript-eslint/utils": 5.59.9 + "@typescript-eslint/scope-manager": 5.60.0 + "@typescript-eslint/type-utils": 5.60.0 + "@typescript-eslint/utils": 5.60.0 debug: ^4.3.4 grapheme-splitter: ^1.0.4 ignore: ^5.2.0 @@ -5673,7 +5673,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: bd2428e307085d7fa6699913b6e61d65eb450bbcd26f884390cbf16722b80e1d80dc289c72774be1cdffd022744894204c3242f40ba3ffdfa05d3f210c4130bb + checksum: 61dd70a1ea9787e69d0d4cd14f6a4c94ba786b535a3f519ade7926d965ee1d4f8fefa8bf0224ee57c5c6517eec3674c0fd06f9226536aa428c2bdddeed1e70f4 languageName: node linkType: hard @@ -5735,22 +5735,22 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:5.59.9": - version: 5.59.9 - resolution: "@typescript-eslint/scope-manager@npm:5.59.9" +"@typescript-eslint/scope-manager@npm:5.60.0": + version: 5.60.0 + resolution: "@typescript-eslint/scope-manager@npm:5.60.0" dependencies: - "@typescript-eslint/types": 5.59.9 - "@typescript-eslint/visitor-keys": 5.59.9 - checksum: 362c22662d844440a7e14223d8cc0722f77ff21ad8f78deb0ee3b3f21de01b8846bf25fbbf527544677e83d8ff48008b3f7d40b39ddec55994ea4a1863e9ec0a + "@typescript-eslint/types": 5.60.0 + "@typescript-eslint/visitor-keys": 5.60.0 + checksum: b21ee1ef57be948a806aa31fd65a9186766b3e1a727030dc47025edcadc54bd1aa6133a439acd5f44a93e2b983dd55bc5571bb01cb834461dab733682d66256a languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:5.59.9": - version: 5.59.9 - resolution: "@typescript-eslint/type-utils@npm:5.59.9" +"@typescript-eslint/type-utils@npm:5.60.0": + version: 5.60.0 + resolution: "@typescript-eslint/type-utils@npm:5.60.0" dependencies: - "@typescript-eslint/typescript-estree": 5.59.9 - "@typescript-eslint/utils": 5.59.9 + "@typescript-eslint/typescript-estree": 5.60.0 + "@typescript-eslint/utils": 5.60.0 debug: ^4.3.4 tsutils: ^3.21.0 peerDependencies: @@ -5758,7 +5758,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 6bc2619c5024c152b181eff1f44c9b5e7d0fc75ce9403f03b39d59fc1e13191b2fbaf6730f26a1caae22922ac47489f39c2cebccdd713588f6963169ed2a7958 + checksum: b90ce97592f2db899d88d7a325fec4d2ea11a7b8b4306787310890c27fb51862a6c003675252e9dc465908f791ad5320ea7307260ecd10e89ca1d209fbf8616d languageName: node linkType: hard @@ -5783,10 +5783,10 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:5.59.9": - version: 5.59.9 - resolution: "@typescript-eslint/types@npm:5.59.9" - checksum: 283f8fee1ee590eeccc2e0fcd3526c856c4b1e2841af2cdcd09eeac842a42cfb32f6bc8b40385380f3dbc3ee29da30f1819115eedf9e16f69ff5a160aeddd8fa +"@typescript-eslint/types@npm:5.60.0": + version: 5.60.0 + resolution: "@typescript-eslint/types@npm:5.60.0" + checksum: 48f29e5c084c5663cfed1a6c4458799a6690a213e7861a24501f9b96698ae59e89a1df1c77e481777e4da78f1b0a5573a549f7b8880e3f4071a7a8b686254db8 languageName: node linkType: hard @@ -5844,12 +5844,12 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:5.59.9": - version: 5.59.9 - resolution: "@typescript-eslint/typescript-estree@npm:5.59.9" +"@typescript-eslint/typescript-estree@npm:5.60.0": + version: 5.60.0 + resolution: "@typescript-eslint/typescript-estree@npm:5.60.0" dependencies: - "@typescript-eslint/types": 5.59.9 - "@typescript-eslint/visitor-keys": 5.59.9 + "@typescript-eslint/types": 5.60.0 + "@typescript-eslint/visitor-keys": 5.60.0 debug: ^4.3.4 globby: ^11.1.0 is-glob: ^4.0.3 @@ -5858,7 +5858,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: c0c9b81f20a2a4337f07bc3ccdc9c1dabd765f59096255ed9a149e91e5c9517b25c2b6655f8f073807cfc13500c7451fbd9bb62e5e572c07cc07945ab042db89 + checksum: 0f4f342730ead42ba60b5fca4bf1950abebd83030010c38b5df98ff9fd95d0ce1cfc3974a44c90c65f381f4f172adcf1a540e018d7968cc845d937bf6c734dae languageName: node linkType: hard @@ -5878,21 +5878,21 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:5.59.9": - version: 5.59.9 - resolution: "@typescript-eslint/utils@npm:5.59.9" +"@typescript-eslint/utils@npm:5.60.0": + version: 5.60.0 + resolution: "@typescript-eslint/utils@npm:5.60.0" dependencies: "@eslint-community/eslint-utils": ^4.2.0 "@types/json-schema": ^7.0.9 "@types/semver": ^7.3.12 - "@typescript-eslint/scope-manager": 5.59.9 - "@typescript-eslint/types": 5.59.9 - "@typescript-eslint/typescript-estree": 5.59.9 + "@typescript-eslint/scope-manager": 5.60.0 + "@typescript-eslint/types": 5.60.0 + "@typescript-eslint/typescript-estree": 5.60.0 eslint-scope: ^5.1.1 semver: ^7.3.7 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: 22ec5962886de7dcf65f99c37aad9fb189a3bef6b2b07c81887fb82a0e8bf137246da58e64fb02141352285708440be13acd7f6db1ca19e96f86724813ac4646 + checksum: cbe56567f0b53e24ad7ef7d2fb4cdc8596e2559c21ee639aa0560879b6216208550e51e9d8ae4b388ff21286809c6dc985cec66738294871051396a8ae5bccbc languageName: node linkType: hard @@ -5944,13 +5944,13 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:5.59.9": - version: 5.59.9 - resolution: "@typescript-eslint/visitor-keys@npm:5.59.9" +"@typescript-eslint/visitor-keys@npm:5.60.0": + version: 5.60.0 + resolution: "@typescript-eslint/visitor-keys@npm:5.60.0" dependencies: - "@typescript-eslint/types": 5.59.9 + "@typescript-eslint/types": 5.60.0 eslint-visitor-keys: ^3.3.0 - checksum: 2909ce761f7fe546592cd3c43e33263d8a5fa619375fd2fdffbc72ffc33e40d6feacafb28c79f36c638fcc2225048e7cc08c61cbac6ca63723dc68610d80e3e6 + checksum: d39b2485d030f9755820d0f6f3748a8ec44e1ca23cb36ddcba67a9eb1f258c8ec83c61fc015c50e8f4a00d05df62d719dbda445625e3e71a64a659f1d248157e languageName: node linkType: hard @@ -19045,7 +19045,7 @@ dexie@latest: "@types/uint32": 0.2.0 "@types/underscore": 1.11.5 "@types/webpack-env": 1.18.1 - "@typescript-eslint/eslint-plugin": ^5.59.9 + "@typescript-eslint/eslint-plugin": ^5.60.0 "@typescript-eslint/parser": ^5.59.11 "@wireapp/avs": 9.2.15 "@wireapp/copy-config": 2.1.1 From 694e49906ba764aeea9fbf3225d0238b1d705632 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Jun 2023 16:14:22 +0000 Subject: [PATCH 119/137] chore(deps-dev): Bump caniuse-lite from 1.0.30001504 to 1.0.30001505 (#15372) Bumps [caniuse-lite](https://github.com/browserslist/caniuse-lite) from 1.0.30001504 to 1.0.30001505. - [Commits](https://github.com/browserslist/caniuse-lite/compare/1.0.30001504...1.0.30001505) --- updated-dependencies: - dependency-name: caniuse-lite dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 0b7b3e2a216..873166ddf06 100644 --- a/package.json +++ b/package.json @@ -106,7 +106,7 @@ "autoprefixer": "^10.4.13", "babel-loader": "9.1.2", "babel-plugin-transform-import-meta": "^2.2.0", - "caniuse-lite": "^1.0.30001504", + "caniuse-lite": "^1.0.30001505", "cross-env": "7.0.3", "cspell": "6.31.1", "css-loader": "^6.8.1", diff --git a/yarn.lock b/yarn.lock index dfaec16fdca..1ad937c83c0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7585,10 +7585,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001504": - version: 1.0.30001504 - resolution: "caniuse-lite@npm:1.0.30001504" - checksum: 0256f8ef2f5d6d1559198967d7325952e6451e79ff1b92d3d6ba1ec43efedf49fcd3fbb0735ebed0bfd96c6c6a49730e169535e273c60795d23ef25bd37e3e3d +"caniuse-lite@npm:^1.0.30001505": + version: 1.0.30001505 + resolution: "caniuse-lite@npm:1.0.30001505" + checksum: 994a48945d797603e04641aa54d2368d1405feea249dfc51a1dbfc39cbaf51ab0df8ec03c944448289597bd7046ab5dbc6dff7ee3cbfec0e70a83b164395e805 languageName: node linkType: hard @@ -19065,7 +19065,7 @@ dexie@latest: babel-loader: 9.1.2 babel-plugin-transform-import-meta: ^2.2.0 beautiful-react-hooks: ^4.3.0 - caniuse-lite: ^1.0.30001504 + caniuse-lite: ^1.0.30001505 classnames: 2.3.2 copy-webpack-plugin: 11.0.0 core-js: 3.25.5 From 1b69c0a8dfb0288904e2108185e91f5245b26018 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Jun 2023 16:16:21 +0000 Subject: [PATCH 120/137] chore(deps): Bump @datadog/browser-logs from 4.42.2 to 4.43.0 (#15373) Bumps [@datadog/browser-logs](https://github.com/DataDog/browser-sdk/tree/HEAD/packages/logs) from 4.42.2 to 4.43.0. - [Changelog](https://github.com/DataDog/browser-sdk/blob/main/CHANGELOG.md) - [Commits](https://github.com/DataDog/browser-sdk/commits/v4.43.0/packages/logs) --- updated-dependencies: - dependency-name: "@datadog/browser-logs" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 21 ++++++++++++++------- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 873166ddf06..9ef9b581878 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "dependencies": { - "@datadog/browser-logs": "^4.42.2", + "@datadog/browser-logs": "^4.43.0", "@datadog/browser-rum": "^4.42.2", "@emotion/react": "11.11.1", "@types/eslint": "8.37.0", diff --git a/yarn.lock b/yarn.lock index 1ad937c83c0..07bc714f450 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3380,17 +3380,24 @@ __metadata: languageName: node linkType: hard -"@datadog/browser-logs@npm:^4.42.2": - version: 4.42.2 - resolution: "@datadog/browser-logs@npm:4.42.2" +"@datadog/browser-core@npm:4.43.0": + version: 4.43.0 + resolution: "@datadog/browser-core@npm:4.43.0" + checksum: 455f04d5ea1bc886a064224803e43bc30f6411f1ed827784d94f9fe07b7c0fedf9f69df67bf8d258d25d3e56b16696a842c77df02df168ddfa855ac5ab56713f + languageName: node + linkType: hard + +"@datadog/browser-logs@npm:^4.43.0": + version: 4.43.0 + resolution: "@datadog/browser-logs@npm:4.43.0" dependencies: - "@datadog/browser-core": 4.42.2 + "@datadog/browser-core": 4.43.0 peerDependencies: - "@datadog/browser-rum": 4.42.2 + "@datadog/browser-rum": 4.43.0 peerDependenciesMeta: "@datadog/browser-rum": optional: true - checksum: 9f0f85960159373bf5fa72524cba4bac0626f652259ecfcdc3d0a72b8d081c30e8093fda04178f4c5eae1cabe520c50d13780ef14ede40a656b692c50aad2e0e + checksum: 8b571b0c6e39c8d63940f0120d64c7d88c95b489418ea1d24c4bb917489f92c52f42f5ede33f7b9c5f4aff26629b88729067905b727b547f327d51523b9dfd2e languageName: node linkType: hard @@ -19006,7 +19013,7 @@ dexie@latest: "@babel/preset-env": 7.22.5 "@babel/preset-react": 7.22.5 "@babel/preset-typescript": 7.22.5 - "@datadog/browser-logs": ^4.42.2 + "@datadog/browser-logs": ^4.43.0 "@datadog/browser-rum": ^4.42.2 "@emotion/eslint-plugin": ^11.11.0 "@emotion/react": 11.11.1 From 62106ce27d50a8af3f49e37554d372622c43583c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Jun 2023 16:19:56 +0000 Subject: [PATCH 121/137] chore(deps): Bump @wireapp/core from 40.5.3 to 40.5.4 (#15375) Bumps [@wireapp/core](https://github.com/wireapp/wire-web-packages) from 40.5.3 to 40.5.4. - [Commits](https://github.com/wireapp/wire-web-packages/compare/@wireapp/core@40.5.3...@wireapp/core@40.5.4) --- updated-dependencies: - dependency-name: "@wireapp/core" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 9ef9b581878..5ab5673f81a 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "@emotion/react": "11.11.1", "@types/eslint": "8.37.0", "@wireapp/avs": "9.2.15", - "@wireapp/core": "40.5.3", + "@wireapp/core": "40.5.4", "@wireapp/lru-cache": "3.8.1", "@wireapp/react-ui-kit": "9.7.5", "@wireapp/store-engine-dexie": "2.1.1", diff --git a/yarn.lock b/yarn.lock index 07bc714f450..94cdcc7252e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6213,9 +6213,9 @@ __metadata: languageName: node linkType: hard -"@wireapp/core@npm:40.5.3": - version: 40.5.3 - resolution: "@wireapp/core@npm:40.5.3" +"@wireapp/core@npm:40.5.4": + version: 40.5.4 + resolution: "@wireapp/core@npm:40.5.4" dependencies: "@wireapp/api-client": ^24.15.6 "@wireapp/commons": ^5.1.0 @@ -6234,7 +6234,7 @@ __metadata: logdown: 3.3.1 long: ^5.2.0 uuidjs: 4.2.13 - checksum: f40f7c7f369fbb922121f31d064e38850a18d7dd9be8953daa438313616055a6806095d207c564124023d4a8c800e757deec1f219be948cbb538379f72966125 + checksum: d8ed22d3696c5b979586664ff647d9dd98730fd99827504cf6cb2fbd27b900c4163de352cf9921417c3c76d286b7a2ab8a53ddc4f4829ed87aad9b781a1092df languageName: node linkType: hard @@ -19056,7 +19056,7 @@ dexie@latest: "@typescript-eslint/parser": ^5.59.11 "@wireapp/avs": 9.2.15 "@wireapp/copy-config": 2.1.1 - "@wireapp/core": 40.5.3 + "@wireapp/core": 40.5.4 "@wireapp/eslint-config": 2.2.2 "@wireapp/lru-cache": 3.8.1 "@wireapp/prettier-config": 0.6.0 From 88630adb00bf14e233cbafa52996b9768b5c5c6b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Jun 2023 16:20:32 +0000 Subject: [PATCH 122/137] chore(deps-dev): Bump sinon from 15.1.2 to 15.2.0 (#15378) Bumps [sinon](https://github.com/sinonjs/sinon) from 15.1.2 to 15.2.0. - [Release notes](https://github.com/sinonjs/sinon/releases) - [Changelog](https://github.com/sinonjs/sinon/blob/main/docs/changelog.md) - [Commits](https://github.com/sinonjs/sinon/compare/v15.1.2...v15.2.0) --- updated-dependencies: - dependency-name: sinon dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index 5ab5673f81a..e57a4d2c8c2 100644 --- a/package.json +++ b/package.json @@ -164,7 +164,7 @@ "redux-mock-store": "1.5.4", "seedrandom": "^3.0.5", "simple-git": "3.19.0", - "sinon": "15.1.2", + "sinon": "15.2.0", "snabbdom": "3.5.1", "style-loader": "^3.3.3", "stylelint": "14.16.1", diff --git a/yarn.lock b/yarn.lock index 94cdcc7252e..1e65970772b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4895,12 +4895,12 @@ __metadata: languageName: node linkType: hard -"@sinonjs/fake-timers@npm:^10.1.0": - version: 10.1.0 - resolution: "@sinonjs/fake-timers@npm:10.1.0" +"@sinonjs/fake-timers@npm:^10.3.0": + version: 10.3.0 + resolution: "@sinonjs/fake-timers@npm:10.3.0" dependencies: "@sinonjs/commons": ^3.0.0 - checksum: f8f7e23a136e32ba0128493207e4223f453e033471257a971acb43840927e738a0838004b1e4fa046279609762a2dd8d700606616e9264dc3891c4f8d45889a2 + checksum: 614d30cb4d5201550c940945d44c9e0b6d64a888ff2cd5b357f95ad6721070d6b8839cd10e15b76bf5e14af0bcc1d8f9ec00d49a46318f1f669a4bec1d7f3148 languageName: node linkType: hard @@ -16915,17 +16915,17 @@ dexie@latest: languageName: node linkType: hard -"sinon@npm:15.1.2": - version: 15.1.2 - resolution: "sinon@npm:15.1.2" +"sinon@npm:15.2.0": + version: 15.2.0 + resolution: "sinon@npm:15.2.0" dependencies: "@sinonjs/commons": ^3.0.0 - "@sinonjs/fake-timers": ^10.1.0 + "@sinonjs/fake-timers": ^10.3.0 "@sinonjs/samsam": ^8.0.0 diff: ^5.1.0 nise: ^5.1.4 supports-color: ^7.2.0 - checksum: 4484235fe4e84cc142cb8810a3a80f5b016178d739c1e2cc0b5eb1f0e05e05dd2dffaf53878826ac40743791acabb7265297affced727b0480c8bfe9abead8e8 + checksum: 1641b9af8a73ba57c73c9b6fd955a2d062a5d78cce719887869eca45faf33b0fd20cabfeffdfd856bb35bfbd3d49debb2d954ff6ae5e9825a3da5ff4f604ab6c languageName: node linkType: hard @@ -19161,7 +19161,7 @@ dexie@latest: redux-thunk: 2.4.2 seedrandom: ^3.0.5 simple-git: 3.19.0 - sinon: 15.1.2 + sinon: 15.2.0 snabbdom: 3.5.1 speakingurl: 14.0.1 style-loader: ^3.3.3 From efa6bfeb40b65f85d6bb43def621289062685a51 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Jun 2023 16:20:51 +0000 Subject: [PATCH 123/137] chore(deps-dev): Bump @types/react-dom from 18.2.5 to 18.2.6 (#15376) Bumps [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) from 18.2.5 to 18.2.6. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) --- updated-dependencies: - dependency-name: "@types/react-dom" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index e57a4d2c8c2..d2fad1a48f0 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,7 @@ "@types/platform": "1.3.4", "@types/prettier": "^2.7.3", "@types/react": "18.0.28", - "@types/react-dom": "18.2.5", + "@types/react-dom": "18.2.6", "@types/react-redux": "7.1.25", "@types/react-transition-group": "4.4.6", "@types/redux-mock-store": "1.0.3", diff --git a/yarn.lock b/yarn.lock index 1e65970772b..35ba0fe7974 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5467,12 +5467,12 @@ __metadata: languageName: node linkType: hard -"@types/react-dom@npm:18.2.5": - version: 18.2.5 - resolution: "@types/react-dom@npm:18.2.5" +"@types/react-dom@npm:18.2.6": + version: 18.2.6 + resolution: "@types/react-dom@npm:18.2.6" dependencies: "@types/react": "*" - checksum: c48209f8c60cb9054f3deee5365bc9fd6dadd8f901b67f1612a334057b2671518fc5145f14aca63ff276a926ccb5358308a6cf58ec700178f382bb3ebde96d91 + checksum: b56e42efab121a3a8013d2eb8c1688e6028a25ea6d33c4362d2846f0af3760b164b4d7c34846614024cfb8956cca70dd1743487f152e32ff89a00fe6fbd2be54 languageName: node linkType: hard @@ -19042,7 +19042,7 @@ dexie@latest: "@types/platform": 1.3.4 "@types/prettier": ^2.7.3 "@types/react": 18.0.28 - "@types/react-dom": 18.2.5 + "@types/react-dom": 18.2.6 "@types/react-redux": 7.1.25 "@types/react-transition-group": 4.4.6 "@types/redux-mock-store": 1.0.3 From 864efbdf5a51f68d3da16cf0d0afac3e8fb959fd Mon Sep 17 00:00:00 2001 From: Virgile <78490891+V-Gira@users.noreply.github.com> Date: Tue, 20 Jun 2023 18:22:35 +0200 Subject: [PATCH 124/137] fix: handle failure to send mls messages (WPB-2300) (#15369) * fix: handle failure to send mls messages (WPB-2300) * handle all errors as failure to send in message repo * apply correct style to errors and unsent messages * use unknown type and type guard for error --- .../CompleteFailureToSend/CompleteFailureToSend.tsx | 2 +- .../Message/ContentMessage/asset/index.tsx | 4 +++- src/script/conversation/MessageRepository.ts | 10 ++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/script/components/MessagesList/Message/ContentMessage/Warnings/CompleteFailureToSend/CompleteFailureToSend.tsx b/src/script/components/MessagesList/Message/ContentMessage/Warnings/CompleteFailureToSend/CompleteFailureToSend.tsx index 02b7d20d6d6..97b862992bd 100644 --- a/src/script/components/MessagesList/Message/ContentMessage/Warnings/CompleteFailureToSend/CompleteFailureToSend.tsx +++ b/src/script/components/MessagesList/Message/ContentMessage/Warnings/CompleteFailureToSend/CompleteFailureToSend.tsx @@ -57,7 +57,7 @@ export const CompleteFailureToSendWarning = ({isMessageFocused, onRetry, unreach

) : ( -

{t('messageCouldNotBeSentConnectivityIssues')}

+

{t('messageCouldNotBeSentConnectivityIssues')}

)}
)} {hasUsers && ( diff --git a/src/script/components/MessagesList/Message/MessageWrapper.tsx b/src/script/components/MessagesList/Message/MessageWrapper.tsx index 88fcdf9cd50..e589941d60c 100644 --- a/src/script/components/MessagesList/Message/MessageWrapper.tsx +++ b/src/script/components/MessagesList/Message/MessageWrapper.tsx @@ -29,6 +29,7 @@ import {OutgoingQuote} from 'src/script/conversation/MessageRepository'; import {ContentMessage} from 'src/script/entity/message/ContentMessage'; import {Text} from 'src/script/entity/message/Text'; import {QuoteEntity} from 'src/script/message/QuoteEntity'; +import {useKoSubscribableChildren} from 'Util/ComponentUtil'; import {t} from 'Util/LocalizerUtil'; import {CallMessage} from './CallMessage'; @@ -116,6 +117,7 @@ export const MessageWrapper: React.FC { const entries: ContextMenuEntry[] = []; @@ -245,6 +247,7 @@ export const MessageWrapper: React.FC ({ + isActiveGroupParticipant: true, + canRenameGroup: true, + displayName: 'Group Chat', + updateConversationName: jest.fn(), + isGroup: true, + userParticipants: new Array(participant), + serviceParticipants: new Array(service), + allUsersCount: 0, + isTeam: false, +}); + +describe('ConversationDetailsHeader', () => { + it('renders the display name when not editing', () => { + const props = getDefaultProps(); + const {getByText} = render(); + + const nameElement = getByText(props.displayName); + expect(nameElement).not.toBe(null); + }); + + it('allows editing the group name', () => { + const props = getDefaultProps(); + const {getByText, getByTestId} = render(); + + const nameElement = getByText(props.displayName); + fireEvent.click(nameElement); + + const textareaElement = getByTestId('enter-name') as HTMLInputElement; + expect(textareaElement).not.toBe(null); + }); + + it('calls updateConversationName when pressing Enter to save the renamed conversation', () => { + const props = getDefaultProps(); + const {getByText, getByTestId} = render(); + + const nameElement = getByText(props.displayName); + fireEvent.click(nameElement); + + const newGroupName = 'Group Name Update'; + const textareaElement = getByTestId('enter-name') as HTMLInputElement; + fireEvent.change(textareaElement, {target: {value: newGroupName}}); + fireEvent.keyDown(textareaElement, {key: 'Enter', code: 'Enter'}); + + expect(props.updateConversationName).toHaveBeenCalledTimes(1); + expect(props.updateConversationName).toHaveBeenCalledWith(newGroupName); + }); +}); From f8857db45f5c37b04caad7b4f1cadb34134643cb Mon Sep 17 00:00:00 2001 From: Virgile <78490891+V-Gira@users.noreply.github.com> Date: Thu, 22 Jun 2023 18:09:22 +0200 Subject: [PATCH 128/137] chore: bump core to 40.5.5 - revert SQSERVICES-2016 (#15382) --- package.json | 2 +- yarn.lock | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index 740a328ec61..74210f7bf05 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "@emotion/react": "11.11.1", "@types/eslint": "8.37.0", "@wireapp/avs": "9.2.15", - "@wireapp/core": "40.5.4", + "@wireapp/core": "40.5.5", "@wireapp/lru-cache": "3.8.1", "@wireapp/react-ui-kit": "9.7.5", "@wireapp/store-engine-dexie": "2.1.1", diff --git a/yarn.lock b/yarn.lock index 251fa2f5f6d..09d78a08c00 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6138,9 +6138,9 @@ __metadata: languageName: node linkType: hard -"@wireapp/api-client@npm:^24.15.6": - version: 24.15.6 - resolution: "@wireapp/api-client@npm:24.15.6" +"@wireapp/api-client@npm:^24.15.7": + version: 24.15.7 + resolution: "@wireapp/api-client@npm:24.15.7" dependencies: "@wireapp/commons": ^5.1.0 "@wireapp/priority-queue": ^2.1.1 @@ -6153,7 +6153,7 @@ __metadata: spark-md5: 3.0.2 tough-cookie: 4.1.3 ws: 8.11.0 - checksum: 9f14648dc839aff733c19b236f78f7563552639293ce9bd131d0a34ede2025b8ed51f22123c0efadf98454b6e4f23211dc605536105709fb741c47bbc7590a81 + checksum: 4e240b21a1862d9479e62500a8d8005e8dd89cffc3740e28d4733a7a246f17b044de216f2b8007a72a36358c43d082631a08b03df41c4efa5cec9ba90c22f376 languageName: node linkType: hard @@ -6206,11 +6206,11 @@ __metadata: languageName: node linkType: hard -"@wireapp/core@npm:40.5.4": - version: 40.5.4 - resolution: "@wireapp/core@npm:40.5.4" +"@wireapp/core@npm:40.5.5": + version: 40.5.5 + resolution: "@wireapp/core@npm:40.5.5" dependencies: - "@wireapp/api-client": ^24.15.6 + "@wireapp/api-client": ^24.15.7 "@wireapp/commons": ^5.1.0 "@wireapp/core-crypto": 0.11.0 "@wireapp/cryptobox": 12.8.0 @@ -6227,7 +6227,7 @@ __metadata: logdown: 3.3.1 long: ^5.2.0 uuidjs: 4.2.13 - checksum: d8ed22d3696c5b979586664ff647d9dd98730fd99827504cf6cb2fbd27b900c4163de352cf9921417c3c76d286b7a2ab8a53ddc4f4829ed87aad9b781a1092df + checksum: 2be52a978e02389443164dfb3dfe7777a72b4d83500fd5da6b76f03c7b853f8c50c15e72ec730afc0cb1d63442385562ca2088e3a2e27972d2ed6c4a7d06fb9d languageName: node linkType: hard @@ -19050,7 +19050,7 @@ dexie@latest: "@typescript-eslint/parser": ^5.59.11 "@wireapp/avs": 9.2.15 "@wireapp/copy-config": 2.1.1 - "@wireapp/core": 40.5.4 + "@wireapp/core": 40.5.5 "@wireapp/eslint-config": 2.2.2 "@wireapp/lru-cache": 3.8.1 "@wireapp/prettier-config": 0.6.0 From 1de52daab98447a711c5284c22e334930a642eea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jun 2023 16:14:20 +0000 Subject: [PATCH 129/137] chore(deps): Bump react-redux from 8.1.0 to 8.1.1 (#15383) Bumps [react-redux](https://github.com/reduxjs/react-redux) from 8.1.0 to 8.1.1. - [Release notes](https://github.com/reduxjs/react-redux/releases) - [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md) - [Commits](https://github.com/reduxjs/react-redux/compare/v8.1.0...v8.1.1) --- updated-dependencies: - dependency-name: react-redux dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 13 +++++-------- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index 74210f7bf05..c727f2f1b49 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "react-dom": "18.2.0", "react-error-boundary": "4.0.10", "react-intl": "6.4.4", - "react-redux": "8.1.0", + "react-redux": "8.1.1", "react-router": "6.13.0", "react-router-dom": "6.13.0", "react-transition-group": "4.4.5", diff --git a/yarn.lock b/yarn.lock index 09d78a08c00..9465c6e5790 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15978,9 +15978,9 @@ dexie@latest: languageName: node linkType: hard -"react-redux@npm:8.1.0": - version: 8.1.0 - resolution: "react-redux@npm:8.1.0" +"react-redux@npm:8.1.1": + version: 8.1.1 + resolution: "react-redux@npm:8.1.1" dependencies: "@babel/runtime": ^7.12.1 "@types/hoist-non-react-statics": ^3.3.1 @@ -15989,7 +15989,6 @@ dexie@latest: react-is: ^18.0.0 use-sync-external-store: ^1.0.0 peerDependencies: - "@reduxjs/toolkit": ^1 || ^2.0.0-beta.0 "@types/react": ^16.8 || ^17.0 || ^18.0 "@types/react-dom": ^16.8 || ^17.0 || ^18.0 react: ^16.8 || ^17.0 || ^18.0 @@ -15997,8 +15996,6 @@ dexie@latest: react-native: ">=0.59" redux: ^4 || ^5.0.0-beta.0 peerDependenciesMeta: - "@reduxjs/toolkit": - optional: true "@types/react": optional: true "@types/react-dom": @@ -16009,7 +16006,7 @@ dexie@latest: optional: true redux: optional: true - checksum: a6b9a07b056677b75596f3eeb56816c1cd611fc52e09ff03e9538cd050223c4f0187f9572b703c1b1d648ad115c5753894f8c709d0f58278e5652026963bf9d6 + checksum: 370676330727764d78f35e9c5a0ed0591d79482fe9b70fffcab4aa6bcccc6194e4f1ebd818b4b390351dea5557e70d3bd4d95d7a0ac9baa1f45d6bf2230ee713 languageName: node linkType: hard @@ -19144,7 +19141,7 @@ dexie@latest: react-dom: 18.2.0 react-error-boundary: 4.0.10 react-intl: 6.4.4 - react-redux: 8.1.0 + react-redux: 8.1.1 react-router: 6.13.0 react-router-dom: 6.13.0 react-transition-group: 4.4.5 From b79900934ff5e771fa852a646ea53201a2886162 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jun 2023 16:20:52 +0000 Subject: [PATCH 130/137] chore(deps-dev): Bump @typescript-eslint/parser from 5.59.11 to 5.60.0 (#15371) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.59.11 to 5.60.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.60.0/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 61 +++++++--------------------------------------------- 2 files changed, 9 insertions(+), 54 deletions(-) diff --git a/package.json b/package.json index c727f2f1b49..ec8248b955a 100644 --- a/package.json +++ b/package.json @@ -96,7 +96,7 @@ "@types/underscore": "1.11.5", "@types/webpack-env": "1.18.1", "@typescript-eslint/eslint-plugin": "^5.60.0", - "@typescript-eslint/parser": "^5.59.11", + "@typescript-eslint/parser": "^5.60.0", "@wireapp/copy-config": "2.1.1", "@wireapp/eslint-config": "2.2.2", "@wireapp/prettier-config": "0.6.0", diff --git a/yarn.lock b/yarn.lock index 9465c6e5790..a48cc865aeb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5688,20 +5688,20 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/parser@npm:^5.59.11": - version: 5.59.11 - resolution: "@typescript-eslint/parser@npm:5.59.11" +"@typescript-eslint/parser@npm:^5.60.0": + version: 5.60.0 + resolution: "@typescript-eslint/parser@npm:5.60.0" dependencies: - "@typescript-eslint/scope-manager": 5.59.11 - "@typescript-eslint/types": 5.59.11 - "@typescript-eslint/typescript-estree": 5.59.11 + "@typescript-eslint/scope-manager": 5.60.0 + "@typescript-eslint/types": 5.60.0 + "@typescript-eslint/typescript-estree": 5.60.0 debug: ^4.3.4 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 75eb6e60577690e3c9dd66fde83c9b4e9e5fd818fe9673e532052d5ba8fa21a5f7a69aad19be99e6ef5825e9f52036262b25e918e51f96e1dc26e862448d2d3a + checksum: 94e7931a5b356b16638b281b8e1d661f8b1660f0c75a323537f68b311dae91b7a575a0a019d4ea05a79cc5d42b5cb41cc367205691cdfd292ef96a3b66b1e58b languageName: node linkType: hard @@ -5725,16 +5725,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:5.59.11": - version: 5.59.11 - resolution: "@typescript-eslint/scope-manager@npm:5.59.11" - dependencies: - "@typescript-eslint/types": 5.59.11 - "@typescript-eslint/visitor-keys": 5.59.11 - checksum: f5c4e6d26da0a983b8f0c016f3ae63b3462442fe9c04d7510ca397461e13f6c48332b09b584258a7f336399fa7cd866f3ab55eaad89c5096a411c0d05d296475 - languageName: node - linkType: hard - "@typescript-eslint/scope-manager@npm:5.60.0": version: 5.60.0 resolution: "@typescript-eslint/scope-manager@npm:5.60.0" @@ -5776,13 +5766,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:5.59.11": - version: 5.59.11 - resolution: "@typescript-eslint/types@npm:5.59.11" - checksum: 4bb667571a7254f8c2b0dc3e37100e7290f9be14978722cc31c7204dfababd8a346bed4125e70dcafd15d07be386fb55bb9738bd86662ac10b98a6c964716396 - languageName: node - linkType: hard - "@typescript-eslint/types@npm:5.60.0": version: 5.60.0 resolution: "@typescript-eslint/types@npm:5.60.0" @@ -5826,24 +5809,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:5.59.11": - version: 5.59.11 - resolution: "@typescript-eslint/typescript-estree@npm:5.59.11" - dependencies: - "@typescript-eslint/types": 5.59.11 - "@typescript-eslint/visitor-keys": 5.59.11 - debug: ^4.3.4 - globby: ^11.1.0 - is-glob: ^4.0.3 - semver: ^7.3.7 - tsutils: ^3.21.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 516a828884e6939000aac17a27208088055670b0fd9bd22d137a7b2d359a8db9ce9cd09eedffed6f498f968be90ce3c2695a91d46abbd4049f87fd3b7bb986b5 - languageName: node - linkType: hard - "@typescript-eslint/typescript-estree@npm:5.60.0": version: 5.60.0 resolution: "@typescript-eslint/typescript-estree@npm:5.60.0" @@ -5934,16 +5899,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:5.59.11": - version: 5.59.11 - resolution: "@typescript-eslint/visitor-keys@npm:5.59.11" - dependencies: - "@typescript-eslint/types": 5.59.11 - eslint-visitor-keys: ^3.3.0 - checksum: 4894ec4b2b8da773b1f44398c836fcacb7f5a0c81f9404ecd193920e88d618091a7328659e0aa24697edda10479534db30bec7c8b0ba9fa0fce43f78222d5619 - languageName: node - linkType: hard - "@typescript-eslint/visitor-keys@npm:5.60.0": version: 5.60.0 resolution: "@typescript-eslint/visitor-keys@npm:5.60.0" @@ -19044,7 +18999,7 @@ dexie@latest: "@types/underscore": 1.11.5 "@types/webpack-env": 1.18.1 "@typescript-eslint/eslint-plugin": ^5.60.0 - "@typescript-eslint/parser": ^5.59.11 + "@typescript-eslint/parser": ^5.60.0 "@wireapp/avs": 9.2.15 "@wireapp/copy-config": 2.1.1 "@wireapp/core": 40.5.5 From 2ed645cdf62bff4202c16bec385fc0f4334d14dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jun 2023 16:23:05 +0000 Subject: [PATCH 131/137] chore(deps-dev): Bump caniuse-lite from 1.0.30001505 to 1.0.30001506 (#15384) Bumps [caniuse-lite](https://github.com/browserslist/caniuse-lite) from 1.0.30001505 to 1.0.30001506. - [Commits](https://github.com/browserslist/caniuse-lite/compare/1.0.30001505...1.0.30001506) --- updated-dependencies: - dependency-name: caniuse-lite dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index ec8248b955a..fce9374fe37 100644 --- a/package.json +++ b/package.json @@ -106,7 +106,7 @@ "autoprefixer": "^10.4.13", "babel-loader": "9.1.2", "babel-plugin-transform-import-meta": "^2.2.0", - "caniuse-lite": "^1.0.30001505", + "caniuse-lite": "^1.0.30001506", "cross-env": "7.0.3", "cspell": "6.31.1", "css-loader": "^6.8.1", diff --git a/yarn.lock b/yarn.lock index a48cc865aeb..e0824332162 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7540,10 +7540,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001505": - version: 1.0.30001505 - resolution: "caniuse-lite@npm:1.0.30001505" - checksum: 994a48945d797603e04641aa54d2368d1405feea249dfc51a1dbfc39cbaf51ab0df8ec03c944448289597bd7046ab5dbc6dff7ee3cbfec0e70a83b164395e805 +"caniuse-lite@npm:^1.0.30001506": + version: 1.0.30001506 + resolution: "caniuse-lite@npm:1.0.30001506" + checksum: 0a090745824622df146e2f6dde79c7f7920a899dec1b3a599d2ef9acf41cef5e179fd133bb59f2030286a4ea935f4230e05438d7394694c414e8ada345eb5268 languageName: node linkType: hard @@ -19018,7 +19018,7 @@ dexie@latest: babel-loader: 9.1.2 babel-plugin-transform-import-meta: ^2.2.0 beautiful-react-hooks: ^4.3.0 - caniuse-lite: ^1.0.30001505 + caniuse-lite: ^1.0.30001506 classnames: 2.3.2 copy-webpack-plugin: 11.0.0 core-js: 3.25.5 From f10e6573e07c29e85599e8183b8d4d9186bcb737 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jun 2023 16:25:14 +0000 Subject: [PATCH 132/137] chore(deps-dev): Bump webpack-hot-middleware from 2.25.3 to 2.25.4 (#15387) Bumps [webpack-hot-middleware](https://github.com/webpack-contrib/webpack-hot-middleware) from 2.25.3 to 2.25.4. - [Release notes](https://github.com/webpack-contrib/webpack-hot-middleware/releases) - [Changelog](https://github.com/webpack-contrib/webpack-hot-middleware/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/webpack-hot-middleware/compare/v2.25.3...v2.25.4) --- updated-dependencies: - dependency-name: webpack-hot-middleware dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index fce9374fe37..3ca176c22b8 100644 --- a/package.json +++ b/package.json @@ -179,7 +179,7 @@ "webpack": "5.87.0", "webpack-cli": "5.1.4", "webpack-dev-middleware": "6.1.1", - "webpack-hot-middleware": "2.25.3", + "webpack-hot-middleware": "2.25.4", "workbox-webpack-plugin": "6.6.1" }, "engines": { diff --git a/yarn.lock b/yarn.lock index e0824332162..eca34189e73 100644 --- a/yarn.lock +++ b/yarn.lock @@ -18715,14 +18715,14 @@ dexie@latest: languageName: node linkType: hard -"webpack-hot-middleware@npm:2.25.3": - version: 2.25.3 - resolution: "webpack-hot-middleware@npm:2.25.3" +"webpack-hot-middleware@npm:2.25.4": + version: 2.25.4 + resolution: "webpack-hot-middleware@npm:2.25.4" dependencies: ansi-html-community: 0.0.8 html-entities: ^2.1.0 strip-ansi: ^6.0.0 - checksum: 74fe5d15f3120742cf0f88a4af7e72f3678f2d05905676e37ab4e85c559f2c21d8aa72b0efe7c262993370bfc83fbe5a8d42561bcd10b370fac88640f87c463a + checksum: 4fa257e05ab03ffd9a25640a70a498feb1f055054c51e313a99d5e8a55e9d555ab50258ed4046687e067cdd90b460eab7c58131bf1577e8408c7ab66a3d49a5d languageName: node linkType: hard @@ -19128,7 +19128,7 @@ dexie@latest: webpack: 5.87.0 webpack-cli: 5.1.4 webpack-dev-middleware: 6.1.1 - webpack-hot-middleware: 2.25.3 + webpack-hot-middleware: 2.25.4 webrtc-adapter: 6.4.8 workbox-webpack-plugin: 6.6.1 zustand: 4.3.8 From 53fa0c020a1628e0e74a38dfbbdaca6f956cd458 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jun 2023 16:29:04 +0000 Subject: [PATCH 133/137] chore(deps-dev): Bump postcss-preset-env from 8.5.0 to 8.5.1 (#15385) Bumps [postcss-preset-env](https://github.com/csstools/postcss-plugins/tree/HEAD/plugin-packs/postcss-preset-env) from 8.5.0 to 8.5.1. - [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugin-packs/postcss-preset-env/CHANGELOG.md) - [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugin-packs/postcss-preset-env) --- updated-dependencies: - dependency-name: postcss-preset-env dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 117 ++++++++++++++++++++++++++++++++++++--------------- 2 files changed, 85 insertions(+), 34 deletions(-) diff --git a/package.json b/package.json index 3ca176c22b8..e028eb5805d 100644 --- a/package.json +++ b/package.json @@ -156,7 +156,7 @@ "postcss-import": "^15.1.0", "postcss-less": "6.0.0", "postcss-loader": "^7.3.3", - "postcss-preset-env": "^8.5.0", + "postcss-preset-env": "^8.5.1", "postcss-scss": "4.0.6", "prettier": "^2.8.8", "raf": "3.4.1", diff --git a/yarn.lock b/yarn.lock index eca34189e73..4b237ff1750 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3067,6 +3067,15 @@ __metadata: languageName: node linkType: hard +"@csstools/css-parser-algorithms@npm:^2.2.0": + version: 2.2.0 + resolution: "@csstools/css-parser-algorithms@npm:2.2.0" + peerDependencies: + "@csstools/css-tokenizer": ^2.1.1 + checksum: 9f1b6e902dadfc6ac37086c4b7073b16458186d9f42c534fdede8b0e7c2e3a832ea2d716baf32d4976c1fc2d8ad78f829916419faa73ecd10cc61c329121e683 + languageName: node + linkType: hard + "@csstools/css-tokenizer@npm:^2.1.1": version: 2.1.1 resolution: "@csstools/css-tokenizer@npm:2.1.1" @@ -3074,13 +3083,13 @@ __metadata: languageName: node linkType: hard -"@csstools/media-query-list-parser@npm:^2.1.0": - version: 2.1.0 - resolution: "@csstools/media-query-list-parser@npm:2.1.0" +"@csstools/media-query-list-parser@npm:^2.1.1": + version: 2.1.1 + resolution: "@csstools/media-query-list-parser@npm:2.1.1" peerDependencies: - "@csstools/css-parser-algorithms": ^2.1.1 + "@csstools/css-parser-algorithms": ^2.2.0 "@csstools/css-tokenizer": ^2.1.1 - checksum: 854379ad108673eb3a2031a9ca1d3b5976d3234f715b3fc2a0a67b057a80fb4b34ec4888cfa7675fbd31418e4b939128cdbbe7c75b635f639ddbbb0a22847b6d + checksum: bd97737fe92669fa6e26aab0b28a1b82e0bb3992e548bfeb1a45d56007f2a2dfee70c2bb9c2092703680fed505ae1a71254bc0e103f7486bb7724d6c7193fa71 languageName: node linkType: hard @@ -3217,30 +3226,30 @@ __metadata: languageName: node linkType: hard -"@csstools/postcss-media-minmax@npm:^1.0.3": - version: 1.0.3 - resolution: "@csstools/postcss-media-minmax@npm:1.0.3" +"@csstools/postcss-media-minmax@npm:^1.0.4": + version: 1.0.4 + resolution: "@csstools/postcss-media-minmax@npm:1.0.4" dependencies: "@csstools/css-calc": ^1.1.1 - "@csstools/css-parser-algorithms": ^2.1.1 + "@csstools/css-parser-algorithms": ^2.2.0 "@csstools/css-tokenizer": ^2.1.1 - "@csstools/media-query-list-parser": ^2.1.0 + "@csstools/media-query-list-parser": ^2.1.1 peerDependencies: postcss: ^8.4 - checksum: b6ac6c85d3542b4e7dbd86666f8314fbc755a8b5371d134e1f719bb44d6c70dc8b6fde452d5fa7119f6e468c6c897541d1cf9fa5d0945015410451e9bc3151d3 + checksum: c278cd4ca774a89069186c59eddc63676b56e184484b2d785727ade8236086856fb1573c7ddb386c3bd78629e20be70a410ac1f11e5d35512e81e29ffabacf38 languageName: node linkType: hard -"@csstools/postcss-media-queries-aspect-ratio-number-values@npm:^1.0.3": - version: 1.0.3 - resolution: "@csstools/postcss-media-queries-aspect-ratio-number-values@npm:1.0.3" +"@csstools/postcss-media-queries-aspect-ratio-number-values@npm:^1.0.4": + version: 1.0.4 + resolution: "@csstools/postcss-media-queries-aspect-ratio-number-values@npm:1.0.4" dependencies: - "@csstools/css-parser-algorithms": ^2.1.1 + "@csstools/css-parser-algorithms": ^2.2.0 "@csstools/css-tokenizer": ^2.1.1 - "@csstools/media-query-list-parser": ^2.1.0 + "@csstools/media-query-list-parser": ^2.1.1 peerDependencies: postcss: ^8.4 - checksum: f1157c6c679a6097e52a03153be22137c5de3ceb4075ee35f26eb65ad2d53c9aeeb8c7308c663ed8c3fd0d5cf368422ac4709159e90a62016cb8c6c0d9481add + checksum: 99125a673066ee6119dc25d8aecf7b9ed14a56eba7ae1e18a7aaee596860a35629f45b87d39bfa4f2fafbe505aa29213d7bde9150928d97e628b351b71f3fd00 languageName: node linkType: hard @@ -7372,6 +7381,20 @@ __metadata: languageName: node linkType: hard +"browserslist@npm:^4.21.9": + version: 4.21.9 + resolution: "browserslist@npm:4.21.9" + dependencies: + caniuse-lite: ^1.0.30001503 + electron-to-chromium: ^1.4.431 + node-releases: ^2.0.12 + update-browserslist-db: ^1.0.11 + bin: + browserslist: cli.js + checksum: 80d3820584e211484ad1b1a5cfdeca1dd00442f47be87e117e1dda34b628c87e18b81ae7986fa5977b3e6a03154f6d13cd763baa6b8bf5dd9dd19f4926603698 + languageName: node + linkType: hard + "bser@npm:2.1.1": version: 2.1.1 resolution: "bser@npm:2.1.1" @@ -7540,7 +7563,7 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001506": +"caniuse-lite@npm:^1.0.30001503, caniuse-lite@npm:^1.0.30001506": version: 1.0.30001506 resolution: "caniuse-lite@npm:1.0.30001506" checksum: 0a090745824622df146e2f6dde79c7f7920a899dec1b3a599d2ef9acf41cef5e179fd133bb59f2030286a4ea935f4230e05438d7394694c414e8ada345eb5268 @@ -8987,6 +9010,13 @@ dexie@latest: languageName: node linkType: hard +"electron-to-chromium@npm:^1.4.431": + version: 1.4.437 + resolution: "electron-to-chromium@npm:1.4.437" + checksum: 3453e4fc148305a2fc33a94f2e173a8ae3d22f54f121aa6f2beffdbb83ebfca249776297f9fa1957b7fccf896acad2f55c4c64eedff87902a3c720be874c5b5c + languageName: node + linkType: hard + "emittery@npm:^0.13.1": version: 0.13.1 resolution: "emittery@npm:0.13.1" @@ -13986,6 +14016,13 @@ dexie@latest: languageName: node linkType: hard +"node-releases@npm:^2.0.12": + version: 2.0.12 + resolution: "node-releases@npm:2.0.12" + checksum: b8c56db82c4642a0f443332b331a4396dae452a2ac5a65c8dbd93ef89ecb2fbb0da9d42ac5366d4764973febadca816cf7587dad492dce18d2a6b2af59cda260 + languageName: node + linkType: hard + "node-releases@npm:^2.0.8": version: 2.0.10 resolution: "node-releases@npm:2.0.10" @@ -14850,17 +14887,17 @@ dexie@latest: languageName: node linkType: hard -"postcss-custom-media@npm:^9.1.4": - version: 9.1.4 - resolution: "postcss-custom-media@npm:9.1.4" +"postcss-custom-media@npm:^9.1.5": + version: 9.1.5 + resolution: "postcss-custom-media@npm:9.1.5" dependencies: "@csstools/cascade-layer-name-parser": ^1.0.2 - "@csstools/css-parser-algorithms": ^2.1.1 + "@csstools/css-parser-algorithms": ^2.2.0 "@csstools/css-tokenizer": ^2.1.1 - "@csstools/media-query-list-parser": ^2.1.0 + "@csstools/media-query-list-parser": ^2.1.1 peerDependencies: postcss: ^8.4 - checksum: 8924e3f05a7972489768eaef0be6a2126f2decee50c055f343e2841d3d046304aee96a4bc794b2c36dae114e43214bbf0fac187f980705711e1ee0cc825bffb1 + checksum: 1c838c2c0ce0c5511902a4e2391d8db7afc82091d1ba213190a7ea9af341285600dd0ff3ffce549cad73fed5ccebf90ddda8bfe58d191c3c611bcc150da6b49c languageName: node linkType: hard @@ -15360,9 +15397,9 @@ dexie@latest: languageName: node linkType: hard -"postcss-preset-env@npm:^8.5.0": - version: 8.5.0 - resolution: "postcss-preset-env@npm:8.5.0" +"postcss-preset-env@npm:^8.5.1": + version: 8.5.1 + resolution: "postcss-preset-env@npm:8.5.1" dependencies: "@csstools/postcss-cascade-layers": ^3.0.1 "@csstools/postcss-color-function": ^2.2.3 @@ -15375,8 +15412,8 @@ dexie@latest: "@csstools/postcss-logical-float-and-clear": ^1.0.1 "@csstools/postcss-logical-resize": ^1.0.1 "@csstools/postcss-logical-viewport-units": ^1.0.3 - "@csstools/postcss-media-minmax": ^1.0.3 - "@csstools/postcss-media-queries-aspect-ratio-number-values": ^1.0.3 + "@csstools/postcss-media-minmax": ^1.0.4 + "@csstools/postcss-media-queries-aspect-ratio-number-values": ^1.0.4 "@csstools/postcss-nested-calc": ^2.0.2 "@csstools/postcss-normalize-display-values": ^2.0.1 "@csstools/postcss-oklab-function": ^2.2.3 @@ -15388,7 +15425,7 @@ dexie@latest: "@csstools/postcss-trigonometric-functions": ^2.1.1 "@csstools/postcss-unset-value": ^2.0.1 autoprefixer: ^10.4.14 - browserslist: ^4.21.5 + browserslist: ^4.21.9 css-blank-pseudo: ^5.0.2 css-has-pseudo: ^5.0.2 css-prefers-color-scheme: ^8.0.2 @@ -15398,7 +15435,7 @@ dexie@latest: postcss-color-functional-notation: ^5.1.0 postcss-color-hex-alpha: ^9.0.2 postcss-color-rebeccapurple: ^8.0.2 - postcss-custom-media: ^9.1.4 + postcss-custom-media: ^9.1.5 postcss-custom-properties: ^13.2.0 postcss-custom-selectors: ^7.1.3 postcss-dir-pseudo-class: ^7.0.2 @@ -15422,7 +15459,7 @@ dexie@latest: postcss-value-parser: ^4.2.0 peerDependencies: postcss: ^8.4 - checksum: 29e285c16580aecc5b584f82e3990b6161d3984e0b7eeb134107e80b59cad4282359c67aef02099a30496b21c10fa0be2c92e396ac0b9ff05fc4774ee86a10e9 + checksum: b7c8285149784e8a7a74dc3ca71250bba7cb9a23f46fb9031092cb717d99a61c05b6543fbcc7212e17bf03ce6790b8cce99c7d31f12a5846efa1dbc57add3c90 languageName: node linkType: hard @@ -18391,6 +18428,20 @@ dexie@latest: languageName: node linkType: hard +"update-browserslist-db@npm:^1.0.11": + version: 1.0.11 + resolution: "update-browserslist-db@npm:1.0.11" + dependencies: + escalade: ^3.1.1 + picocolors: ^1.0.0 + peerDependencies: + browserslist: ">= 4.21.0" + bin: + update-browserslist-db: cli.js + checksum: b98327518f9a345c7cad5437afae4d2ae7d865f9779554baf2a200fdf4bac4969076b679b1115434bd6557376bdd37ca7583d0f9b8f8e302d7d4cc1e91b5f231 + languageName: node + linkType: hard + "uri-js@npm:^4.2.2": version: 4.4.1 resolution: "uri-js@npm:4.4.1" @@ -19088,7 +19139,7 @@ dexie@latest: postcss-import: ^15.1.0 postcss-less: 6.0.0 postcss-loader: ^7.3.3 - postcss-preset-env: ^8.5.0 + postcss-preset-env: ^8.5.1 postcss-scss: 4.0.6 prettier: ^2.8.8 raf: 3.4.1 From d9abbb7ab57d5be3d3f0cd3987fb7568f7df3d1a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jun 2023 16:32:39 +0000 Subject: [PATCH 134/137] chore(deps-dev): Bump webpack from 5.87.0 to 5.88.0 (#15386) Bumps [webpack](https://github.com/webpack/webpack) from 5.87.0 to 5.88.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v5.87.0...v5.88.0) --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index e028eb5805d..3f55a7379ae 100644 --- a/package.json +++ b/package.json @@ -176,7 +176,7 @@ "ts-node": "10.9.1", "tsc-watch": "6.0.4", "typescript": "5.0.4", - "webpack": "5.87.0", + "webpack": "5.88.0", "webpack-cli": "5.1.4", "webpack-dev-middleware": "6.1.1", "webpack-hot-middleware": "2.25.4", diff --git a/yarn.lock b/yarn.lock index 4b237ff1750..576a7c166ed 100644 --- a/yarn.lock +++ b/yarn.lock @@ -18804,9 +18804,9 @@ dexie@latest: languageName: node linkType: hard -"webpack@npm:5.87.0": - version: 5.87.0 - resolution: "webpack@npm:5.87.0" +"webpack@npm:5.88.0": + version: 5.88.0 + resolution: "webpack@npm:5.88.0" dependencies: "@types/eslint-scope": ^3.7.3 "@types/estree": ^1.0.0 @@ -18837,7 +18837,7 @@ dexie@latest: optional: true bin: webpack: bin/webpack.js - checksum: b7d0e390f9d30627e303d54b17cb87b62f49ecffe2d35481f830679904993bae208e23748ffe0e6091b6dd4810562b2f2e88bb0f23b96515d74fb1e3c2898210 + checksum: 9fd1568b34ec2e99ba97c8509a15ab2576ec80c396e7015551ec814b24cfc11de173acba3e114dafe95f1a6d460781b09d6201e6a1fb15110e1d01a09f61a283 languageName: node linkType: hard @@ -19176,7 +19176,7 @@ dexie@latest: uint32: 0.2.1 underscore: 1.13.6 uuidjs: 4.2.13 - webpack: 5.87.0 + webpack: 5.88.0 webpack-cli: 5.1.4 webpack-dev-middleware: 6.1.1 webpack-hot-middleware: 2.25.4 From 4c5d6f668a460d73cba86ad944a2406d6e485938 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 25 Jun 2023 15:08:15 +0000 Subject: [PATCH 135/137] chore(deps): Bump react-router-dom from 6.13.0 to 6.14.0 (#15389) Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.13.0 to 6.14.0. - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@6.14.0/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.14.0/packages/react-router-dom) --- updated-dependencies: - dependency-name: react-router-dom dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 32 +++++++++++++++++++++++++------- 2 files changed, 26 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 3f55a7379ae..9ab3c3be0ac 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "react-intl": "6.4.4", "react-redux": "8.1.1", "react-router": "6.13.0", - "react-router-dom": "6.13.0", + "react-router-dom": "6.14.0", "react-transition-group": "4.4.5", "redux": "4.2.1", "redux-logdown": "1.0.4", diff --git a/yarn.lock b/yarn.lock index 576a7c166ed..ef9c8c056c8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4805,6 +4805,13 @@ __metadata: languageName: node linkType: hard +"@remix-run/router@npm:1.7.0": + version: 1.7.0 + resolution: "@remix-run/router@npm:1.7.0" + checksum: 80cab2fda9e4b9047c991e9b05b8bda8afa2adf7b85c785d7e6f593a399eb264d6a74302438babc81833b5d304eae0b22832f27552b1601e2ca9001d94b8e174 + languageName: node + linkType: hard + "@rollup/plugin-babel@npm:^5.2.0": version: 5.2.2 resolution: "@rollup/plugin-babel@npm:5.2.2" @@ -16002,16 +16009,16 @@ dexie@latest: languageName: node linkType: hard -"react-router-dom@npm:6.13.0": - version: 6.13.0 - resolution: "react-router-dom@npm:6.13.0" +"react-router-dom@npm:6.14.0": + version: 6.14.0 + resolution: "react-router-dom@npm:6.14.0" dependencies: - "@remix-run/router": 1.6.3 - react-router: 6.13.0 + "@remix-run/router": 1.7.0 + react-router: 6.14.0 peerDependencies: react: ">=16.8" react-dom: ">=16.8" - checksum: f51131063c2d5e127b6b3f3f813c6d4988d0f37694a06697dc9d4a4d9d3825e2a4487ec9b81a1d356eb269018814d884ffc2e3d9ff056a46ae59c99c9e7e1086 + checksum: 66800b8779f5ae9f8b8e1f41e25599519a40c532e020a8c1450e1645d2c8cc8351e51ed0f2516584681e9a509c6c40f629f2d80663123e132c68022c0edced03 languageName: node linkType: hard @@ -16026,6 +16033,17 @@ dexie@latest: languageName: node linkType: hard +"react-router@npm:6.14.0": + version: 6.14.0 + resolution: "react-router@npm:6.14.0" + dependencies: + "@remix-run/router": 1.7.0 + peerDependencies: + react: ">=16.8" + checksum: 50a941746d12e81cea5495505c1afbcd099cc7d497624b013454cfd5a360d9403578f8fb3df17973bf775fbff91cb76477448023d537215e6aa71a8b85ae95bd + languageName: node + linkType: hard + "react-select@npm:5.7.3": version: 5.7.3 resolution: "react-select@npm:5.7.3" @@ -19149,7 +19167,7 @@ dexie@latest: react-intl: 6.4.4 react-redux: 8.1.1 react-router: 6.13.0 - react-router-dom: 6.13.0 + react-router-dom: 6.14.0 react-transition-group: 4.4.5 redux: 4.2.1 redux-devtools-extension: 2.13.9 From 0a012bb5818f95c22d11c417ec3b6ed6ca02b651 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 25 Jun 2023 15:10:53 +0000 Subject: [PATCH 136/137] chore(deps-dev): Bump caniuse-lite from 1.0.30001506 to 1.0.30001507 (#15391) Bumps [caniuse-lite](https://github.com/browserslist/caniuse-lite) from 1.0.30001506 to 1.0.30001507. - [Commits](https://github.com/browserslist/caniuse-lite/compare/1.0.30001506...1.0.30001507) --- updated-dependencies: - dependency-name: caniuse-lite dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 9ab3c3be0ac..b625ecdca59 100644 --- a/package.json +++ b/package.json @@ -106,7 +106,7 @@ "autoprefixer": "^10.4.13", "babel-loader": "9.1.2", "babel-plugin-transform-import-meta": "^2.2.0", - "caniuse-lite": "^1.0.30001506", + "caniuse-lite": "^1.0.30001507", "cross-env": "7.0.3", "cspell": "6.31.1", "css-loader": "^6.8.1", diff --git a/yarn.lock b/yarn.lock index ef9c8c056c8..b8fa8547b1d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7570,13 +7570,20 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001503, caniuse-lite@npm:^1.0.30001506": +"caniuse-lite@npm:^1.0.30001503": version: 1.0.30001506 resolution: "caniuse-lite@npm:1.0.30001506" checksum: 0a090745824622df146e2f6dde79c7f7920a899dec1b3a599d2ef9acf41cef5e179fd133bb59f2030286a4ea935f4230e05438d7394694c414e8ada345eb5268 languageName: node linkType: hard +"caniuse-lite@npm:^1.0.30001507": + version: 1.0.30001507 + resolution: "caniuse-lite@npm:1.0.30001507" + checksum: 7044172bdf65140c927cdaaff50368a97676f06a9fd8b515c046613bdf52cb769e9efb832ee491b8f8cc21f82c15f154a896efbab690f431bb064c95f3a2b7a8 + languageName: node + linkType: hard + "catharsis@npm:^0.9.0": version: 0.9.0 resolution: "catharsis@npm:0.9.0" @@ -19087,7 +19094,7 @@ dexie@latest: babel-loader: 9.1.2 babel-plugin-transform-import-meta: ^2.2.0 beautiful-react-hooks: ^4.3.0 - caniuse-lite: ^1.0.30001506 + caniuse-lite: ^1.0.30001507 classnames: 2.3.2 copy-webpack-plugin: 11.0.0 core-js: 3.25.5 From af8d8f14dc8f57d3277c2b9f8b5c67d061aaaeee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 25 Jun 2023 15:13:33 +0000 Subject: [PATCH 137/137] chore(deps): Bump react-router from 6.13.0 to 6.14.0 (#15390) Bumps [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) from 6.13.0 to 6.14.0. - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/react-router@6.14.0/packages/react-router/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router@6.14.0/packages/react-router) --- updated-dependencies: - dependency-name: react-router dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 20 +------------------- 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/package.json b/package.json index b625ecdca59..099303fcce0 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "react-error-boundary": "4.0.10", "react-intl": "6.4.4", "react-redux": "8.1.1", - "react-router": "6.13.0", + "react-router": "6.14.0", "react-router-dom": "6.14.0", "react-transition-group": "4.4.5", "redux": "4.2.1", diff --git a/yarn.lock b/yarn.lock index b8fa8547b1d..9039b1ff3f0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4798,13 +4798,6 @@ __metadata: languageName: node linkType: hard -"@remix-run/router@npm:1.6.3": - version: 1.6.3 - resolution: "@remix-run/router@npm:1.6.3" - checksum: f6968b1626af930b42f8cb5a044f05e4fbce05af6c7947beb1704e45c9570944e3be16ee008b185e5e13baac97948299eb55341b2a359c3e2e54b9d6646ae167 - languageName: node - linkType: hard - "@remix-run/router@npm:1.7.0": version: 1.7.0 resolution: "@remix-run/router@npm:1.7.0" @@ -16029,17 +16022,6 @@ dexie@latest: languageName: node linkType: hard -"react-router@npm:6.13.0": - version: 6.13.0 - resolution: "react-router@npm:6.13.0" - dependencies: - "@remix-run/router": 1.6.3 - peerDependencies: - react: ">=16.8" - checksum: 31a187005d05e063c59324564a283cd28052eaf848ad446c87658f4fc48fa9543329fe8a14d7be14d9bbf62410d383f8cf1cf13898a838bf9c1e3201fe93384c - languageName: node - linkType: hard - "react-router@npm:6.14.0": version: 6.14.0 resolution: "react-router@npm:6.14.0" @@ -19173,7 +19155,7 @@ dexie@latest: react-error-boundary: 4.0.10 react-intl: 6.4.4 react-redux: 8.1.1 - react-router: 6.13.0 + react-router: 6.14.0 react-router-dom: 6.14.0 react-transition-group: 4.4.5 redux: 4.2.1