Travis Ralston
33309fb68e
Add changelog
4 years ago
Travis Ralston
0f9ffdf01a
Make server ACL example inherit from state events
4 years ago
Travis Ralston
33d738e665
Document the m.room.member unsigned object in full
4 years ago
Travis Ralston
1c1e351778
Move m.room.member's unsigned data to the top level
4 years ago
Travis Ralston
ffea5d5e61
Document top-level UnsignedData objects
4 years ago
Hubert Chathi
ec0b9badc7
Merge remote-tracking branch 'origin/master' into cross-signing-spec
4 years ago
Hubert Chathi
67edc3e229
add clarifications and diagrams
4 years ago
Travis Ralston
3fc5540755
Fix r0.1.4 changelog reference
4 years ago
Kitsune Ral
3b5340539d
c2s: Make allOf and description siblings throughout the PR
...
The overall mess with allOf will be addressed separately; this PR just
puts $ref under allOf to fix the glaring misuse of $ref objects.
4 years ago
Kitsune Ral
48af2e5b47
joining.yaml: put descriptions next to their properties
...
Fixing the problem described in https://github.com/matrix-org/matrix-doc/pull/2518#issuecomment-621684187
4 years ago
Kitsune Ral
040a91f42d
api/: More cleanup in descriptions
...
(and a fix in one example).
4 years ago
Kitsune Ral
f299f60e17
Use public_rooms_response.yaml instead of replicating the same definition
...
Signed-off-by: Alexey Rusakov <Alexey.Rusakov@pm.me>
4 years ago
Kitsune Ral
b789f3e10b
dump-swagger.py: fix a typo in the help string
4 years ago
Kitsune Ral
67a8176903
Clarify officially that we use multiple API files
...
This is not something endorsed by the OpenAPI spec, just our practice.
4 years ago
Kitsune Ral
6cfb94562e
c2s: clean up $ref objects
...
* Most of the changes: align to the $ref object definition
(https://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03#section-3 )
that says that any attribute other than $ref be ignored.
* Remove extraneous leading ./ in $ref paths
* Fix an apparent typo in registration.yaml:
/account/password/msisdn/requestToken used a file from ../identity/*
instead of its c2s namesake.
4 years ago
Travis Ralston
07d4606352
Merge pull request #2585 from matrix-org/client_server/release-r0.6.1
...
Client-Server r0.6.1
4 years ago
Travis Ralston
32133e6ec3
Merge pull request #2584 from matrix-org/server_server/release-r0.1.4
...
Server-Server r0.1.4
4 years ago
Travis Ralston
09986af8fc
Server-Server r0.1.4
...
Includes a link to r0.1.3 because we forgot
4 years ago
Travis Ralston
19a97c62e2
Client-Server r0.6.1
4 years ago
Travis Ralston
e14cf35c80
Merge pull request #2563 from matrix-org/travis/spec/2240-and-assoc--r-v6
...
Room Version 6
4 years ago
Travis Ralston
db72e7caea
Merge pull request #2575 from matrix-org/travis/clarification/send-join
...
Clarify the auth_chain and state requirements for /send_join
4 years ago
Travis Ralston
c3289614da
Merge pull request #2562 from matrix-org/travis/spec/2432-alias-semantics
...
Add spec for new alias handling (client-server)
4 years ago
Travis Ralston
4b64d80437
Remove v6 TODO
...
To avoid the conflict, hopefully.
4 years ago
Travis Ralston
65c6435093
Merge pull request #2570 from matrix-org/travis/clarification/s2s-auth
...
Clarify which server names to sign requests with
4 years ago
Travis Ralston
47c531adff
Clarify exactly which servers
...
Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
4 years ago
Travis Ralston
04a26dafd0
Merge pull request #2546 from matrix-org/travis/spec/1466-softlogout
...
Spec soft-logout per MSC1466
4 years ago
Travis Ralston
a5cb9c655c
It's important to say who
...
Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
4 years ago
Travis Ralston
bea6b321a5
Change the nots order
...
Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
4 years ago
Travis Ralston
d4c19a0e80
Federation
...
Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
4 years ago
Travis Ralston
9bdafab2a4
Merge pull request #2571 from matrix-org/travis/clarification/createRoom-events
...
Clarify that a creation event and member event are needed for createRoom
5 years ago
Travis Ralston
25f4a30b18
Merge pull request #2577 from matrix-org/travis/clarification/spelling
...
Fix more typos throughout the specification
5 years ago
Travis Ralston
9792921357
Merge pull request #2576 from matrix-org/travis/clarification/server-names
...
Clarify that server names are at least 1 character
5 years ago
Travis Ralston
56ba0c7862
Merge pull request #2574 from matrix-org/travis/clarification/member-profiles
...
Remove claim that profile info is exclusively managed by the server
5 years ago
Travis Ralston
2cf68945d3
Merge pull request #2572 from matrix-org/travis/clarification/1179-forward-link
...
Update MSC1779 to forward link to matrix.org/foundation
5 years ago
Travis Ralston
669377888e
Fix more typos throughout the specification
...
Fixes https://github.com/matrix-org/matrix-doc/issues/2193
5 years ago
Travis Ralston
e9998c5335
Clarify that server names are at least 1 character
...
Fixes https://github.com/matrix-org/matrix-doc/issues/2460
5 years ago
Travis Ralston
67d46fa881
Clarify the auth_chain and state for send_join
...
Fixes https://github.com/matrix-org/matrix-doc/issues/2467
Fixes https://github.com/matrix-org/matrix-doc/issues/2464
This is based on looking at Synapse, not actually testing it. Within the send_join handling functions, an "event context" is acquired [here](d14c4d6b6d/synapse/handlers/federation.py (L1472)
) which then later uses the previous state (populated [here](d14c4d6b6d/synapse/state/__init__.py (L286-L289)
) in the event context) [here](d14c4d6b6d/synapse/handlers/federation.py (L1494-L1501)
) to return a response. Within the event context, the previous state IDs are populated [here](d14c4d6b6d/synapse/state/__init__.py (L351)
).
5 years ago
Kitsune Ral
c72d30513e
c2s: Add required: true to request bodies
5 years ago
Hubert Chathi
a1177cbd61
Merge pull request #2566 from uhoreg/remove_string_string_string
...
E2E clarifications/improvements
5 years ago
Travis Ralston
06b0c1762a
Move the send_join response to its own definition
...
Both APIs need clarification, so dedupe the changes.
We should also probably deprecate some of this stuff so we can eventually remove it.
5 years ago
Travis Ralston
e8548f3c3b
Remove claim that profile info is exclusively managed by the server
...
Fixes https://github.com/matrix-org/matrix-doc/issues/2496
5 years ago
Travis Ralston
ac187904bb
Update MSC1779 to forward link to matrix.org/foundation
5 years ago
Travis Ralston
200212ffd7
Clarify that a creation event and member event are needed for createRoom
...
Fixes https://github.com/matrix-org/matrix-doc/issues/2494
5 years ago
Travis Ralston
b876ac5893
Clarify which server names to sign requests with
...
Fixes https://github.com/matrix-org/matrix-doc/issues/2512
5 years ago
Travis Ralston
730d164df7
Add changelogs
5 years ago
Travis Ralston
36ed6e94a2
Re-introduce signature schemas
5 years ago
Travis Ralston
93f68866c5
Fix spec generation not using titles on pseudo objects
5 years ago
Travis Ralston
e9e9366804
Merge pull request #2209 from lucavb/master
...
MSC2209: Alter auth rules to check notifications in m.room.power_levels
5 years ago
Travis Ralston
5b0e94c6e0
Merge pull request #2240 from matrix-org/travis/msc/rooms-v6
...
MSC2240: Room version 6
5 years ago
Travis Ralston
e422bad0ab
Merge pull request #2540 from matrix-org/clokep/json-validation-room-ver
...
MSC2540: Stricter event validation: JSON compliance
5 years ago