Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add missing changelog entries for the ui crate #4312

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 60 additions & 1 deletion crates/matrix-sdk-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [0.8.0] - 2024-11-19
## [matrix-sdk-ui-0.8.0] - 2024-11-19

### Bug Fixes

Expand All @@ -18,6 +18,49 @@ All notable changes to this project will be documented in this file.
previous session.
([#3519](https://github.com/matrix-org/matrix-rust-sdk/pull/3519))

- Implement proper redact handling in the widget driver.
This allows the Rust SDK widget driver to support widgets that
rely on redacting.

- Add `reason` field to `TimelineItemContent::RoomMembership`

- Add `m.room.join_rules` to the required state

- `EncryptionSyncService` and `Notification` are using
`Client::cross_process_store_locks_holder_name`.

- Add `ClientBuilder::cross_process_store_locks_holder_name`.

- Implement unwedging for media uploads

- For `Timeline::send_*` fns, treat the passed `caption` parameter as markdown
and use the HTML generated from it as the `formatted_caption` if there is
none.

- Send state from state sync and not from timeline to widget
([#4254](https://github.com/matrix-org/matrix-rust-sdk/pull/4254))

- Allow aborting media uploads

- Add `is_direct` and `fn inviter` to `RoomPreview`

- Add `RoomPreviewInfo::num_active_members`

- Make `RoomPreviewInfo::room_type` an enum, not an optional String

- Add support for including captions with file uploads.

- Check if the user is allowed to do a room mention before trying to send a call
notify event.
([#4271](https://github.com/matrix-org/matrix-rust-sdk/pull/4271))

### Documentation

- Start an architecture document with a high-level description of the crates

- Improve documentation of `Client::observe_events`.


### Features

- Add `m.room.join_rules` to the required state.
Expand All @@ -36,6 +79,22 @@ All notable changes to this project will be documented in this file.
- [**breaking**] `Timeline::item_by_transaction_id` has been renamed to
`Timeline::local_item_by_transaction_id` (always returns local echoes).

- Remove duplicated fields in media event contents

- Use `SendHandle` for media uploads too

- Move `event_cache_store/` to `event_cache/store/` in `matrix-sdk-base`.

- Move `formatted_caption_from` to the SDK, rename it

- Tidy up and start commenting the widget code

- Get rid of `ProcessingContext` and inline it in its callers

- Get rid of unused `limits` parameter when constructing a `WidgetMachine`

- Use a specialized mutex for locking access to the state store and `being_sent`


# 0.7.0

Expand Down
Loading