From fd95d90bf9f93a3aa68376b1cbdffc3cada2c7b3 Mon Sep 17 00:00:00 2001 From: Michael Goldenberg Date: Wed, 22 Jul 2026 12:35:41 -0400 Subject: [PATCH] doc(indexeddb): add changelog file Signed-off-by: Michael Goldenberg --- crates/matrix-sdk-indexeddb/changelog.d/6782.fixed.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 crates/matrix-sdk-indexeddb/changelog.d/6782.fixed.md diff --git a/crates/matrix-sdk-indexeddb/changelog.d/6782.fixed.md b/crates/matrix-sdk-indexeddb/changelog.d/6782.fixed.md new file mode 100644 index 000000000..05b9e9274 --- /dev/null +++ b/crates/matrix-sdk-indexeddb/changelog.d/6782.fixed.md @@ -0,0 +1,5 @@ +Ensure that `IndexeddbEventCacheStore` properly pushes and removes events from a chunk. +Prior to these changes, pushing an event could erroneously replace an existing event, but +now it only replaces an existing event if it is being promoted from out-of-band to in-band. +Additionally, removing an event now properly shifts the indices of subsequent events in +the chunk.