From 2b450a0a6acdd895cbef04a564aa467a63ee3fe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Fri, 4 Apr 2025 12:56:13 +0200 Subject: [PATCH] chore: Add changelog for Client::logout() 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 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/matrix-sdk/CHANGELOG.md b/crates/matrix-sdk/CHANGELOG.md index 4bf5b41b9..50c44ff86 100644 --- a/crates/matrix-sdk/CHANGELOG.md +++ b/crates/matrix-sdk/CHANGELOG.md @@ -74,6 +74,9 @@ simpler methods: `ClientBuilder::sqlite_store_with_config_and_cache_path` to configure the SQLite store with the new `SqliteStoreConfig` structure ([#4870](https://github.com/matrix-org/matrix-rust-sdk/pull/4870)) +- Add `Client::logout()` that allows to log out regardless of the `AuthApi` that + is used for the session. + ([#4886](https://github.com/matrix-org/matrix-rust-sdk/pull/4886)) ### Bug Fixes @@ -201,7 +204,7 @@ simpler methods: - `OAuthError::MissingDeviceId` was removed, it cannot occur anymore. - [**breaking**] `OidcRegistrations` was renamed to `OAuthRegistrationStore`. ([#4814](https://github.com/matrix-org/matrix-rust-sdk/pull/4814)) - - `OidcRegistrationsError` was renamed to `OAuthRegistrationStoreError`. + - `OidcRegistrationsError` was renamed to `OAuthRegistrationStoreError`. - The `registrations` module was renamed and is now private. `OAuthRegistrationStore` and `ClientId` are exported from `oauth`, and `OAuthRegistrationStoreError` is exported from `oauth::error`.