Skip to content

Commit a98f852

Browse files
committed
docs: Update CHANGELOGs.
1 parent 7ef47d2 commit a98f852

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

crates/matrix-sdk-crypto/CHANGELOG.md

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

77
## [Unreleased] - ReleaseDate
88

9+
### Features
10+
11+
- Improves feedback support for shared history when downloading room key bundles.
12+
([#5737](https://github.com/matrix-org/matrix-rust-sdk/pull/5737))
13+
- Add `RoomKeyWithheldEntry` enum, wrapping either a received to-device `m.room_key.withheld` event or
14+
its content, if derived from a downloaded room key bundle.
15+
- `OlmMachine::receive_room_key_bundle` now appends withheld key information to the store.
16+
- [**breaking**] `Changes::withheld_session_info` now stores a `RookKeyWithheldEntry` in each `room-id`-`session-id` entry.
17+
- [**breaking**] `CryptoStore::get_withheld_info` now returns `Result<Option<RookKeyWithheldEntry>>`. This change also affects `MemoryStore`.
18+
919
### Bug Fixes
1020

1121
- Fix a bug introduced in 0.14.0 which meant that the serialization of the value returned by `OtherUserIdentity::verification_request_content` did not include a `msgtype` field.

crates/matrix-sdk-indexeddb/CHANGELOG.md

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

77
## [Unreleased] - ReleaseDate
88

9+
### Features
10+
11+
- [**breaking**] `IndexeddbCryptoStore::get_withheld_info` now returns `Result<Option<RoomKeyWithheldEntry>, ...>`
12+
([#5737](https://github.com/matrix-org/matrix-rust-sdk/pull/5737))
13+
914
## [0.14.0] - 2025-09-04
1015

1116
No notable changes in this release.

crates/matrix-sdk-sqlite/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@ All notable changes to this project will be documented in this file.
77
## [Unreleased] - ReleaseDate
88

99
### Features
10+
1011
- Implement a new constructor that allows to open `SqliteCryptoStore` with a cryptographic key
1112
([#5472](https://github.com/matrix-org/matrix-rust-sdk/pull/5472))
1213

14+
- [**breaking**] `SqliteCryptoStore::get_withheld_info` now returns `Result<Option<RoomKeyWithheldEntry>>`.
15+
([#5737](https://github.com/matrix-org/matrix-rust-sdk/pull/5737))
16+
1317
### Refactor
1418
- [breaking] Change the logic for opening a store so as to use a `Secret` enum in the function `open_with_pool` instead of a `passphrase`
1519
([#5472](https://github.com/matrix-org/matrix-rust-sdk/pull/5472))
@@ -85,5 +89,3 @@ No notable changes in this release.
8589
### Refactor
8690

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

0 commit comments

Comments
 (0)