From d727111a5133ef3e8cdea794eaa8a646359b9cb5 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 12 May 2025 10:58:07 +0200 Subject: [PATCH] doc(ui): Add #5000 in the `CHANGELOG.md`. --- crates/matrix-sdk-ui/CHANGELOG.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/crates/matrix-sdk-ui/CHANGELOG.md b/crates/matrix-sdk-ui/CHANGELOG.md index 7100057b1..a17bec1ca 100644 --- a/crates/matrix-sdk-ui/CHANGELOG.md +++ b/crates/matrix-sdk-ui/CHANGELOG.md @@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - ReleaseDate +### Bug Fixes + +- Introduce `Timeline` regions, which helps to remove a class of bugs in the + `Timeline` where items could be inserted in the wrong _regions_, such as + a remote timeline item before the `TimelineStart` virtual timeline item. + ([#5000](https://github.com/matrix-org/matrix-rust-sdk/pull/5000)) + ## [0.11.0] - 2025-04-11 ### Bug Fixes @@ -13,15 +20,15 @@ All notable changes to this project will be documented in this file. ### Features - [**breaking**] Optionally allow starting threads with `Timeline::send_reply`. - ([4819](https://github.com/matrix-org/matrix-rust-sdk/pull/4819)) + ([#4819](https://github.com/matrix-org/matrix-rust-sdk/pull/4819)) - [**breaking**] Push `RepliedToInfo`, `ReplyContent`, `EnforceThread` and `UnsupportedReplyItem` (becoming `ReplyError`) down into matrix_sdk. [`Timeline::send_reply()`] now takes an event ID rather than a `RepliedToInfo`. `Timeline::replied_to_info_from_event_id` has been made private in `matrix_sdk`. - ([4842](https://github.com/matrix-org/matrix-rust-sdk/pull/4842)) + ([#4842](https://github.com/matrix-org/matrix-rust-sdk/pull/4842)) - Allow sending media as (thread) replies. The reply behaviour can be configured through new fields on [`AttachmentConfig`]. - ([4852](https://github.com/matrix-org/matrix-rust-sdk/pull/4852)) + ([#4852](https://github.com/matrix-org/matrix-rust-sdk/pull/4852)) ### Refactor