From 359db7f28b4cb66bfb54c6f261b4b654a56b3dc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Wed, 3 Sep 2025 15:51:12 +0200 Subject: [PATCH] Add changelog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kévin Commaille --- crates/matrix-sdk/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/matrix-sdk/CHANGELOG.md b/crates/matrix-sdk/CHANGELOG.md index c0f4b5d91..63b7c01ac 100644 --- a/crates/matrix-sdk/CHANGELOG.md +++ b/crates/matrix-sdk/CHANGELOG.md @@ -50,6 +50,8 @@ All notable changes to this project will be documented in this file. ### Refactor +- [**breaking**] Upgrade ruma to 0.13.0 + ([#5623](https://github.com/matrix-org/matrix-rust-sdk/pull/5623)) - [**breaking**] `SyncSettings` token is now `SyncToken` enum type which has default behaviour of `SyncToken::ReusePrevious` token. This breaks `Client::sync_once`. For old behaviour, set the token to `SyncToken::NoToken` with the usual `SyncSettings::token` setter. - [**breaking**] Change the upload_encrypted_file and make it clone the client instead of owning it. The lifetime of the `UploadEncryptedFile` request returned by `Client::upload_encrypted_file()` only depends on the request lifetime now.