Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1152 upgrade merge react sdk #1161

Open
wants to merge 10,000 commits into
base: develop_tchap
Choose a base branch
from
Open
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Oct 4, 2024

  1. Remove more bits surrounding hmr

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    3628569 View commit details
    Browse the repository at this point in the history
  2. Add support for rendering media captions (#43)

    * Add support for rendering media captions
    
    * Run prettier
    
    * Deduplicate body props
    
    * Add basic test
    
    * Fix import order in test
    
    * Fix test?
    tulir authored Oct 4, 2024
    Configuration menu
    Copy the full SHA
    5fbc5af View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2024

  1. Configuration menu
    Copy the full SHA
    a0cb947 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. Remove usage of deprecated CryptoEvents (#126)

    * Remove usage of `CryptoEvent.DeviceVerificationChanged`
    
    * Remove usage of `CryptoEvent.KeySignatureUploadFailure`
    
    * Remove usage of `CryptoEvent.Warning`
    
    * Merge `CryptoEvent.DevicesUpdated` and `CryptoEvent.WillUpdateDevices` behaviour
    florianduros authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    31bd10e View commit details
    Browse the repository at this point in the history
  2. Refactor stores and their relationship to the MatrixClientPeg (#124)

    * Refactor stores and their relationship to the MatrixClientPeg
    
    to avoid import cycles and webpack weirdness
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    197168b View commit details
    Browse the repository at this point in the history
  3. Iterate

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 8, 2024
    Configuration menu
    Copy the full SHA
    2a33d55 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #28152 from element-hq/t3chguy/remove-hmr

    Remove broken HMR support
    t3chguy authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    8720a7c View commit details
    Browse the repository at this point in the history
  5. Deduplicate media & voip icons using Compound Design Tokens (#129)

    * Deduplicate media & voip icons using Compound Design Tokens
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update tests
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    df4a223 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b318c40 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7cb80d5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8d77b2a View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. Improve logging in SessionLock (#133)

    some more diagnostics for this, to help resolve
    https://github.com/element-hq/element-desktop/issues/1495
    richvdh authored Oct 9, 2024
    Configuration menu
    Copy the full SHA
    b79343d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    450ad1d View commit details
    Browse the repository at this point in the history
  3. Fix vertical overflow on the mobile register screen (#137)

    * Fix vertical overflow on the mobile register screen
    
    * Change to border-box to include padding in height so the register button can be scrolled fully in to view.
    langleyd authored Oct 9, 2024
    Configuration menu
    Copy the full SHA
    a2cee6b View commit details
    Browse the repository at this point in the history
  4. Fix bell icons on room list hover being black squares (#135)

    * Fix bell icons on room list hover being black squares
    
    The EchoStore wasn't being set up and therefore missed the client being
    injected.
    
    Patch from @t3chguy.
    
    * Fix tests
    
    ...by mocking out createClient so it doesn't try to start a real client.
    
    * More mocks
    
    * Don't need this anymore either
    dbkr authored Oct 9, 2024
    Configuration menu
    Copy the full SHA
    5f113c4 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2024

  1. Configuration menu
    Copy the full SHA
    4e5cf1b View commit details
    Browse the repository at this point in the history
  2. Revert #124 and #135 (#139)

    This seems to be causing a lot of weirdness, presumably because there's
    another missing thing like in #135, but I don't know what it might be and
    it feels like it might take a while to find. Backing these changes out
    to fix develop while we sort it out.
    
    Fixes element-hq/element-web#28179
    dbkr authored Oct 10, 2024
    Configuration menu
    Copy the full SHA
    3a59556 View commit details
    Browse the repository at this point in the history
  3. Upgrade emojibase-bindings and remove local handling of emoticon vari…

    …ations (#127)
    
    * Updgrade emojibase-bindings and remove local handling of emoticon variations
    
    * bump bindings to fix issue of mission emojis with version == 0
    
    * update lockfile
    
    * test emoji variation in RTE
    langleyd authored Oct 10, 2024
    Configuration menu
    Copy the full SHA
    c71dc6b View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2024

  1. Fix flaky crypto playwright tests (#143)

    * Playwright: wait for sync to arrive after joining rooms
    
    Fix a couple of flaky tests which were not waiting for the /sync to complete
    after joining a room.
    
    * Playwright: add a comment about a broken helper
    
    * playwright: fix more flakiness in the shields test
    
    This bit can take a while as well.
    
    * Update playwright/pages/client.ts
    
    Co-authored-by: R Midhun Suresh <[email protected]>
    
    * Add a timeout to `awaitRoomMembership`
    
    ---------
    
    Co-authored-by: R Midhun Suresh <[email protected]>
    richvdh and MidhunSureshR authored Oct 11, 2024
    Configuration menu
    Copy the full SHA
    771d4a8 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2024

  1. Pin to Ubuntu 22 (#145)

    Ubuntu 24 seems to have slightly different kerning / aliasing so we'll
    need to update all out screenshots. In the meantime, pin to 22.
    dbkr authored Oct 14, 2024
    Configuration menu
    Copy the full SHA
    03186e4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3bc0439 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    786a028 View commit details
    Browse the repository at this point in the history
  4. Upgrade to latest compound-web package (#84)

    * Upgrade to latest compound-web package
    
    * Use a custom render function for jest tests
    
    This way we don't need to manually wrap our components with
    <TooltipProvider>
    
    * Pin wrap-ansi to fix broken yarn install
    
    * Add playwright helper to find tooltip from element
    
    and use it in the failing test
    
    * Exclude floating-ui divs/spans from axe testing
    
    This is rendered outside .MatrixChat by compound and contains all the
    tooltips.
    
    * Wrap outermost components with TooltipProvider
    
    * Remove onChange and use onSelect for toggle
    
    * Fix jest tests and update snapshots
    
    * Use vector-im/matrix-wysiwig
    
    ---------
    
    Co-authored-by: Michael Telatynski <[email protected]>
    MidhunSureshR and t3chguy authored Oct 14, 2024
    Configuration menu
    Copy the full SHA
    91e84f7 View commit details
    Browse the repository at this point in the history
  5. Remove feature_dehydration (#138)

    * Remove feature_dehydration
    
    * Remove remaining old dehydration
    
    * Update test
    florianduros authored Oct 14, 2024
    Configuration menu
    Copy the full SHA
    63986f8 View commit details
    Browse the repository at this point in the history
  6. Deduplicate icons using Compound Design Tokens (#150)

    * Deduplicate icons using Compound Design Tokens
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update snapshot
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 14, 2024
    Configuration menu
    Copy the full SHA
    d770e2a View commit details
    Browse the repository at this point in the history
  7. Update design of files list in right panel (#144)

    * Update design of files list in right panel
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Make i18n script happier
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Improve coverage
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Improve coverage
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Improve coverage
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Discard changes to src/components/structures/MessagePanel.tsx
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update tests
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Fix flaky screenshot test
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update screenshot
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 14, 2024
    Configuration menu
    Copy the full SHA
    0750625 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2024

  1. Replace MatrixClient.userHasCrossSigningKeys by `MatrixClient.getCr…

    …ypto.userHasCrossSigningKeys` (#148)
    florianduros authored Oct 15, 2024
    Configuration menu
    Copy the full SHA
    503d900 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bce0263 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b428b4a View commit details
    Browse the repository at this point in the history
  4. Update to Compound v7 (#151)

    * Update to Compound v7
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update snapshots
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update test
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 15, 2024
    Configuration menu
    Copy the full SHA
    d9e943d View commit details
    Browse the repository at this point in the history
  5. [create-pull-request] automated change (#51)

    Co-authored-by: dbkr <[email protected]>
    Co-authored-by: Michael Telatynski <[email protected]>
    3 people authored Oct 15, 2024
    Configuration menu
    Copy the full SHA
    51a5cf6 View commit details
    Browse the repository at this point in the history
  6. Always show link new device flow even if unsupported (#147)

    * Always show link new device flow even if unsupported
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update screenshot
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 15, 2024
    Configuration menu
    Copy the full SHA
    d58c9fa View commit details
    Browse the repository at this point in the history
  7. Remove redundant yarn.lock entry for widget-api (#35)

    Co-authored-by: Michael Telatynski <[email protected]>
    AndrewFerr and t3chguy authored Oct 15, 2024
    Configuration menu
    Copy the full SHA
    0f670b8 View commit details
    Browse the repository at this point in the history
  8. Prepare for repo merge

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    b084ff2 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    bc0ae8d View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    80018bc View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    07ed8e8 View commit details
    Browse the repository at this point in the history
  12. Merge matrix-react-sdk into element-web

    Merge remote-tracking branch 'repomerge/t3chguy/repomerge' into t3chguy/repo-merge
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    f0ee7f7 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    8b914c0 View commit details
    Browse the repository at this point in the history
  14. Make yarn lock file happier

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    fd62350 View commit details
    Browse the repository at this point in the history
  15. Merge branch 'develop' of https://github.com/vector-im/element-web in…

    …to t3chguy/repo-merge
    
    # Conflicts:
    #	package.json
    t3chguy committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    643d130 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    65f0d79 View commit details
    Browse the repository at this point in the history
  17. Iterate

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    13184f0 View commit details
    Browse the repository at this point in the history
  18. Iterate

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    d928a7b View commit details
    Browse the repository at this point in the history
  19. v1.11.82-rc.0

    RiotRobot committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    3793c6d View commit details
    Browse the repository at this point in the history
  20. Iterate

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    67659ab View commit details
    Browse the repository at this point in the history
  21. Iterate

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    68c0c4c View commit details
    Browse the repository at this point in the history
  22. Iterate

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    0f31b15 View commit details
    Browse the repository at this point in the history
  23. Iterate

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    0007d3d View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2024

  1. Iterate

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    f78f6b3 View commit details
    Browse the repository at this point in the history
  2. Fix i18n

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    4094d24 View commit details
    Browse the repository at this point in the history
  3. [create-pull-request] automated change (#52)

    Co-authored-by: dbkr <[email protected]>
    (cherry picked from commit 3256499d4bacbf8cb527c1261c65f805de346c53)
    RiotRobot authored and t3chguy committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    a22e9e8 View commit details
    Browse the repository at this point in the history
  4. Deduplicate more icons using Compound Design Tokens (#132)

    * Deduplicate more icons using Compound Design Tokens
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    (cherry picked from commit 7448bd52e2ff354917d6e5f769ca052961c13aa0)
    t3chguy committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    146968d View commit details
    Browse the repository at this point in the history
  5. Replace MatrixClient.isCryptoEnabled by MatrixClient.getCrypto (#140

    )
    
    * Replace `MatrixClient.isCryptoEnabled` by `MatrixClient.getCrypto`
    
    * Cast `cryptoEnabled` as `boolean`
    
    * Fix `MatrixChat-test`
    
    (cherry picked from commit 950ab1940bfcea9443f03284f9175d319c13a44c)
    florianduros authored and t3chguy committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    571ada3 View commit details
    Browse the repository at this point in the history
  6. Iterate

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    1407e2f View commit details
    Browse the repository at this point in the history
  7. i18n

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    f44174b View commit details
    Browse the repository at this point in the history
  8. Merge pull request #28173 from element-hq/florianduros/remove-feature…

    …-dehydration
    
    Remove feature_dehydration
    florianduros authored Oct 16, 2024
    Configuration menu
    Copy the full SHA
    2b99496 View commit details
    Browse the repository at this point in the history
  9. Move NETLIFY_SITE_ID to vars

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    8ae64fe View commit details
    Browse the repository at this point in the history
  10. Use new CryptoEvent import (#128)

    * Use new `CryptoEvent` import
    
    * Remove remaining old `CryptoEvent` import
    
    * Replace `import` by `import type`
    florianduros authored and t3chguy committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    b483fdd View commit details
    Browse the repository at this point in the history
  11. Merge branch 'develop' of https://github.com/vector-im/element-web in…

    …to t3chguy/repo-merge
    t3chguy committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    75b0a83 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2024

  1. Update dependency @sentry/browser to v8.33.0 [SECURITY] (#28194)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored and t3chguy committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    82f96dc View commit details
    Browse the repository at this point in the history
  2. Update babel monorepo (#28196)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored and t3chguy committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    71d0b39 View commit details
    Browse the repository at this point in the history
  3. Update dependency @types/react to v17.0.83 (#28138)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored and t3chguy committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    1ea31f4 View commit details
    Browse the repository at this point in the history
  4. Update dependency @matrix-org/spec to v1.12.0 (#28200)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored and t3chguy committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    4035598 View commit details
    Browse the repository at this point in the history
  5. Update dependency @formatjs/intl-segmenter to v11.5.9 (#28197)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored and t3chguy committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    ea5cba3 View commit details
    Browse the repository at this point in the history
  6. Remove references to MatrixClient.crypto (#28204)

    * Remove `VerificationExplorer`
    
    * Remove `remakeolm` slash command
    
    * Remove call to `crypto.cancelAndResendAllOutgoingKeyRequests`
    
    * Remove crypto mock in `LoginWithQR-test.tsx`
    
    * Remove `StopGadWidgetDriver.sendToDevice`
    
    * Remove remaining mock
    florianduros authored and t3chguy committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    7236953 View commit details
    Browse the repository at this point in the history
  7. Update dependency typescript to v5.6.3 (#28198)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored and t3chguy committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    d25f203 View commit details
    Browse the repository at this point in the history
  8. Update dependency eslint-plugin-unicorn to v56 (#28202)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored and t3chguy committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    e277793 View commit details
    Browse the repository at this point in the history
  9. Update dependency stylelint to v16.10.0 (#28201)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored and t3chguy committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    fa419a0 View commit details
    Browse the repository at this point in the history
  10. Update browserslist (#28199)

    * Update browserslist
    
    * Update tests
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Michael Telatynski <[email protected]>
    renovate[bot] and t3chguy committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    9a6dac0 View commit details
    Browse the repository at this point in the history
  11. [create-pull-request] automated change (#28212)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    d4a780e View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f4a254a View commit details
    Browse the repository at this point in the history
  13. Update dependency @types/node to v18.19.56 (#28137)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    eedeb2c View commit details
    Browse the repository at this point in the history
  14. Pin GHA runner versions (#28215)

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    2cff2b5 View commit details
    Browse the repository at this point in the history
  15. Fix network dropdown missing checkbox & aria-checked (#28220)

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    0c19991 View commit details
    Browse the repository at this point in the history
  16. Deflake unskippable verification (#28222)

    Discovering what is the correct way of asserting that an element is *not*
    on screen with Playwright, which apparently is nontrivial.
    dbkr authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    1fc0122 View commit details
    Browse the repository at this point in the history
  17. Fix Ctrl+F shortcut not working with minimised room summary card (#28…

    …223)
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    a9bea77 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    cb383ef View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    8f35353 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2024

  1. [create-pull-request] automated change (#28230)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    e799164 View commit details
    Browse the repository at this point in the history
  2. Second batch: remove deprecated calls on MatrixClient (#28227)

    * Replace `MatrixClient.forceDiscardSession` call by `MatrixClient.CryptoApi.forceDiscardSession`
    
    * Remove `MatrixClient.scheduleAllGroupSessionsForBackup` mock
    florianduros authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    85d2bf3 View commit details
    Browse the repository at this point in the history
  3. Replace Matrix.getKeyBackupEnabled by `MatrixClient.CryptoApi.getAc…

    …tiveSessionBackupVersion` (#28225)
    
    * Migrating deprecated sync `MatrixClient.getKeyBackupEnabled` to async `MatrixClient.CryptoApi.getActiveSessionBackupVersion` in `NewRecoveryMethodDialog`.
    Rewrite `NewRecoveryMethodDialog` into a functional component to make it easier to handle the new async method.
    
    * Migrating deprecated sync `MatrixClient.getKeyBackupEnabled` to async `MatrixClient.CryptoApi.getActiveSessionBackupVersion` in `MatrixChat`.
    florianduros authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    1bb482f View commit details
    Browse the repository at this point in the history
  4. [create-pull-request] automated change (#28234)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    6771bd6 View commit details
    Browse the repository at this point in the history
  5. Fix develop changelog parsing (#28232)

    * Fix develop changelog parsing and DRY it
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * duh
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Improve coverage
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Typeguards!
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Discard changes to test/unit-tests/components/views/dialogs/__snapshots__/ChangelogDialog-test.tsx.snap
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    06d1239 View commit details
    Browse the repository at this point in the history
  6. Make Sonar happier

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    44b23d2 View commit details
    Browse the repository at this point in the history
  7. Iterate

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    0105f56 View commit details
    Browse the repository at this point in the history
  8. Fix test

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    e09e15b View commit details
    Browse the repository at this point in the history
  9. Add reactions to html export (#28210)

    * Absorb the matrix-react-sdk repository (#28192)
    
    Co-authored-by: github-merge-queue <[email protected]>
    Co-authored-by: github-merge-queue <[email protected]>
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Florian Duros <[email protected]>
    Co-authored-by: Kim Brose <[email protected]>
    Co-authored-by: Florian Duros <[email protected]>
    Co-authored-by: R Midhun Suresh <[email protected]>
    Co-authored-by: dbkr <[email protected]>
    Co-authored-by: ElementRobot <[email protected]>
    Co-authored-by: dbkr <[email protected]>
    Co-authored-by: David Baker <[email protected]>
    Co-authored-by: Michael Telatynski <[email protected]>
    Co-authored-by: Richard van der Hoff <[email protected]>
    Co-authored-by: David Langley <[email protected]>
    Co-authored-by: Michael Weimann <[email protected]>
    Co-authored-by: Timshel <[email protected]>
    Co-authored-by: Sahil Silare <[email protected]>
    Co-authored-by: Will Hunt <[email protected]>
    Co-authored-by: Hubert Chathi <[email protected]>
    Co-authored-by: Andrew Ferrazzutti <[email protected]>
    Co-authored-by: Robin <[email protected]>
    Co-authored-by: Tulir Asokan <[email protected]>
    
    * Update dependency @sentry/browser to v8.33.0 [SECURITY] (#28194)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update babel monorepo (#28196)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update dependency @types/react to v17.0.83 (#28138)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update dependency @matrix-org/spec to v1.12.0 (#28200)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update dependency @formatjs/intl-segmenter to v11.5.9 (#28197)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Remove references to `MatrixClient.crypto` (#28204)
    
    * Remove `VerificationExplorer`
    
    * Remove `remakeolm` slash command
    
    * Remove call to `crypto.cancelAndResendAllOutgoingKeyRequests`
    
    * Remove crypto mock in `LoginWithQR-test.tsx`
    
    * Remove `StopGadWidgetDriver.sendToDevice`
    
    * Remove remaining mock
    
    * Update dependency typescript to v5.6.3 (#28198)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update dependency eslint-plugin-unicorn to v56 (#28202)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update dependency stylelint to v16.10.0 (#28201)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update browserslist (#28199)
    
    * Update browserslist
    
    * Update tests
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Michael Telatynski <[email protected]>
    
    * Add reactions to html export and add test
    
    * Add reaction to snapshot test
    
    * Update snapshot output
    
    * Remove logging
    
    * Add reaction to html export screenshot test.
    
    * lint
    
    * Update reference screenshot.
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    Co-authored-by: Michael Telatynski <[email protected]>
    Co-authored-by: github-merge-queue <[email protected]>
    Co-authored-by: github-merge-queue <[email protected]>
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Florian Duros <[email protected]>
    Co-authored-by: Kim Brose <[email protected]>
    Co-authored-by: Florian Duros <[email protected]>
    Co-authored-by: R Midhun Suresh <[email protected]>
    Co-authored-by: dbkr <[email protected]>
    Co-authored-by: ElementRobot <[email protected]>
    Co-authored-by: dbkr <[email protected]>
    Co-authored-by: Richard van der Hoff <[email protected]>
    Co-authored-by: Michael Weimann <[email protected]>
    Co-authored-by: Timshel <[email protected]>
    Co-authored-by: Sahil Silare <[email protected]>
    Co-authored-by: Will Hunt <[email protected]>
    Co-authored-by: Hubert Chathi <[email protected]>
    Co-authored-by: Andrew Ferrazzutti <[email protected]>
    Co-authored-by: Robin <[email protected]>
    Co-authored-by: Tulir Asokan <[email protected]>
    21 people authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    59cd518 View commit details
    Browse the repository at this point in the history
  10. Update all non-major dependencies (#28136)

    * Absorb the matrix-react-sdk repository (#28192)
    
    Co-authored-by: github-merge-queue <[email protected]>
    Co-authored-by: github-merge-queue <[email protected]>
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Florian Duros <[email protected]>
    Co-authored-by: Kim Brose <[email protected]>
    Co-authored-by: Florian Duros <[email protected]>
    Co-authored-by: R Midhun Suresh <[email protected]>
    Co-authored-by: dbkr <[email protected]>
    Co-authored-by: ElementRobot <[email protected]>
    Co-authored-by: dbkr <[email protected]>
    Co-authored-by: David Baker <[email protected]>
    Co-authored-by: Michael Telatynski <[email protected]>
    Co-authored-by: Richard van der Hoff <[email protected]>
    Co-authored-by: David Langley <[email protected]>
    Co-authored-by: Michael Weimann <[email protected]>
    Co-authored-by: Timshel <[email protected]>
    Co-authored-by: Sahil Silare <[email protected]>
    Co-authored-by: Will Hunt <[email protected]>
    Co-authored-by: Hubert Chathi <[email protected]>
    Co-authored-by: Andrew Ferrazzutti <[email protected]>
    Co-authored-by: Robin <[email protected]>
    Co-authored-by: Tulir Asokan <[email protected]>
    
    * Update dependency @sentry/browser to v8.33.0 [SECURITY] (#28194)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update babel monorepo (#28196)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update dependency @types/react to v17.0.83 (#28138)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update dependency @matrix-org/spec to v1.12.0 (#28200)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update dependency @formatjs/intl-segmenter to v11.5.9 (#28197)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Remove references to `MatrixClient.crypto` (#28204)
    
    * Remove `VerificationExplorer`
    
    * Remove `remakeolm` slash command
    
    * Remove call to `crypto.cancelAndResendAllOutgoingKeyRequests`
    
    * Remove crypto mock in `LoginWithQR-test.tsx`
    
    * Remove `StopGadWidgetDriver.sendToDevice`
    
    * Remove remaining mock
    
    * Update dependency typescript to v5.6.3 (#28198)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update dependency eslint-plugin-unicorn to v56 (#28202)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update dependency stylelint to v16.10.0 (#28201)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    
    * Update browserslist (#28199)
    
    * Update browserslist
    
    * Update tests
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Michael Telatynski <[email protected]>
    
    * Update all non-major dependencies
    
    * Pin posthog-js
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update snapshots for re-resizable
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Pin re-resizable
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update snapshot and improve playwright workflow to account for symlinked matrix-js-sdk
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Revert snapshot
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update package.json
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Fix screenshot flakiness
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    Co-authored-by: Michael Telatynski <[email protected]>
    Co-authored-by: github-merge-queue <[email protected]>
    Co-authored-by: github-merge-queue <[email protected]>
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Florian Duros <[email protected]>
    Co-authored-by: Kim Brose <[email protected]>
    Co-authored-by: Florian Duros <[email protected]>
    Co-authored-by: R Midhun Suresh <[email protected]>
    Co-authored-by: dbkr <[email protected]>
    Co-authored-by: ElementRobot <[email protected]>
    Co-authored-by: dbkr <[email protected]>
    Co-authored-by: Richard van der Hoff <[email protected]>
    Co-authored-by: David Langley <[email protected]>
    Co-authored-by: Michael Weimann <[email protected]>
    Co-authored-by: Timshel <[email protected]>
    Co-authored-by: Sahil Silare <[email protected]>
    Co-authored-by: Will Hunt <[email protected]>
    Co-authored-by: Hubert Chathi <[email protected]>
    Co-authored-by: Andrew Ferrazzutti <[email protected]>
    Co-authored-by: Robin <[email protected]>
    Co-authored-by: Tulir Asokan <[email protected]>
    21 people authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    8c305f8 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    d8052e6 View commit details
    Browse the repository at this point in the history
  12. Migrate to stylistic

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    6c6bf81 View commit details
    Browse the repository at this point in the history
  13. Iterate

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    837e27e View commit details
    Browse the repository at this point in the history
  14. Update tests

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    9d68f2c View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    e5a436a View commit details
    Browse the repository at this point in the history
  16. Deduplicate icons using Compound Design Tokens (#28219)

    * Deduplicate icons using Compound Design Tokens
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    90e8c13 View commit details
    Browse the repository at this point in the history
  17. Update src/RoomInvite.tsx

    Co-authored-by: Florian Duros <[email protected]>
    t3chguy and florianduros authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    4d9b40c View commit details
    Browse the repository at this point in the history
  18. Remove openDesk variant (#28237)

    * Remove opendesk variant
    
    This method of shipping the openDesk variant is no longer required. A separate pipeline now publishes to https://gitlab.opencode.de/bmi/opendesk/components/supplier/Element/images/container_registry/1216.
    
    * Remove additional vanilla switch
    langleyd authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    d638d5d View commit details
    Browse the repository at this point in the history
  19. Update RoomInvite.tsx

    t3chguy authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    51c308f View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    4e93233 View commit details
    Browse the repository at this point in the history
  21. Replace MatrixClient.isRoomEncrypted by `MatrixClient.CryptoApi.isE…

    …ncryptionEnabledInRoom` in `ContentMessages.ts` (#28238)
    florianduros authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    fad4573 View commit details
    Browse the repository at this point in the history
  22. Replace legacy Tooltips with Compound tooltips (#28231)

    * Ditch legacy Tooltips in favour of Compound
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Remove dead code
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Extract markdown CodeBlock into React component
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Upgrade compound
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    26430a3 View commit details
    Browse the repository at this point in the history
  23. Fix RTE mentions autocomplete test (#28244)

    LeftArrow  -> ArrowLeft
    langleyd authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    249c0fd View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2024

  1. Close right panel chat when minimising maximised voip widget (#28241)

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    3294c6b View commit details
    Browse the repository at this point in the history
  2. - Remove deprecated MatrixClient.keyBackupKeyFromPassword call. (#2…

    …8233)
    
    - The `keyBackupKeyFromPassword` call is bound to the `keyCallback` props in `RestoreKeyBackupDialog` which is not used in `CreateSecretStorageDialog`
    - Remove code bound to `keyCallback` props
    florianduros authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    061c821 View commit details
    Browse the repository at this point in the history
  3. Stabilise audio-player reply button clicking in playwright (#28243)

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    c278d2f View commit details
    Browse the repository at this point in the history
  4. Deduplicate icons using Compound (#28239)

    * Deduplicate icons using Compound
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update snapshots
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update e2e tests
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    02e0aca View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b45b06e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    26a98e5 View commit details
    Browse the repository at this point in the history
  7. First batch: remove deprecated calls on MatrixClient (#28207)

    * Remove `initCrypto` mocking
    
    * Remove `MatrixClient.downloadKeys` mocking
    
    * Remove `MatrixClient.getStoredDevice` mocking
    
    * Replace `MatrixClient.setGlobalBlacklistUnverifiedDevices` by `MatrixClient.CryptoApi.globalBlacklistUnverifiedDevices`
    
    * Remove `MatrixClient.getStoredCrossSigningForUser` mocking
    
    * Replace `MatrixClient.legacyDeviceVerification` by `MatrixClient.CryptoApi.requestDeviceVerification`
    
    * Remove `MatrixClient.isCrossSigningReady` mock
    
    * Replace `MatrixClient.bootstrapCrossSigning` by `MatrixClient.getCrypto.bootstrapCrossSigning`
    
    * Replace `MatrixClient.getCryptoTrustCrossSignedDevices` by `MatrixClient.getCrypto.getTrustCrossSignedDevices`
    
    * Replace `MatrixClient.hasSecretStorageKey` by `MatrixClient.SecretStorage.hasKey`
    
    * Replace `MatrixClient.getDefaultSecretStorageKeyId` by `MatrixClient.SecretStorage.getDefaultKeyId`
    
    * Remove `MatrixClient.encryptAndSendToDevices` call
    florianduros authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    46d1392 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    bdaad67 View commit details
    Browse the repository at this point in the history
  9. Small tweaks & improvements (#28253)

    * Ignore playwright generated files in git & prettier
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Correct .editorconfig
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Fix jest coverage errors
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Exclude scripts & type defs from coverage
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    7720197 View commit details
    Browse the repository at this point in the history
  10. Update to React 18 (#24763)

    * Upgrade target to es2021
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Upgrade target to es2021
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Upgrade to es2022
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Upgrade to es2022
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Fix babel config
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Fix babel config
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Fix React contexts
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Fix types
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Fix React state
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update to React 18
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update to React 18
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Install @testing-library/dom
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update lockfile
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Yarn lock update
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    d8800ef View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    5e59492 View commit details
    Browse the repository at this point in the history
  12. playwright: remove flaky check (#28260)

    This sometimes happens too quickly for us to test.
    
    Fixes: #27585
    richvdh authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    3c8ac6f View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2024

  1. Configuration menu
    Copy the full SHA
    4a1f86f View commit details
    Browse the repository at this point in the history
  2. Replace IBootstrapCrossSigningOpts by BootstrapCrossSigningOpts t…

    …o use CryptoApi type instead of old crypto type. (#28263)
    florianduros authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    1ec2f92 View commit details
    Browse the repository at this point in the history
  3. Hide scroll to bottom button in pinned message e2e test (#28255)

    * Hide scroll to bottom button in pinned message e2e test
    
    * Remove redundant mask
    
    * Update playwright/e2e/pinned-messages/pinned-messages.spec.ts
    
    Co-authored-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Co-authored-by: Michael Telatynski <[email protected]>
    florianduros and t3chguy authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    539025c View commit details
    Browse the repository at this point in the history
  4. Refactor CreateCrossSigningDialog (#28218)

    * Refactor CreateCrossSigningDialog
    
     * Converts CreateCrossSigningDialog to a functional component
     * Pulls logic out to its own class
     * Updates usage of deprecated cross signing bootstrap method on client to be on the crypto object and updates test to match
    
    Moved from element-hq/matrix-react-sdk#131
    
    * Add mock here too
    
    * Use the right mock
    
    * Remove duplicate mock
    
    * Stray jest mock line
    
    * Un-move mocks
    
    * tsdoc
    
    * Typo
    
    Co-authored-by: Andy Balaam <[email protected]>
    
    ---------
    
    Co-authored-by: Andy Balaam <[email protected]>
    dbkr and andybalaam authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    19ef326 View commit details
    Browse the repository at this point in the history
  5. Switch away from deprecated ReactDOM findDOMNode (#28259)

    * Remove unused method getVisibleDecryptionFailures
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Switch away from ReactDOM findDOMNode
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    d4cf388 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    26cd13a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6a96020 View commit details
    Browse the repository at this point in the history
  8. v1.11.82

    RiotRobot committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    1df72ce View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2024

  1. [create-pull-request] automated change (#28272)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Oct 23, 2024
    Configuration menu
    Copy the full SHA
    305d60f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    83777a6 View commit details
    Browse the repository at this point in the history
  3. Fix other devices not being decorated as such (#28279)

    * Fix other devices not being decorated as such
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update snapshots
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 23, 2024
    Configuration menu
    Copy the full SHA
    5cad0c2 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2024

  1. [create-pull-request] automated change (#28283)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Oct 24, 2024
    Configuration menu
    Copy the full SHA
    e73a832 View commit details
    Browse the repository at this point in the history
  2. Replace MatrixClient.isRoomEncrypted by `MatrixClient.CryptoApi.isE…

    …ncryptionEnabledInRoom` in `SecurityRoomSettingsTab` (#28281)
    florianduros authored Oct 24, 2024
    Configuration menu
    Copy the full SHA
    6d0d237 View commit details
    Browse the repository at this point in the history
  3. Remove abandoned MSC3886, MSC3903, MSC3906 implementations (#28274)

    * Remove abandoned MSC3886, MSC3903, MSC3906 implementations
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Remove stale snapshots
    
    * Improve coverage
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 24, 2024
    Configuration menu
    Copy the full SHA
    5b5348e View commit details
    Browse the repository at this point in the history
  4. Playwright: deflake verification tests (#28289)

    Wait for the QR code to be rendered, in an attempt to deflake these two
    richvdh authored Oct 24, 2024
    Configuration menu
    Copy the full SHA
    1cf1a0c View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2024

  1. [create-pull-request] automated change (#28294)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Oct 25, 2024
    Configuration menu
    Copy the full SHA
    bdf0f1d View commit details
    Browse the repository at this point in the history
  2. Enable React StrictMode (#28258)

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 25, 2024
    Configuration menu
    Copy the full SHA
    da5c97f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7de5c84 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2024

  1. Update screenshot for timezone difference (#28309)

    * Update screenshot for timezone difference
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update screenshot
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    ef60526 View commit details
    Browse the repository at this point in the history
  2. Excluding floating-ui portals as part of hiding tooltips in Playwrigh…

    …t screenshots (#28287)
    
    * Excluding floating-ui portals as part of hiding tooltips in Playwright screenshots
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update screenshot
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    954ff0a View commit details
    Browse the repository at this point in the history
  3. [create-pull-request] automated change (#28304)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    86bb0ec View commit details
    Browse the repository at this point in the history
  4. Add PostHog codes for trust requirement failures (#28292)

    * Add PostHog codes for trust requirement failures
    
    * add tests for new codes
    uhoreg authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    de9a2cc View commit details
    Browse the repository at this point in the history
  5. Fix 'remove alias' button in room settings (#28269)

    * fixed 'remove alias' button
    
    * fixed 'close button'
    
    ---------
    
    Co-authored-by: Florian Duros <[email protected]>
    Dev-Gurjar and florianduros authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    a2c7870 View commit details
    Browse the repository at this point in the history
  6. Remove unused icons & styles (#28288)

    * Remove stale _LegacyRoomHeader.pcss and icons
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Remove unused icons
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Ensure legacy header styles are not used by HTML export
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    f4dc904 View commit details
    Browse the repository at this point in the history
  7. Enable Element Call by default on release instances (#28313)

    Update button label to say it is a Beta
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    79c9563 View commit details
    Browse the repository at this point in the history
  8. Enable Element Call by default on release instances (#28313)

    Signed-off-by: Michael Telatynski <[email protected]>
    
    (cherry picked from commit 79c9563)
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    9ce515a View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2024

  1. Configuration menu
    Copy the full SHA
    10a63b3 View commit details
    Browse the repository at this point in the history
  2. v1.11.83

    RiotRobot committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    dabe672 View commit details
    Browse the repository at this point in the history
  3. Remove upgrade encryption in DeviceListener and `SetupEncryptionToa…

    …st` (#28299)
    
    * Remove upgrade encryption in `DeviceListener` and `SetupEncryptionToast`
    
    * Update comments to `2 different toasts`
    florianduros authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    e5b55db View commit details
    Browse the repository at this point in the history
  4. Merge branch 'develop' into staging

    # Conflicts:
    #	package.json
    #	yarn.lock
    t3chguy committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    1d49a46 View commit details
    Browse the repository at this point in the history
  5. Fix release_prepare.yml

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    95c3027 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8ebfaad View commit details
    Browse the repository at this point in the history
  7. v1.11.84-rc.0

    RiotRobot committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    849f2c9 View commit details
    Browse the repository at this point in the history
  8. Update dependency @formatjs/intl-segmenter to v11.7.1 (#28324)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    99542c9 View commit details
    Browse the repository at this point in the history
  9. Update dependency axe-core to v4.10.2 (#28320)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    13bfb51 View commit details
    Browse the repository at this point in the history
  10. Update dependency @testing-library/jest-dom to v6.6.2 (#28319)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    76b9c27 View commit details
    Browse the repository at this point in the history
  11. Update dependency stylelint-scss to v6.8.1 (#28321)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    2ff51c2 View commit details
    Browse the repository at this point in the history
  12. Update playwright to v1.48.2 (#28322)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    a4e4ac4 View commit details
    Browse the repository at this point in the history
  13. Update dependency @matrix-org/analytics-events to ^0.28.0 (#28325)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    e606b5f View commit details
    Browse the repository at this point in the history
  14. Update dependency @vector-im/compound-design-tokens to v1.9.0 (#28327)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    3e8f55f View commit details
    Browse the repository at this point in the history
  15. Update dependency uuid to v11 (#28332)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    8a743a9 View commit details
    Browse the repository at this point in the history
  16. Update dependency node to v22 (#28329)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    7408a83 View commit details
    Browse the repository at this point in the history
  17. Update typescript-eslint monorepo to v8.11.0 (#28328)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    7daa8b2 View commit details
    Browse the repository at this point in the history
  18. Update dependency eslint-plugin-react-hooks to v5 (#28330)

    * Update dependency eslint-plugin-react-hooks to v5
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Michael Telatynski <[email protected]>
    renovate[bot] and t3chguy authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    a7b3337 View commit details
    Browse the repository at this point in the history
  19. Update dependency @sentry/browser to v8.35.0 (#28326)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    fbc96f4 View commit details
    Browse the repository at this point in the history
  20. Update react-types (#28323)

    * Update react-types
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: Michael Telatynski <[email protected]>
    renovate[bot] and t3chguy authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    5c45ca5 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2024

  1. Use new CryptoApi.encryptToDeviceMessages() to send encrypted to-devi…

    …ce messages from widgets (#28315)
    hughns authored Oct 30, 2024
    Configuration menu
    Copy the full SHA
    c23c9df View commit details
    Browse the repository at this point in the history
  2. Remove "Upgrade your encryption" flow in CreateSecretStorageDialog

    …(#28290)
    
    * Remove "Upgrade your encryption" flow
    
    * Rename and remove tests
    
    * Remove `BackupTrustInfo`
    
    * Get keybackup when bootstraping the secret storage.
    
    * Update src/async-components/views/dialogs/security/CreateSecretStorageDialog.tsx
    
    Co-authored-by: Richard van der Hoff <[email protected]>
    
    ---------
    
    Co-authored-by: Richard van der Hoff <[email protected]>
    florianduros and richvdh authored Oct 30, 2024
    Configuration menu
    Copy the full SHA
    386b782 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2024

  1. [create-pull-request] automated change (#28345)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    e0ffddf View commit details
    Browse the repository at this point in the history
  2. Documentation fix: missing comma and I would also take the ellipsis a…

    …way (#17233)
    
    * Missing coma and I would also take the ellipsis away
    
    took me a while to find the mistake and "comment" and I think it'll take other even longer...
    
    * use json5
    
    ---------
    
    Co-authored-by: Travis Ralston <[email protected]>
    Co-authored-by: Richard van der Hoff <[email protected]>
    3 people authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    4bb9f2e View commit details
    Browse the repository at this point in the history
  3. Pass nodeRef to CSSTransition to avoid ReactDOM.findDOMNode (#28339)

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    195337d View commit details
    Browse the repository at this point in the history
  4. [create-pull-request] automated change (#28119)

    Co-authored-by: Johennes <[email protected]>
    Co-authored-by: Michael Telatynski <[email protected]>
    3 people authored Oct 31, 2024
    Configuration menu
    Copy the full SHA
    23613ac View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2024

  1. [create-pull-request] automated change (#28359)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    a3ece9d View commit details
    Browse the repository at this point in the history
  2. [create-pull-request] automated change (#28360)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    a27dfa1 View commit details
    Browse the repository at this point in the history
  3. Specify a local address when exposing ports with Docker (#20891)

    * Specify a local address when exposing ports with Docker
    
    cf. https://docs.docker.com/engine/reference/commandline/run/#publish-or-expose-port--p---expose
    
    Signed-off-by: Richard Gibson <[email protected]>
    
    * Provide and explain docker run examples with and without confinement to localhost
    
    Signed-off-by: Richard Gibson <[email protected]>
    
    * Update README.md
    
    Co-authored-by: Richard Gibson <[email protected]>
    
    ---------
    
    Signed-off-by: Richard Gibson <[email protected]>
    Co-authored-by: Michael Telatynski <[email protected]>
    gibson042 and t3chguy authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    b8fd98a View commit details
    Browse the repository at this point in the history
  4. Remove boilerplate around dispatcher and settings watchers (#28338)

    * Remove boilerplate around dispatcher and settings watchers
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    2d9982f View commit details
    Browse the repository at this point in the history
  5. Move state update listeners from constructor to componentDidMount (#2…

    …8341)
    
    * Move state update listeners from constructor to componentDidMount
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    0899165 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2024

  1. [create-pull-request] automated change (#28372)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    8e30471 View commit details
    Browse the repository at this point in the history
  2. Remove unused Security customisations module (#28350)

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    00d46f1 View commit details
    Browse the repository at this point in the history
  3. Show developer jump to event button on all events with associations (…

    …#28351)
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    b1ef099 View commit details
    Browse the repository at this point in the history
  4. Wire up analytics for Legacy/EC/Jitsi voip options (#28348)

    * Wire up analytics for Legacy/EC/Jitsi voip options
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update @matrix-org/analytics-events
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    1ccbdb2 View commit details
    Browse the repository at this point in the history
  5. Fix markdown escaping wrongly passing html through (#28363)

    * Fix markdown escaping wrongly passing html through
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Add comment
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    38e5eee View commit details
    Browse the repository at this point in the history
  6. Switch ModalManager to the React 18 createRoot API (#28336)

    * Remove boilerplate around dispatcher and settings watchers
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Move state update listeners from constructor to componentDidMount
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Switch ModalManager to the React 18 createRoot API
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    502cc91 View commit details
    Browse the repository at this point in the history
  7. Update the display of decryption failures due to failed trust require…

    …ment (#28300)
    
    * update the display of decryption failures due to failed trust requirement
    
    * add test for not showing shield
    uhoreg authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    2631b90 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2024

  1. [create-pull-request] automated change (#28377)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    d7d96b6 View commit details
    Browse the repository at this point in the history
  2. Move navigator message listener registration to be synchronously atta…

    …ched (#28340)
    
    to silence Chrome warning
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    c9d9c42 View commit details
    Browse the repository at this point in the history
  3. Show message type prefix in thread root & reply previews (#28361)

    * Extract EventPreview from PinnedMessageBanner
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Show message type prefix in thread root previews
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Show message type prefix in thread reply preview
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update tests
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    aeabf3b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6e4bd56 View commit details
    Browse the repository at this point in the history
  5. v1.11.84

    RiotRobot committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    1598445 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a6ce6dc View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0b6ed44 View commit details
    Browse the repository at this point in the history
  8. Fix post release docker check

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    24fabff View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a355292 View commit details
    Browse the repository at this point in the history
  10. Flatten Vector-override components (#28346)

    * Flatten Vector-override components
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Improve coverage
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Ie
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * delint
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    9d79a93 View commit details
    Browse the repository at this point in the history
  11. Remove redundant switch_package_to_release call (#28384)

    `switch_package_to_release` is now a no-op (there are no fields called
    `matrix_lib_*` in matrix-js-sdk's package.json), so everything after that is
    redundant.
    richvdh authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    6042625 View commit details
    Browse the repository at this point in the history
  12. Remove unused dependencies

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    9ef3b0b View commit details
    Browse the repository at this point in the history
  13. Delete empty unused files

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    7093c9a View commit details
    Browse the repository at this point in the history
  14. Simplify eslint configs

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    f919d16 View commit details
    Browse the repository at this point in the history
  15. Remove unused enums

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    464be37 View commit details
    Browse the repository at this point in the history
  16. Remove unused mocks

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    f86099c View commit details
    Browse the repository at this point in the history
  17. Remove unused types & imports

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    0103913 View commit details
    Browse the repository at this point in the history
  18. Avoid use of transitive deps

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    458b4a4 View commit details
    Browse the repository at this point in the history
  19. Avoid double exports

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    1c06eba View commit details
    Browse the repository at this point in the history
  20. Install knip to keep the codebase in check

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    82a6826 View commit details
    Browse the repository at this point in the history
  21. Iterate workflow

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    21930a1 View commit details
    Browse the repository at this point in the history
  22. Iterate

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    f3e976d View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2024

  1. [create-pull-request] automated change (#28392)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    3ff5a51 View commit details
    Browse the repository at this point in the history
  2. Add back maplibre-gl.js

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    1c64080 View commit details
    Browse the repository at this point in the history
  3. [create-pull-request] automated change (#28391)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    2f8e982 View commit details
    Browse the repository at this point in the history
  4. Switch secondary React trees to the createRoot API (#28296)

    * Switch secondary React trees to the createRoot API
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Add comment
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    d06cf09 View commit details
    Browse the repository at this point in the history
  5. Ignore m.3pid_changes for Identity service 3PID changes (#28375)

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    88c72a1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5057668 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2024

  1. [create-pull-request] automated change (#28403)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    b92101a View commit details
    Browse the repository at this point in the history
  2. Deduplicate icons using Compound Design Tokens (#28381)

    * Deduplicate icons using Compound Design Tokens
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Remove unused test images
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update snapshots & screenshots
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    74a919c View commit details
    Browse the repository at this point in the history
  3. Handle authenticated media when downloading from ImageView (#28379)

    * Handle authenticated media when downloading from ImageView
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Iterate
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    da4672d View commit details
    Browse the repository at this point in the history
  4. Enable enable_authenticated_media in Playwright tests (#28395)

    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    b604a6e View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2024

  1. [create-pull-request] automated change (#28409)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Nov 8, 2024
    Configuration menu
    Copy the full SHA
    536d6ad View commit details
    Browse the repository at this point in the history
  2. [create-pull-request] automated change (#28408)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Nov 8, 2024
    Configuration menu
    Copy the full SHA
    9a6be72 View commit details
    Browse the repository at this point in the history
  3. Feed events to widgets as they are decrypted (even if out of order) (…

    …#28376)
    
    * Refactor feeding of events to widgets
    
    This is a pure refactor with (hopefully) no behavior changes.
    
    * Feed events to widgets as they are decrypted (even if out of order)
    
    The code that feeds events to widgets tries to enforce that only events from the end of the timeline will be passed through. This is to prevent old, irrelevant events from being passed to widgets as the timeline is back-filled. However, since encrypted events need to be decrypted asynchronously, it's not possible to feed them to a widget in a strictly linear order without introducing some kind of blocking or unreliable delivery. This code has been dropping events when they're decrypted out of order, which we consider to be an undesirable behavior.
    
    The solution provided here is that, to reflect the asynchronous nature of decryption, encrypted events that arrive at the end of the timeline will be fed to a widget whenever they finish decrypting, even if this means feeding them out of order. For now we're not aware of any widgets that care about knowing the exact order of events in the timeline, but if such a need reveals itself later, we can explore adding ordering information to this part of the widget API.
    
    * Add braces to if
    robintown authored Nov 8, 2024
    Configuration menu
    Copy the full SHA
    d0cddc5 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2024

  1. [create-pull-request] automated change (#28411)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Nov 9, 2024
    Configuration menu
    Copy the full SHA
    17de661 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2024

  1. Configuration menu
    Copy the full SHA
    29b7538 View commit details
    Browse the repository at this point in the history
  2. lint

    langleyd committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    4ff08f9 View commit details
    Browse the repository at this point in the history
  3. lint

    langleyd committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    3f70105 View commit details
    Browse the repository at this point in the history
  4. Add mimetype checks

    Add checks to validate the advertised mimetype and file extension of stickers, videos and images are coherent.
    langleyd committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    6134cfd View commit details
    Browse the repository at this point in the history
  5. Let widget driver send error details (#28357)

    * Let widget driver send error details
    
    * Match new widget API types
    
    * Don't @link across packages
    
    in case web documentation generation disallows it.
    
    * Update matrix-widget-api
    
    * Update matrix-js-sdk
    
    Include matrix-org/matrix-js-sdk#4507 to fix playwright CI
    AndrewFerr authored Nov 11, 2024
    Configuration menu
    Copy the full SHA
    c8c1074 View commit details
    Browse the repository at this point in the history
  6. Deduplicate icons using Compound Design Tokens (#28419)

    * Deduplicate icons using Compound Design Tokens
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    * Update screenshots & snapshots
    
    Signed-off-by: Michael Telatynski <[email protected]>
    
    ---------
    
    Signed-off-by: Michael Telatynski <[email protected]>
    t3chguy authored Nov 11, 2024
    Configuration menu
    Copy the full SHA
    db30bc5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c0a313a View commit details
    Browse the repository at this point in the history
  8. Make case consistent

    langleyd committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    bff17ff View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2024

  1. Configuration menu
    Copy the full SHA
    6bc8080 View commit details
    Browse the repository at this point in the history
  2. [create-pull-request] automated change (#28424)

    Co-authored-by: t3chguy <[email protected]>
    RiotRobot and t3chguy authored Nov 12, 2024
    Configuration menu
    Copy the full SHA
    1e2e884 View commit details
    Browse the repository at this point in the history
  3. Merge commit from fork

    Add mimetype checks to stickers, image and video messages
    t3chguy authored Nov 12, 2024
    Configuration menu
    Copy the full SHA
    a00c343 View commit details
    Browse the repository at this point in the history
  4. Merge commit from fork

    Handle rendering of invalid date errors
    t3chguy authored Nov 12, 2024
    Configuration menu
    Copy the full SHA
    231073c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bebf44d View commit details
    Browse the repository at this point in the history
  6. v1.11.85

    RiotRobot committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    bbe474a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6d1b702 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4bdd4f4 View commit details
    Browse the repository at this point in the history
  9. v1.11.86-rc.0

    RiotRobot committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    08cb450 View commit details
    Browse the repository at this point in the history
  10. Merge element 1.11.85 with matrix-react-sdk fusion

    marc.sirisak committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    20e974b View commit details
    Browse the repository at this point in the history
  11. tchap: Fix conflict with merge

    marc.sirisak committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    35892f8 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2024

  1. TCHAP : All patches ever

    marc.sirisak committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    f7cbd67 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2024

  1. Configuration menu
    Copy the full SHA
    6216d94 View commit details
    Browse the repository at this point in the history
  2. TCHAP: remove linked-dependencies subtree

    marc.sirisak committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    f765606 View commit details
    Browse the repository at this point in the history
  3. TCHAP: update matrix-react-sdk paths and ~tchap-web

    marc.sirisak committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    285ed3d View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2024

  1. TCHAP: update more paths and wrong merged files

    marc.sirisak committed Nov 18, 2024
    Configuration menu
    Copy the full SHA
    4a23da4 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2024

  1. Configuration menu
    Copy the full SHA
    7e33f03 View commit details
    Browse the repository at this point in the history
  2. v1.11.86

    RiotRobot committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    3bcc27a View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2024

  1. TCHAP: feat(patch): update matrix-js-sdk patch

    marc.sirisak committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    46c5d92 View commit details
    Browse the repository at this point in the history
  2. Merge tag 'v1.11.86' into 1152-upgrade-merge-react-sdk

    Release v1.11.86
    marc.sirisak committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    a608a56 View commit details
    Browse the repository at this point in the history
  3. TCHAP: fix conflict 1.11.86

    marc.sirisak committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    175b380 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2024

  1. TCHAP: update tests

    marc.sirisak committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    d0242b9 View commit details
    Browse the repository at this point in the history
  2. TCHAP: update space patch and fix translation

    marc.sirisak committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    ce40d02 View commit details
    Browse the repository at this point in the history
  3. TCHAP: specific tchap lint, removing src folder

    marc.sirisak committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    35a3d54 View commit details
    Browse the repository at this point in the history
  4. TCHAP: lint test and add lowercase patch

    marc.sirisak committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    a156c41 View commit details
    Browse the repository at this point in the history
  5. TCHAP: update prettier and esling config

    marc.sirisak committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    b83a3bd View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2024

  1. TCHAP: engine node fix to 20 for scalingo build

    marc.sirisak committed Nov 25, 2024
    Configuration menu
    Copy the full SHA
    09b0d51 View commit details
    Browse the repository at this point in the history
  2. TCHAP: fix remove-passphrase-4S and css custom color

    marc.sirisak committed Nov 25, 2024
    Configuration menu
    Copy the full SHA
    19c17eb View commit details
    Browse the repository at this point in the history