From 32255cd1789d56a5f78ac196bc2709a3a2a646bb Mon Sep 17 00:00:00 2001 From: multi prise Date: Thu, 21 Aug 2025 10:33:08 +0200 Subject: [PATCH] Update changelog --- crates/matrix-sdk-sqlite/CHANGELOG.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/crates/matrix-sdk-sqlite/CHANGELOG.md b/crates/matrix-sdk-sqlite/CHANGELOG.md index 1c663b87e..11d5192c8 100644 --- a/crates/matrix-sdk-sqlite/CHANGELOG.md +++ b/crates/matrix-sdk-sqlite/CHANGELOG.md @@ -6,15 +6,20 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - ReleaseDate +### Features +- Implement a new constructrot that allow to open SqliteCryptoStore with a Key + ([#5472](https://github.com/matrix-org/matrix-rust-sdk/pull/5472)) + +### Refactor +- [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` + ([#5472](https://github.com/matrix-org/matrix-rust-sdk/pull/5472)) + ## [0.14.0] - 2025-09-04 No notable changes in this release. ## [0.13.0] - 2025-07-10 -### Refactor -- [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` (https://github.com/matrix-org/matrix-rust-sdk/pull/5472) - ### Security Fixes - Fix SQL injection vulnerability in `find_event_relations()`.