File tree Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,11 @@ All notable changes to this project will be documented in this file.
23
23
In the future additional choices (such as session storage, ` sqlite ` and ` indexeddb ` )
24
24
will likely be added as well.
25
25
26
+ Breaking changes:
27
+
28
+ - ` Client::reset_server_capabilities ` has been renamed to ` Client::reset_server_info ` .
29
+ ([ #5167 ] ( https://github.com/matrix-org/matrix-rust-sdk/pull/5167 ) )
30
+
26
31
## [ 0.12.0] - 2025-06-10
27
32
28
33
Breaking changes:
@@ -39,7 +44,6 @@ Breaking changes:
39
44
- ` RoomInfo ` replaces its field ` is_tombstoned: bool ` with ` tombstone: Option<RoomTombstoneInfo> ` ,
40
45
containing the data needed to implement the room migration UI, a message and the replacement room id.
41
46
([ #5027 ] ( https://github.com/matrix-org/matrix-rust-sdk/pull/5027 ) )
42
- - ` Client::reset_server_capabilities ` has been renamed to ` Client::reset_server_info ` .
43
47
44
48
Additions:
45
49
Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.
6
6
7
7
## [ Unreleased] - ReleaseDate
8
8
9
+ ### Refactor
10
+
11
+ - The cached ` ServerCapabilities ` has been renamed to ` ServerInfo ` and
12
+ additionally contains the well-known response alongside the existing server versions.
13
+ Despite the old name, it does not contain the server capabilities.
14
+ ([ #5167 ] ( https://github.com/matrix-org/matrix-rust-sdk/pull/5167 ) )
15
+
9
16
## [ 0.12.0] - 2025-06-10
10
17
11
18
No notable changes in this release.
@@ -52,9 +59,6 @@ No notable changes in this release.
52
59
([ #4897 ] ( https://github.com/matrix-org/matrix-rust-sdk/pull/4897 ) )
53
60
- [ ** breaking** ] ` RoomInfo::prev_state ` has been removed due to being useless.
54
61
([ #5054 ] ( https://github.com/matrix-org/matrix-rust-sdk/pull/5054 ) )
55
- - The cached ` ServerCapabilities ` has been renamed to ` ServerInfo ` and additionally contains
56
- the well-known response alongside the existing server versions. Despite the old name, it
57
- does not contain the server capabilities (yet?!).
58
62
59
63
## [ 0.10.0] - 2025-02-04
60
64
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
6
6
7
7
## [ Unreleased] - ReleaseDate
8
8
9
+ - ` ClientServerCapabilities ` has been renamed to ` ClientServerInfo ` . Alongside this,
10
+ ` Client::reset_server_info ` is now ` Client::reset_server_info ` and ` Client::fetch_server_capabilities `
11
+ is now ` Client::fetch_server_versions ` , returning the server versions response directly.
12
+ ([ #5167 ] ( https://github.com/matrix-org/matrix-rust-sdk/pull/5167 ) )
9
13
- ` Client::add_event_handler ` : Set ` Option<EncryptionInfo> ` in ` EventHandlerData ` for to-device messages.
10
14
If the to-device message was encrypted, the ` EncryptionInfo ` will be set. If it is ` None ` the message was sent in clear.
11
15
([ #5099 ] ( https://github.com/matrix-org/matrix-rust-sdk/pull/5099 ) )
@@ -78,9 +82,6 @@ All notable changes to this project will be documented in this file.
78
82
([ #5047 ] ( https://github.com/matrix-org/matrix-rust-sdk/pull/5047 ) )
79
83
- ` Room::set_unread_flag() ` is now a no-op if the unread flag already has the wanted value.
80
84
([ #5055 ] ( https://github.com/matrix-org/matrix-rust-sdk/pull/5055 ) )
81
- - ` ClientServerCapabilities ` has been renamed to ` ClientServerInfo ` . Alongside this,
82
- ` Client::reset_server_info ` is now ` Client::reset_server_info ` and ` Client::fetch_server_capabilities `
83
- is now ` Client::fetch_server_versions ` , returning the server versions response directly.
84
85
85
86
## [ 0.11.0] - 2025-04-11
86
87
You can’t perform that action at this time.
0 commit comments