forked from matrix-org/matrix-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Introduce a new `Crypto.Verifier` interface, and deprecate direct access to `VerificationBase`, `SAS` and `ReciprocateQRCode` ([\matrix-org#3414](matrix-org#3414)). * Add `rust-crypto#isCrossSigningReady` implementation ([\matrix-org#3462](matrix-org#3462)). Contributed by @florianduros. * OIDC: Validate `m.authentication` configuration ([\matrix-org#3419](matrix-org#3419)). Contributed by @kerryarchibald. * ElementR: Add `CryptoApi.getCrossSigningStatus` ([\matrix-org#3452](matrix-org#3452)). Contributed by @florianduros. * Extend stats summary with call device and user count based on room state ([\matrix-org#3424](matrix-org#3424)). Contributed by @toger5. * Update MSC3912 implementation to use `with_rel_type` instead of `with_relations` ([\matrix-org#3420](matrix-org#3420)). * Export thread-related types from SDK ([\matrix-org#3447](matrix-org#3447)). Contributed by @stas-demydiuk. * Use correct /v3 prefix for /refresh ([\matrix-org#3016](matrix-org#3016)). Contributed by @davidisaaclee. * Fix thread list being ordered based on all updates ([\matrix-org#3458](matrix-org#3458)). Fixes element-hq/element-web#25522. * Fix: handle `baseUrl` with trailing slash in `fetch.getUrl` ([\matrix-org#3455](matrix-org#3455)). Fixes element-hq/element-web#25526. Contributed by @kerryarchibald. * use cli.canSupport to determine intentional mentions support ([\matrix-org#3445](matrix-org#3445)). Fixes element-hq/element-web#25497. Contributed by @kerryarchibald. * Make sliding sync linearize processing of sync requests ([\matrix-org#3442](matrix-org#3442)). * Fix edge cases around 2nd order relations and threads ([\matrix-org#3437](matrix-org#3437)).
- Loading branch information
Showing
67 changed files
with
4,638 additions
and
484 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Triggers after the "Downstream artifacts" build has finished, to run the | ||
# cypress tests (with access to repo secrets) | ||
|
||
name: matrix-react-sdk Cypress End to End Tests | ||
on: | ||
workflow_run: | ||
workflows: ["Build downstream artifacts"] | ||
types: | ||
- completed | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch || github.run_id }} | ||
cancel-in-progress: ${{ github.event.workflow_run.event == 'pull_request' }} | ||
|
||
jobs: | ||
cypress: | ||
name: Cypress | ||
uses: matrix-org/matrix-react-sdk/.github/workflows/cypress.yaml@develop | ||
permissions: | ||
actions: read | ||
issues: read | ||
statuses: write | ||
pull-requests: read | ||
secrets: | ||
# secrets are not automatically shared with called workflows, so share the cypress dashboard key, and the Kiwi login details | ||
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | ||
TCMS_USERNAME: ${{ secrets.TCMS_USERNAME }} | ||
TCMS_PASSWORD: ${{ secrets.TCMS_PASSWORD }} | ||
with: | ||
react-sdk-repository: matrix-org/matrix-react-sdk | ||
rust-crypto: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Build downstream artifacts | ||
on: | ||
pull_request: {} | ||
merge_group: | ||
types: [checks_requested] | ||
|
||
# For now at least, we don't run this or the cypress-tests against pushes | ||
# to develop or master. | ||
# | ||
# Note that if we later choose to do so, we'll need to find a way to stop | ||
# the results in Cypress Cloud from clobbering those from the 'develop' | ||
# branch of matrix-react-sdk. | ||
# | ||
#push: | ||
# branches: [develop, master] | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
build-element-web: | ||
name: Build element-web | ||
uses: matrix-org/matrix-react-sdk/.github/workflows/element-web.yaml@develop | ||
with: | ||
matrix-js-sdk-sha: ${{ github.sha }} | ||
react-sdk-repository: matrix-org/matrix-react-sdk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.