Skip to content

Commit

Permalink
chore: Add some missing links to the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
poljar committed Jan 13, 2025
1 parent 279c78b commit 787ba38
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
4 changes: 4 additions & 0 deletions crates/matrix-sdk-crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ All notable changes to this project will be documented in this file.

## [Unreleased] - ReleaseDate

### Features

- Accept stable identifier `sender_device_keys` for MSC4147 (Including device
keys with Olm-encrypted events).
([#4420](https://github.com/matrix-org/matrix-rust-sdk/pull/4420))

## [0.9.0] - 2024-12-18

### Features

- Expose new API `DehydratedDevices::get_dehydrated_device_pickle_key`, `DehydratedDevices::save_dehydrated_device_pickle_key`
and `DehydratedDevices::delete_dehydrated_device_pickle_key` to store/load the dehydrated device pickle key.
This allows client to automatically rotate the dehydrated device to avoid one-time-keys exhaustion and to_device accumulation.
Expand Down
1 change: 1 addition & 0 deletions crates/matrix-sdk-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ All notable changes to this project will be documented in this file.
`AttachmentSource` allows to send an attachment either from a file, or with
the bytes and the filename of the attachment. Note that all types that
implement `Into<PathBuf>` also implement `Into<AttachmentSource>`.
([#4451](https://github.com/matrix-org/matrix-rust-sdk/pull/4451))

## [0.9.0] - 2024-12-18

Expand Down
17 changes: 15 additions & 2 deletions crates/matrix-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,38 @@ All notable changes to this project will be documented in this file.

- Allow to set and check whether an image is animated via its `ImageInfo`.
([#4503](https://github.com/matrix-org/matrix-rust-sdk/pull/4503))

- Implement `Default` for `BaseImageInfo`, `BaseVideoInfo`, `BaseAudioInfo` and
`BaseFileInfo`. ([#4503](https://github.com/matrix-org/matrix-rust-sdk/pull/4503))
`BaseFileInfo`.
([#4503](https://github.com/matrix-org/matrix-rust-sdk/pull/4503))

- Expose `Client::server_versions()` publicly to allow users of the library to
get the versions of Matrix supported by the homeserver.
([#4519](https://github.com/matrix-org/matrix-rust-sdk/pull/4519))
- Create `RoomPrivacySettings` helper to group room settings functionality related to room access and visibility ([#4401](https://github.com/matrix-org/matrix-rust-sdk/pull/4401)).

- Create `RoomPrivacySettings` helper to group room settings functionality
related to room access and visibility.
([#4401](https://github.com/matrix-org/matrix-rust-sdk/pull/4401))

### Refactor

- [**breaking**] Move the optional `RequestConfig` argument of the
`Client::send()` method to the `with_request_config()` builder method. You
should call `Client::send(request).with_request_config(request_config).await`
now instead.
([#4443](https://github.com/matrix-org/matrix-rust-sdk/pull/4443))

- [**breaking**] Remove the `AttachmentConfig::with_thumbnail()` constructor and
replace it with the `AttachmentConfig::thumbnail()` builder method. You should
call `AttachmentConfig::new().thumbnail(thumbnail)` now instead.
([#4452](https://github.com/matrix-org/matrix-rust-sdk/pull/4452))

- [**breaking**] `Room::send_attachment()` and `RoomSendQueue::send_attachment()`
now take any type that implements `Into<String>` for the filename.
([#4451](https://github.com/matrix-org/matrix-rust-sdk/pull/4451))

- [**breaking**] `Recovery::are_we_the_last_man_standing()` has been renamed to `is_last_device()`.
([#4522](https://github.com/matrix-org/matrix-rust-sdk/pull/4522))

## [0.9.0] - 2024-12-18

Expand Down

0 comments on commit 787ba38

Please sign in to comment.