diff --git a/crates/matrix-sdk-base/CHANGELOG.md b/crates/matrix-sdk-base/CHANGELOG.md index d4214694a..1757e6547 100644 --- a/crates/matrix-sdk-base/CHANGELOG.md +++ b/crates/matrix-sdk-base/CHANGELOG.md @@ -19,6 +19,9 @@ All notable changes to this project will be documented in this file. - The `LatestEventValue::LocalHasBeenSent` variant gains a new `event_id: OwnedEventId` field. ([#5977](https://github.com/matrix-org/matrix-rust-sdk/pull/5977)) +- [**breaking**] `RelationalLinkedChunk::apply_updates` returns an error rather + than panicking. This is necessary in order to ensure certain behaviors are disallowed. + ([#6061](https://github.com/matrix-org/matrix-rust-sdk/pull/6061)) ### Refactor diff --git a/crates/matrix-sdk-indexeddb/CHANGELOG.md b/crates/matrix-sdk-indexeddb/CHANGELOG.md index 6af6c0a77..7403f09fa 100644 --- a/crates/matrix-sdk-indexeddb/CHANGELOG.md +++ b/crates/matrix-sdk-indexeddb/CHANGELOG.md @@ -17,6 +17,9 @@ All notable changes to this project will be documented in this file. `room_key_backups_fully_downloaded` field in `Changes`. ([#6017](https://github.com/matrix-org/matrix-rust-sdk/pull/6017)) ([#6044](https://github.com/matrix-org/matrix-rust-sdk/pull/6044)) +- [**breaking**] In `EventCacheStore::handle_linked_chunk_updates`, new chunks may no longer + reference chunk identifiers which do not yet exist in the store + ([#6061](https://github.com/matrix-org/matrix-rust-sdk/pull/6061)) ### Bug Fixes diff --git a/crates/matrix-sdk-sqlite/CHANGELOG.md b/crates/matrix-sdk-sqlite/CHANGELOG.md index 5073267e5..0c8887f3e 100644 --- a/crates/matrix-sdk-sqlite/CHANGELOG.md +++ b/crates/matrix-sdk-sqlite/CHANGELOG.md @@ -12,6 +12,9 @@ All notable changes to this project will be documented in this file. `room_key_backups_fully_downloaded` field in `Changes`. ([#6017](https://github.com/matrix-org/matrix-rust-sdk/pull/6017)) ([#6044](https://github.com/matrix-org/matrix-rust-sdk/pull/6044)) +- [**breaking**] In `EventCacheStore::handle_linked_chunk_updates`, new chunks may no longer + reference chunk identifiers which do not yet exist in the store + ([#6061](https://github.com/matrix-org/matrix-rust-sdk/pull/6061)) ### Bug Fixes