From 759c5a9fcd8f7cf2f2bdba70ca8fd3a14fc6c865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Mart=C3=ADn?= Date: Thu, 18 Dec 2025 10:15:52 +0100 Subject: [PATCH] docs: Add changelog entries --- bindings/matrix-sdk-ffi/CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bindings/matrix-sdk-ffi/CHANGELOG.md b/bindings/matrix-sdk-ffi/CHANGELOG.md index 91497beb5..438e2d6ff 100644 --- a/bindings/matrix-sdk-ffi/CHANGELOG.md +++ b/bindings/matrix-sdk-ffi/CHANGELOG.md @@ -23,9 +23,16 @@ All notable changes to this project will be documented in this file. `Room::new_latest_event` overwrites the `Room::latest_event` method. See the documentation of `matrix_sdk::latest_event` to learn about the new API. [#5624](https://github.com/matrix-org/matrix-rust-sdk/pull/5624/) +- Created `RoomPowerLevels::events` function which returns a `HashMap` with all the power + levels per event type. ([#5937](https://github.com/matrix-org/matrix-rust-sdk/pull/5937)) ### Refactor +- [**breaking**] The existing `TimelineEventType` was renamed to `TimelineEventContent`, because it contained the + actual contents of the event. Then, we created a new `TimelineEventType` enum that actually contains *just* the + event type. ([#5937](https://github.com/matrix-org/matrix-rust-sdk/pull/5937)) +- [**breaking**] The function `TimelineEvent::event_type` is now `TimelineEvent::content`. + ([#5937](https://github.com/matrix-org/matrix-rust-sdk/pull/5937)) - [**breaking**] The `SpaceService` will no longer auto-subscribe to required client events when invoking the `subscribe_to_joined_spaces` but instead do it through its, now async, constructor.