Skip to content

Commit 06b3871

Browse files
pixlwavepoljar
authored andcommitted
chore: Fix changelogs after rebase
1 parent 675963e commit 06b3871

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

bindings/matrix-sdk-ffi/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ All notable changes to this project will be documented in this file.
2323
In the future additional choices (such as session storage, `sqlite` and `indexeddb`)
2424
will likely be added as well.
2525

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+
2631
## [0.12.0] - 2025-06-10
2732

2833
Breaking changes:
@@ -39,7 +44,6 @@ Breaking changes:
3944
- `RoomInfo` replaces its field `is_tombstoned: bool` with `tombstone: Option<RoomTombstoneInfo>`,
4045
containing the data needed to implement the room migration UI, a message and the replacement room id.
4146
([#5027](https://github.com/matrix-org/matrix-rust-sdk/pull/5027))
42-
- `Client::reset_server_capabilities` has been renamed to `Client::reset_server_info`.
4347

4448
Additions:
4549

crates/matrix-sdk-base/CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

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+
916
## [0.12.0] - 2025-06-10
1017

1118
No notable changes in this release.
@@ -52,9 +59,6 @@ No notable changes in this release.
5259
([#4897](https://github.com/matrix-org/matrix-rust-sdk/pull/4897))
5360
- [**breaking**] `RoomInfo::prev_state` has been removed due to being useless.
5461
([#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?!).
5862

5963
## [0.10.0] - 2025-02-04
6064

crates/matrix-sdk/CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

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))
913
- `Client::add_event_handler`: Set `Option<EncryptionInfo>` in `EventHandlerData` for to-device messages.
1014
If the to-device message was encrypted, the `EncryptionInfo` will be set. If it is `None` the message was sent in clear.
1115
([#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.
7882
([#5047](https://github.com/matrix-org/matrix-rust-sdk/pull/5047))
7983
- `Room::set_unread_flag()` is now a no-op if the unread flag already has the wanted value.
8084
([#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.
8485

8586
## [0.11.0] - 2025-04-11
8687

0 commit comments

Comments
 (0)