File tree 4 files changed +11
-1
lines changed
4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ Improvements:
44
44
- Add server support discovery endpoint, according to MSC1929 / Matrix 1.10
45
45
- Add ` dir ` ` Request ` field on the ` get_relating_events_with_rel_types ` and
46
46
` get_relating_events_with_rel_type_and_event_type ` endpoints
47
+ - Add unstable support for moderator server support discovery, according to MSC4121
47
48
48
49
# 0.17.4
49
50
@@ -83,7 +84,7 @@ Breaking changes:
83
84
84
85
Improvements:
85
86
86
- - Add convenience constructors for enabling lazy-loading in filters
87
+ - Add convenience constructors for enabling lazy-loading in filters
87
88
- Add support for using an existing session to log in another (MSC3882 / Matrix 1.7)
88
89
- Add support for media download redirects (MSC3860 / Matrix 1.7)
89
90
- Stabilize support for asynchronous media uploads (MSC2246 / Matrix 1.7)
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ unstable-msc3488 = []
47
47
unstable-msc3575 = []
48
48
unstable-msc3814 = []
49
49
unstable-msc3983 = []
50
+ unstable-msc4121 = []
50
51
51
52
[dependencies ]
52
53
as_variant = { workspace = true }
Original file line number Diff line number Diff line change @@ -112,6 +112,13 @@ pub enum ContactRole {
112
112
/// A role intended for sensitive requests.
113
113
Security ,
114
114
115
+ /// A role for moderation-related queries according to [MSC4121](https://github.com/matrix-org/matrix-spec-proposals/pull/4121).
116
+ ///
117
+ /// The future prefix for this if accepted will be `m.role.moderator`
118
+ #[ cfg( feature = "unstable-msc4121" ) ]
119
+ #[ ruma_enum( rename = "support.feline.msc4121.role.moderator" , alias = "m.role.moderator" ) ]
120
+ Moderator ,
121
+
115
122
#[ doc( hidden) ]
116
123
_Custom( PrivOwnedStr ) ,
117
124
}
Original file line number Diff line number Diff line change @@ -215,6 +215,7 @@ unstable-msc3955 = ["ruma-events?/unstable-msc3955"]
215
215
unstable-msc3956 = [" ruma-events?/unstable-msc3956" ]
216
216
unstable-msc3983 = [" ruma-client-api?/unstable-msc3983" ]
217
217
unstable-msc4075 = [" ruma-events?/unstable-msc4075" ]
218
+ unstable-msc4121 = [" ruma-client-api?/unstable-msc4121" ]
218
219
unstable-pdu = [" ruma-events?/unstable-pdu" ]
219
220
unstable-unspecified = [
220
221
" ruma-common/unstable-unspecified" ,
You can’t perform that action at this time.
0 commit comments