From f2abc555e28f29b14c441dd42f2a8eb696da4a7a Mon Sep 17 00:00:00 2001 From: Michael Goldenberg Date: Tue, 3 Feb 2026 12:14:47 -0500 Subject: [PATCH] doc(event-cache): update relevant change logs Signed-off-by: Michael Goldenberg --- crates/matrix-sdk-base/CHANGELOG.md | 3 +++ crates/matrix-sdk-indexeddb/CHANGELOG.md | 3 +++ crates/matrix-sdk-sqlite/CHANGELOG.md | 3 +++ 3 files changed, 9 insertions(+) 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