mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-05-01 14:44:09 +02:00
Compare commits
4 commits
d8b964a306
...
9a6245241e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9a6245241e | ||
|
|
c39c7d0680 | ||
|
|
c94b54dab1 | ||
|
|
d010df9518 |
|
|
@ -0,0 +1 @@
|
|||
Fix the example of the `GET /sync` endpoint and the `m.room.member` example used in several places.
|
||||
1
changelogs/internal/newsfragments/2079.new
Normal file
1
changelogs/internal/newsfragments/2079.new
Normal file
|
|
@ -0,0 +1 @@
|
|||
Make disclosure of conflicts of interest mandatory for spec change proposals.
|
||||
|
|
@ -79,6 +79,19 @@ Please [see
|
|||
MSC1779](https://github.com/matrix-org/matrix-spec-proposals/blob/main/proposals/1779-open-governance.md)
|
||||
for full details of the project's Guiding Principles.
|
||||
|
||||
For the purposes of transparency and to underpin the "greater benefit"
|
||||
principle, proposals MUST disclose possible conflicts of interest where
|
||||
they might reasonably exist. Authors MAY do this by filling out the
|
||||
following checklist and publishing it together with their proposal.
|
||||
|
||||
```
|
||||
- [ ] I am being paid for working on this proposal by <ORGANIZATION>
|
||||
- [ ] I am an employee or member of <ORGANIZATION> which is involved in the Matrix ecosystem
|
||||
- [ ] I have another relationship that might appear to be a conflict of interest: <DETAILS>
|
||||
- [ ] I have some other type of financial interest in Matrix or this proposal: <DETAILS>
|
||||
- [ ] None of the above
|
||||
```
|
||||
|
||||
## Technical notes
|
||||
|
||||
Proposals **must** develop Matrix as a layered protocol: with new
|
||||
|
|
@ -193,7 +206,8 @@ is as follows:
|
|||
filename that follows the format `1234-my-new-proposal.md` where
|
||||
`1234` is the MSC ID.
|
||||
- Your PR description must include a link to the rendered Markdown
|
||||
document and a summary of the proposal.
|
||||
document and a disclosure of potential conflicts of interest where
|
||||
they might reasonably apply.
|
||||
- It is often very helpful to link any related MSCs or [matrix-spec
|
||||
issues](https://github.com/matrix-org/matrix-spec/issues) to give
|
||||
context for the proposal.
|
||||
|
|
|
|||
|
|
@ -441,17 +441,57 @@ paths:
|
|||
"state": {
|
||||
"events": [
|
||||
{
|
||||
"$ref": "../../event-schemas/examples/m.room.member.yaml"
|
||||
"content": {
|
||||
"avatar_url": "mxc://example.org/SFHyPlCeYUSFFxlgbQYZmoEoe",
|
||||
"displayname": "Example user",
|
||||
"membership": "join"
|
||||
},
|
||||
"event_id": "$143273976499sgjks:example.org",
|
||||
"origin_server_ts": 1432735824653,
|
||||
"sender": "@example:example.org",
|
||||
"state_key": "@example:example.org",
|
||||
"type": "m.room.member",
|
||||
"unsigned": {
|
||||
"age": 45603,
|
||||
"membership": "join"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"timeline": {
|
||||
"events": [
|
||||
{
|
||||
"$ref": "../../event-schemas/examples/m.room.member.yaml"
|
||||
"content": {
|
||||
"avatar_url": "mxc://example.org/SEsfnsuifSDFSSEF",
|
||||
"displayname": "Alice Margatroid",
|
||||
"membership": "join",
|
||||
"reason": "Looking for support"
|
||||
},
|
||||
"event_id": "$143273582443PhrSn:example.org",
|
||||
"origin_server_ts": 1432735824653,
|
||||
"sender": "@alice:example.org",
|
||||
"state_key": "@alice:example.org",
|
||||
"type": "m.room.member",
|
||||
"unsigned": {
|
||||
"age": 1234,
|
||||
"membership": "join"
|
||||
}
|
||||
},
|
||||
{
|
||||
"$ref": "../../event-schemas/examples/m.room.message$m.text.yaml"
|
||||
"content": {
|
||||
"body": "This is an example text message",
|
||||
"format": "org.matrix.custom.html",
|
||||
"formatted_body": "<b>This is an example text message</b>",
|
||||
"msgtype": "m.text"
|
||||
},
|
||||
"event_id": "$143273582443PhrSn:example.org",
|
||||
"origin_server_ts": 1432735824653,
|
||||
"sender": "@example:example.org",
|
||||
"type": "m.room.message",
|
||||
"unsigned": {
|
||||
"age": 1234,
|
||||
"membership": "join"
|
||||
}
|
||||
}
|
||||
],
|
||||
"limited": true,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"$ref": "core/state_event.json",
|
||||
"state_key": "@alice:example.org",
|
||||
"sender": "@alice:example.org",
|
||||
"type": "m.room.member",
|
||||
"content": {
|
||||
"membership": "join",
|
||||
|
|
|
|||
Loading…
Reference in a new issue