mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-03-26 13:04:10 +01:00
Merge remote-tracking branch 'origin/main' into rav/anchors_for_definitions
This commit is contained in:
commit
df4015641d
18
.github/workflows/checks.yaml
vendored
Normal file
18
.github/workflows/checks.yaml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
# workflow steps that ought to pass on a PR, but shouldn't block a preview.
|
||||||
|
|
||||||
|
name: "Checks"
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check-newsfragments:
|
||||||
|
name: "🔎 Check that new newsfragments are valid"
|
||||||
|
if: github.event_name == 'pull_request'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- run: scripts/check-newsfragments
|
||||||
|
env:
|
||||||
|
PULL_REQUEST_NUMBER: ${{ github.event.number }}
|
||||||
12
.github/workflows/main.yml
vendored
12
.github/workflows/main.yml
vendored
|
|
@ -44,18 +44,6 @@ jobs:
|
||||||
- name: "🔎 Run validator"
|
- name: "🔎 Run validator"
|
||||||
run: |
|
run: |
|
||||||
/env/bin/python scripts/check-event-schema-examples.py
|
/env/bin/python scripts/check-event-schema-examples.py
|
||||||
|
|
||||||
check-newsfragments:
|
|
||||||
name: "🔎 Check that new newsfragments are valid"
|
|
||||||
if: github.event_name == 'pull_request'
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- run: scripts/check-newsfragments
|
|
||||||
env:
|
|
||||||
PULL_REQUEST_NUMBER: ${{ github.event.number }}
|
|
||||||
|
|
||||||
calculate-baseurl:
|
calculate-baseurl:
|
||||||
name: "⚙️ Calculate baseURL for later jobs"
|
name: "⚙️ Calculate baseURL for later jobs"
|
||||||
|
|
|
||||||
|
|
@ -307,23 +307,24 @@ footer {
|
||||||
margin: 1.5rem 0 .75rem 0;
|
margin: 1.5rem 0 .75rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 + table, h3 + table, h3 + div.highlight {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
border-bottom: 2px solid $dark;
|
border-bottom: 2px solid $dark;
|
||||||
margin-bottom: 1.5rem;
|
margin-bottom: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
p code, table code {
|
p code, table code {
|
||||||
background-color: $white;
|
background-color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
// add some space between two tables when they are right next to each other
|
||||||
|
& + table {
|
||||||
|
margin-top: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
caption {
|
caption {
|
||||||
caption-side: top;
|
caption-side: top;
|
||||||
color: $dark;
|
color: $dark;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Tweak the styling of `<code>` snippets in tables rendered from OpenAPI definitions.
|
||||||
1
changelogs/client_server/newsfragments/1190.feature
Normal file
1
changelogs/client_server/newsfragments/1190.feature
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Add a `.m.rule.room.server_acl` push rule to match `m.room.server_acl` events, as per [MSC3786](https://github.com/matrix-org/matrix-spec-proposals/pull/3786).
|
||||||
0
changelogs/internal/newsfragments/.gitignore
vendored
Normal file
0
changelogs/internal/newsfragments/.gitignore
vendored
Normal file
1
changelogs/internal/newsfragments/1194.feature
Normal file
1
changelogs/internal/newsfragments/1194.feature
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Add internal changes changelog section.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
For room versions 7 through 10: Clarify that `invite->knock` is actually a legal transition.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Tweak the styling of `<code>` snippets in tables rendered from OpenAPI definitions.
|
||||||
|
|
@ -520,6 +520,33 @@ Definition:
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**`.m.rule.room.server_acl`**
|
||||||
|
|
||||||
|
Suppresses notifications for [`m.room.server_acl`](#mroomserver_acl) events.
|
||||||
|
|
||||||
|
Definition:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"rule_id": ".m.rule.room.server_acl",
|
||||||
|
"default": true,
|
||||||
|
"enabled": true,
|
||||||
|
"conditions": [
|
||||||
|
{
|
||||||
|
"kind": "event_match",
|
||||||
|
"key": "type",
|
||||||
|
"pattern": "m.room.server_acl"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"kind": "event_match",
|
||||||
|
"key": "state_key",
|
||||||
|
"pattern": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"actions": []
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
**`.m.rule.roomnotif`**
|
**`.m.rule.roomnotif`**
|
||||||
|
|
||||||
Matches any message whose content is unencrypted and contains the text
|
Matches any message whose content is unencrypted and contains the text
|
||||||
|
|
|
||||||
|
|
@ -118,8 +118,7 @@ The rules are as follows:
|
||||||
7. If `membership` is `knock`:
|
7. If `membership` is `knock`:
|
||||||
1. If the `join_rule` is anything other than `knock`, reject.
|
1. If the `join_rule` is anything other than `knock`, reject.
|
||||||
2. If `sender` does not match `state_key`, reject.
|
2. If `sender` does not match `state_key`, reject.
|
||||||
3. If the `sender`'s current membership is not `ban`, `invite`,
|
3. If the `sender`'s current membership is not `ban` or `join`, allow.
|
||||||
or `join`, allow.
|
|
||||||
4. Otherwise, reject.
|
4. Otherwise, reject.
|
||||||
8. Otherwise, the membership is unknown. Reject.
|
8. Otherwise, the membership is unknown. Reject.
|
||||||
5. If the `sender`'s current membership state is not `join`, reject.
|
5. If the `sender`'s current membership state is not `join`, reject.
|
||||||
|
|
|
||||||
|
|
@ -193,8 +193,7 @@ The rules are as follows:
|
||||||
If the `join_rule` is anything other than `knock` or
|
If the `join_rule` is anything other than `knock` or
|
||||||
`knock_restricted`, reject.
|
`knock_restricted`, reject.
|
||||||
2. If `sender` does not match `state_key`, reject.
|
2. If `sender` does not match `state_key`, reject.
|
||||||
3. If the `sender`'s current membership is not `ban`, `invite`,
|
3. If the `sender`'s current membership is not `ban` or `join`, allow.
|
||||||
or `join`, allow.
|
|
||||||
4. Otherwise, reject.
|
4. Otherwise, reject.
|
||||||
8. Otherwise, the membership is unknown. Reject.
|
8. Otherwise, the membership is unknown. Reject.
|
||||||
5. If the `sender`'s current membership state is not `join`, reject.
|
5. If the `sender`'s current membership state is not `join`, reject.
|
||||||
|
|
|
||||||
|
|
@ -135,8 +135,7 @@ The rules are as follows:
|
||||||
6. If `membership` is `knock`:
|
6. If `membership` is `knock`:
|
||||||
1. If the `join_rule` is anything other than `knock`, reject.
|
1. If the `join_rule` is anything other than `knock`, reject.
|
||||||
2. If `sender` does not match `state_key`, reject.
|
2. If `sender` does not match `state_key`, reject.
|
||||||
3. If the `sender`'s current membership is not `ban`, `invite`,
|
3. If the `sender`'s current membership is not `ban` or `join`, allow.
|
||||||
or `join`, allow.
|
|
||||||
4. Otherwise, reject.
|
4. Otherwise, reject.
|
||||||
7. Otherwise, the membership is unknown. Reject.
|
7. Otherwise, the membership is unknown. Reject.
|
||||||
5. If the `sender`'s current membership state is not `join`, reject.
|
5. If the `sender`'s current membership state is not `join`, reject.
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,7 @@
|
||||||
{{ partial "render-api-changes" (dict "title" "Push Gateway API" "id" "push-gateway-api" "path" (path.Join $path "push_gateway")) }}
|
{{ partial "render-api-changes" (dict "title" "Push Gateway API" "id" "push-gateway-api" "path" (path.Join $path "push_gateway")) }}
|
||||||
{{ partial "render-api-changes" (dict "title" "Room Versions" "id" "room-versions" "path" (path.Join $path "room_versions")) }}
|
{{ partial "render-api-changes" (dict "title" "Room Versions" "id" "room-versions" "path" (path.Join $path "room_versions")) }}
|
||||||
{{ partial "render-api-changes" (dict "title" "Appendices" "id" "appendices" "path" (path.Join $path "appendices")) }}
|
{{ partial "render-api-changes" (dict "title" "Appendices" "id" "appendices" "path" (path.Join $path "appendices")) }}
|
||||||
|
{{ partial "render-api-changes" (dict "title" "Internal Changes/Tooling" "id" "internal" "path" (path.Join $path "internal")) }}
|
||||||
|
|
||||||
{{ define "partials/render-api-changes" }}
|
{{ define "partials/render-api-changes" }}
|
||||||
<h3 id="{{.id}}">{{ .title }}</h3>
|
<h3 id="{{.id}}">{{ .title }}</h3>
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ cd changelogs
|
||||||
rm -f rendered.*
|
rm -f rendered.*
|
||||||
|
|
||||||
# Reversed order so that room versions ends up on the bottom
|
# Reversed order so that room versions ends up on the bottom
|
||||||
|
towncrier --name "Internal Changes/Tooling" --dir "./internal" --config "./pyproject.toml" --yes
|
||||||
towncrier --name "Appendices" --dir "./appendices" --config "./pyproject.toml" --yes
|
towncrier --name "Appendices" --dir "./appendices" --config "./pyproject.toml" --yes
|
||||||
towncrier --name "Room Versions" --dir "./room_versions" --config "./pyproject.toml" --yes
|
towncrier --name "Room Versions" --dir "./room_versions" --config "./pyproject.toml" --yes
|
||||||
towncrier --name "Push Gateway API" --dir "./push_gateway" --config "./pyproject.toml" --yes
|
towncrier --name "Push Gateway API" --dir "./push_gateway" --config "./pyproject.toml" --yes
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue