From 9136332f42b1b867ef6309b0bd76762117d31a6c Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 22 Jul 2025 13:25:38 +0000 Subject: [PATCH 1/5] Upgrade dependency to matrix-js-sdk@37.12.0-rc.0 --- package.json | 2 +- yarn.lock | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index fef29cd1f5..d00c6cf32b 100644 --- a/package.json +++ b/package.json @@ -134,7 +134,7 @@ "maplibre-gl": "^5.0.0", "matrix-encrypt-attachment": "^1.0.3", "matrix-events-sdk": "0.0.1", - "matrix-js-sdk": "github:matrix-org/matrix-js-sdk#develop", + "matrix-js-sdk": "37.12.0-rc.0", "matrix-widget-api": "^1.10.0", "memoize-one": "^6.0.0", "mime": "^4.0.4", diff --git a/yarn.lock b/yarn.lock index 71337815aa..579fb24dff 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4551,13 +4551,14 @@ "@vector-im/matrix-wysiwyg-wasm@link:../../../../Library/Caches/Yarn/v6/npm-@vector-im-matrix-wysiwyg-2.38.4-fb0001dea01010a1e3ffc7042596e2d001ce9389-integrity/node_modules/bindings/wysiwyg-wasm": version "0.0.0" + uid "" "@vector-im/matrix-wysiwyg@2.38.4": version "2.38.4" resolved "https://registry.yarnpkg.com/@vector-im/matrix-wysiwyg/-/matrix-wysiwyg-2.38.4.tgz#fb0001dea01010a1e3ffc7042596e2d001ce9389" integrity sha512-X6ky+1cf33SPdEVd6iTmOKfZZ2mDJv9cz3sHtDhuclS6uitK3QE8td/pmGqBj4ek2Ia4y0mnU61LfxvMry1SMA== dependencies: - "@vector-im/matrix-wysiwyg-wasm" "link:../../../../Library/Caches/Yarn/v6/npm-@vector-im-matrix-wysiwyg-2.38.4-fb0001dea01010a1e3ffc7042596e2d001ce9389-integrity/node_modules/bindings/wysiwyg-wasm" + "@vector-im/matrix-wysiwyg-wasm" "link:../../../.cache/yarn/v6/npm-@vector-im-matrix-wysiwyg-2.38.4-fb0001dea01010a1e3ffc7042596e2d001ce9389-integrity/node_modules/bindings/wysiwyg-wasm" "@vitest/expect@3.0.9": version "3.0.9" @@ -10826,9 +10827,10 @@ matrix-events-sdk@0.0.1: resolved "https://registry.yarnpkg.com/matrix-events-sdk/-/matrix-events-sdk-0.0.1.tgz#c8c38911e2cb29023b0bbac8d6f32e0de2c957dd" integrity sha512-1QEOsXO+bhyCroIe2/A5OwaxHvBm7EsSQ46DEDn8RBIfQwN5HWBpFvyWWR4QY0KHPPnnJdI99wgRiAl7Ad5qaA== -"matrix-js-sdk@github:matrix-org/matrix-js-sdk#develop": - version "37.11.0" - resolved "https://codeload.github.com/matrix-org/matrix-js-sdk/tar.gz/f8f1bf38373a944f12a739a301c1770c7bf08265" +matrix-js-sdk@37.12.0-rc.0: + version "37.12.0-rc.0" + resolved "https://registry.yarnpkg.com/matrix-js-sdk/-/matrix-js-sdk-37.12.0-rc.0.tgz#8c439319298a4a74999c9f1cc1222d2799d0f718" + integrity sha512-HFghuEEBgV/ljs34w/Nyqc/E7i1yddopkJdxp6EuerZEeDcJVMi6PbApzLBmbGiRReVzeplmP6yb71g90kTSWw== dependencies: "@babel/runtime" "^7.12.5" "@matrix-org/matrix-sdk-crypto-wasm" "^15.0.0" From acb3d31a076d42e0e3e4149295dcf4f9a3e9434e Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 22 Jul 2025 13:29:36 +0000 Subject: [PATCH 2/5] v1.11.107-rc.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d00c6cf32b..5de87a38df 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "element-web", - "version": "1.11.106", + "version": "1.11.107-rc.0", "description": "Element: the future of secure communication", "author": "New Vector Ltd.", "repository": { From db5c69e22899f62ff6f2b5cb9f8a733b61c6cf54 Mon Sep 17 00:00:00 2001 From: ElementRobot Date: Mon, 28 Jul 2025 09:58:20 +0100 Subject: [PATCH 3/5] Fix e2e shield being invisible in white mode for encrypted room (#30408) (#30411) Co-authored-by: Florian Duros --- playwright/e2e/crypto/crypto.spec.ts | 2 ++ .../composer-e2e-icon-normal-linux.png | Bin 0 -> 268 bytes res/css/views/rooms/_E2EIcon.pcss | 8 +++++++- 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 playwright/snapshots/crypto/crypto.spec.ts/composer-e2e-icon-normal-linux.png diff --git a/playwright/e2e/crypto/crypto.spec.ts b/playwright/e2e/crypto/crypto.spec.ts index d69af46a72..6d01435546 100644 --- a/playwright/e2e/crypto/crypto.spec.ts +++ b/playwright/e2e/crypto/crypto.spec.ts @@ -158,6 +158,8 @@ test.describe("Cryptography", function () { await page.getByRole("textbox", { name: "Send a message…" }).press("Enter"); await checkDMRoom(page); const bobRoomId = await bobJoin(page, bob); + await expect(page.locator(".mx_MessageComposer_e2eIcon")).toMatchScreenshot("composer-e2e-icon-normal.png"); + await testMessages(page, bob, bobRoomId); await verify(app, bob); diff --git a/playwright/snapshots/crypto/crypto.spec.ts/composer-e2e-icon-normal-linux.png b/playwright/snapshots/crypto/crypto.spec.ts/composer-e2e-icon-normal-linux.png new file mode 100644 index 0000000000000000000000000000000000000000..70a3795fc9c05c5d80e8d6ca898e3ac87efd0f20 GIT binary patch literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^JRmj)6Oa`0mJkI}2R&UJLn`L%nRu3~iGk<1=@ply z{4Ps37;vku?3j08a_p+${+lbkOI}>DW|2L$Z=u4k14iTJ&nO#H=jIU+OGMzQONjubRbFXdo3m zjhEB&*lpjvYeeE>ul%<@Uis!5yT>M`_x2As85sWmmwP^AJJ2(1AkQ!}%za?E`ugYp QsX!41Pgg&ebxsLQ0BcWgbpQYW literal 0 HcmV?d00001 diff --git a/res/css/views/rooms/_E2EIcon.pcss b/res/css/views/rooms/_E2EIcon.pcss index aea1b942d1..024b6f637a 100644 --- a/res/css/views/rooms/_E2EIcon.pcss +++ b/res/css/views/rooms/_E2EIcon.pcss @@ -52,7 +52,13 @@ Please see LICENSE files in the repository root for full details. .mx_E2EIcon_normal::after { mask-image: url("$(res)/img/e2e/normal.svg"); - background-color: white; + background-color: var(--cpd-color-icon-tertiary); +} + +.mx_E2EIcon_verified { + .mx_E2EIcon_normal::after { + background-color: white; + } } .mx_E2EIcon_verified::after { From d1f62317bab69ee3b8a35eff17684d2875edc360 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 29 Jul 2025 13:01:13 +0000 Subject: [PATCH 4/5] Upgrade dependency to matrix-js-sdk@37.12.0 --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 5de87a38df..ffdc644398 100644 --- a/package.json +++ b/package.json @@ -134,7 +134,7 @@ "maplibre-gl": "^5.0.0", "matrix-encrypt-attachment": "^1.0.3", "matrix-events-sdk": "0.0.1", - "matrix-js-sdk": "37.12.0-rc.0", + "matrix-js-sdk": "37.12.0", "matrix-widget-api": "^1.10.0", "memoize-one": "^6.0.0", "mime": "^4.0.4", diff --git a/yarn.lock b/yarn.lock index 579fb24dff..302c688927 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4549,7 +4549,7 @@ classnames "^2.5.1" vaul "^1.0.0" -"@vector-im/matrix-wysiwyg-wasm@link:../../../../Library/Caches/Yarn/v6/npm-@vector-im-matrix-wysiwyg-2.38.4-fb0001dea01010a1e3ffc7042596e2d001ce9389-integrity/node_modules/bindings/wysiwyg-wasm": +"@vector-im/matrix-wysiwyg-wasm@link:../../../.cache/yarn/v6/npm-@vector-im-matrix-wysiwyg-2.38.4-fb0001dea01010a1e3ffc7042596e2d001ce9389-integrity/node_modules/bindings/wysiwyg-wasm": version "0.0.0" uid "" @@ -10827,10 +10827,10 @@ matrix-events-sdk@0.0.1: resolved "https://registry.yarnpkg.com/matrix-events-sdk/-/matrix-events-sdk-0.0.1.tgz#c8c38911e2cb29023b0bbac8d6f32e0de2c957dd" integrity sha512-1QEOsXO+bhyCroIe2/A5OwaxHvBm7EsSQ46DEDn8RBIfQwN5HWBpFvyWWR4QY0KHPPnnJdI99wgRiAl7Ad5qaA== -matrix-js-sdk@37.12.0-rc.0: - version "37.12.0-rc.0" - resolved "https://registry.yarnpkg.com/matrix-js-sdk/-/matrix-js-sdk-37.12.0-rc.0.tgz#8c439319298a4a74999c9f1cc1222d2799d0f718" - integrity sha512-HFghuEEBgV/ljs34w/Nyqc/E7i1yddopkJdxp6EuerZEeDcJVMi6PbApzLBmbGiRReVzeplmP6yb71g90kTSWw== +matrix-js-sdk@37.12.0: + version "37.12.0" + resolved "https://registry.yarnpkg.com/matrix-js-sdk/-/matrix-js-sdk-37.12.0.tgz#720d8b676e82ee809b227e667ce5fdd63aa8c099" + integrity sha512-2JSTMtvACE4egrBPp0ZQ7fSxBXcX6xuHcQSjcoBiBxFL7W0SZCl4qsNl30pBshDTe5wARAByzIHEMv6bGVKKNA== dependencies: "@babel/runtime" "^7.12.5" "@matrix-org/matrix-sdk-crypto-wasm" "^15.0.0" From 5a4b5418cce5fff99b32654e92b5eee496d7b48a Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 29 Jul 2025 13:04:43 +0000 Subject: [PATCH 5/5] v1.11.107 --- CHANGELOG.md | 19 +++++++++++++++++++ package.json | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7f3c4febd..e578d777f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +Changes in [1.11.107](https://github.com/element-hq/element-web/releases/tag/v1.11.107) (2025-07-29) +==================================================================================================== +## ✨ Features + +* Message preview should show tooltip with the full message on hover ([#30265](https://github.com/element-hq/element-web/pull/30265)). Contributed by @MidhunSureshR. +* Support rendering notification badges on platforms that do their own icon overlays ([#30315](https://github.com/element-hq/element-web/pull/30315)). Contributed by @Half-Shot. +* Add SubscriptionViewModel base class ([#30297](https://github.com/element-hq/element-web/pull/30297)). Contributed by @dbkr. +* Enhancement: Save image on CTRL+S ([#30330](https://github.com/element-hq/element-web/pull/30330)). Contributed by @ioalexander. +* Add quote functionality to MessageContextMenu (#29893) ([#30323](https://github.com/element-hq/element-web/pull/30323)). Contributed by @AlirezaMrtz. +* Initial structure for shared component views ([#30216](https://github.com/element-hq/element-web/pull/30216)). Contributed by @dbkr. + +## 🐛 Bug Fixes + +* [Backport staging] Fix e2e shield being invisible in white mode for encrypted room ([#30411](https://github.com/element-hq/element-web/pull/30411)). Contributed by @RiotRobot. +* Force ED titlebar color for new room list ([#30332](https://github.com/element-hq/element-web/pull/30332)). Contributed by @florianduros. +* Add a background color to left panel for macos titlebar in element desktop ([#30328](https://github.com/element-hq/element-web/pull/30328)). Contributed by @florianduros. +* Fix: Prevent page refresh on Enter key in right panel member search ([#30312](https://github.com/element-hq/element-web/pull/30312)). Contributed by @AlirezaMrtz. + + Changes in [1.11.106](https://github.com/element-hq/element-web/releases/tag/v1.11.106) (2025-07-15) ==================================================================================================== ## ✨ Features diff --git a/package.json b/package.json index ffdc644398..2361007e77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "element-web", - "version": "1.11.107-rc.0", + "version": "1.11.107", "description": "Element: the future of secure communication", "author": "New Vector Ltd.", "repository": {