-
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.
Merge pull request #1014 from tchapgouv/upgrade-v1.11.67
Upgrade element v1.11.67
- Loading branch information
Showing
366 changed files
with
6,855 additions
and
3,840 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
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.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,7 +148,7 @@ jobs: | |
contains(github.event.issue.labels.*.name, 'A-Element-R') | ||
steps: | ||
- id: add_to_project | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
project-url: ${{ env.PROJECT_URL }} | ||
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }} | ||
|
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,17 @@ | ||
name: Close stale flaky issues | ||
on: | ||
schedule: | ||
- cron: "30 1 * * *" | ||
jobs: | ||
close: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
only-labels: "Z-Flaky-Test" | ||
days-before-stale: 14 | ||
days-before-close: 0 | ||
close-issue-message: "This flaky test issue has not been updated in 14 days. It is being closed as presumed resolved." | ||
exempt-issue-labels: "Z-Flaky-Test-Disabled" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -261,6 +261,47 @@ When Element is deployed alongside a homeserver with SSO-only login, some option | |
``` | ||
It is most common to use the `immediate` flag instead of `on_welcome_page`. | ||
|
||
## Native OIDC | ||
|
||
Native OIDC support is currently in labs and is subject to change. | ||
|
||
Static OIDC Client IDs are preferred and can be specified under `oidc_static_clients` as a mapping from `issuer` to configuration object containing `client_id`. | ||
Issuer must have a trailing forward slash. As an example: | ||
|
||
```json | ||
{ | ||
"oidc_static_clients": { | ||
"https://auth.example.com/": { | ||
"client_id": "example-client-id" | ||
} | ||
} | ||
} | ||
``` | ||
|
||
If a matching static client is not found, the app will attempt to dynamically register a client using metadata specified under `oidc_metadata`. | ||
The app has sane defaults for the metadata properties below but on stricter policy identity providers they may not pass muster, e.g. `contacts` may be required. | ||
The following subproperties are available: | ||
|
||
1. `client_uri`: This is the base URI for the OIDC client registration, typically `logo_uri`, `tos_uri`, and `policy_uri` must be either on the same domain or a subdomain of this URI. | ||
2. `logo_uri`: Optional URI for the client logo. | ||
3. `tos_uri`: Optional URI for the client's terms of service. | ||
4. `policy_uri`: Optional URI for the client's privacy policy. | ||
5. `contacts`: Optional list of contact emails for the client. | ||
|
||
As an example: | ||
|
||
```json | ||
{ | ||
"oidc_metadata": { | ||
"client_uri": "https://example.com", | ||
"logo_uri": "https://example.com/logo.png", | ||
"tos_uri": "https://example.com/tos", | ||
"policy_uri": "https://example.com/policy", | ||
"contacts": ["[email protected]"] | ||
} | ||
} | ||
``` | ||
|
||
## VoIP / Jitsi calls | ||
|
||
Currently, Element uses Jitsi to offer conference calls in rooms, with an experimental Element Call implementation in the works. | ||
|
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
Oops, something went wrong.