doc(ui): Add #5000 in the CHANGELOG.md.

This commit is contained in:
Ivan Enderlin
2025-05-12 10:58:07 +02:00
parent 8d785b762e
commit d727111a51

View File

@@ -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