Skip to content

Commit c60bfb8

Browse files
committed
chore: Add some missing links to the changelog
1 parent 9641aa9 commit c60bfb8

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

crates/matrix-sdk-crypto/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,16 @@ All notable changes to this project will be documented in this file.
66

77
## [Unreleased] - ReleaseDate
88

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

1315
## [0.9.0] - 2024-12-18
1416

17+
### Features
18+
1519
- Expose new API `DehydratedDevices::get_dehydrated_device_pickle_key`, `DehydratedDevices::save_dehydrated_device_pickle_key`
1620
and `DehydratedDevices::delete_dehydrated_device_pickle_key` to store/load the dehydrated device pickle key.
1721
This allows client to automatically rotate the dehydrated device to avoid one-time-keys exhaustion and to_device accumulation.

crates/matrix-sdk-ui/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ All notable changes to this project will be documented in this file.
2020
`AttachmentSource` allows to send an attachment either from a file, or with
2121
the bytes and the filename of the attachment. Note that all types that
2222
implement `Into<PathBuf>` also implement `Into<AttachmentSource>`.
23+
([#4451](https://github.com/matrix-org/matrix-rust-sdk/pull/4451))
2324

2425
## [0.9.0] - 2024-12-18
2526

crates/matrix-sdk/CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,38 @@ All notable changes to this project will be documented in this file.
1010

1111
- Allow to set and check whether an image is animated via its `ImageInfo`.
1212
([#4503](https://github.com/matrix-org/matrix-rust-sdk/pull/4503))
13+
1314
- Implement `Default` for `BaseImageInfo`, `BaseVideoInfo`, `BaseAudioInfo` and
14-
`BaseFileInfo`. ([#4503](https://github.com/matrix-org/matrix-rust-sdk/pull/4503))
15+
`BaseFileInfo`.
16+
([#4503](https://github.com/matrix-org/matrix-rust-sdk/pull/4503))
17+
1518
- Expose `Client::server_versions()` publicly to allow users of the library to
1619
get the versions of Matrix supported by the homeserver.
1720
([#4519](https://github.com/matrix-org/matrix-rust-sdk/pull/4519))
18-
- 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)).
21+
22+
- Create `RoomPrivacySettings` helper to group room settings functionality
23+
related to room access and visibility.
24+
([#4401](https://github.com/matrix-org/matrix-rust-sdk/pull/4401))
1925

2026
### Refactor
2127

2228
- [**breaking**] Move the optional `RequestConfig` argument of the
2329
`Client::send()` method to the `with_request_config()` builder method. You
2430
should call `Client::send(request).with_request_config(request_config).await`
2531
now instead.
32+
([#4443](https://github.com/matrix-org/matrix-rust-sdk/pull/4443))
33+
2634
- [**breaking**] Remove the `AttachmentConfig::with_thumbnail()` constructor and
2735
replace it with the `AttachmentConfig::thumbnail()` builder method. You should
2836
call `AttachmentConfig::new().thumbnail(thumbnail)` now instead.
37+
([#4452](https://github.com/matrix-org/matrix-rust-sdk/pull/4452))
38+
2939
- [**breaking**] `Room::send_attachment()` and `RoomSendQueue::send_attachment()`
3040
now take any type that implements `Into<String>` for the filename.
41+
([#4451](https://github.com/matrix-org/matrix-rust-sdk/pull/4451))
42+
3143
- [**breaking**] `Recovery::are_we_the_last_man_standing()` has been renamed to `is_last_device()`.
44+
([#4522](https://github.com/matrix-org/matrix-rust-sdk/pull/4522))
3245

3346
## [0.9.0] - 2024-12-18
3447

0 commit comments

Comments
 (0)