From 4c43b06445dca074d31ad03b7b5234b2b0d8a67c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Thu, 17 Jul 2025 10:05:53 +0200 Subject: [PATCH] Add changelogs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kévin Commaille --- bindings/matrix-sdk-ffi/CHANGELOG.md | 3 +++ crates/matrix-sdk-base/CHANGELOG.md | 9 +++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/bindings/matrix-sdk-ffi/CHANGELOG.md b/bindings/matrix-sdk-ffi/CHANGELOG.md index 664ac6fdd..df2e3e938 100644 --- a/bindings/matrix-sdk-ffi/CHANGELOG.md +++ b/bindings/matrix-sdk-ffi/CHANGELOG.md @@ -15,6 +15,9 @@ All notable changes to this project will be documented in this file. - `ClientBuilder::build_with_qr_code` has been removed. Instead, the Client should be built by passing `QrCodeData::server_name` to `ClientBuilder::server_name_or_homeserver_url`, after which QR login can be performed by calling `Client::login_with_qr_code`. ([#5388](https://github.com/matrix-org/matrix-rust-sdk/pull/5388)) +- The `event_id` field of `PredecessorRoom` was removed, due to its removal in the Matrix + specification with MSC4291. + ([#5419](https://github.com/matrix-org/matrix-rust-sdk/pull/5419)) ## [0.13.0] - 2025-07-10 diff --git a/crates/matrix-sdk-base/CHANGELOG.md b/crates/matrix-sdk-base/CHANGELOG.md index 35e3964e7..b1232f819 100644 --- a/crates/matrix-sdk-base/CHANGELOG.md +++ b/crates/matrix-sdk-base/CHANGELOG.md @@ -15,6 +15,11 @@ All notable changes to this project will be documented in this file. inviter. ([#5390](https://github.com/matrix-org/matrix-rust-sdk/pull/5390)) +### Refactor +- [**breaking**] The `event_id` field of `PredecessorRoom` was removed, due to + its removal in the Matrix specification with MSC4291. + ([#5419](https://github.com/matrix-org/matrix-rust-sdk/pull/5419)) + ## [0.13.0] - 2025-07-10 ### Features @@ -59,8 +64,8 @@ No notable changes in this release. - `EventCacheStoreMedia` has a new method `last_media_cleanup_time_inner` - There are new `'static` bounds in `MediaService` for the media cache stores - `event_cache::store::MemoryStore` implements `Clone`. -- `BaseClient` now has a `handle_verification_events` field which is `true` by - default and can be negated so the `NotificationClient` won't handle received +- `BaseClient` now has a `handle_verification_events` field which is `true` by + default and can be negated so the `NotificationClient` won't handle received verification events too, causing errors in the `VerificationMachine`. - [**breaking**] `Room::is_encryption_state_synced` has been removed ([#4777](https://github.com/matrix-org/matrix-rust-sdk/pull/4777))