From 9aed0cc933fea44ef8c87a5ae9b4b665a4f422de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Sat, 22 Mar 2025 10:47:13 +0100 Subject: [PATCH] chore: Add changelog about experimental-oidc feature removal 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, 5 insertions(+) diff --git a/crates/matrix-sdk/CHANGELOG.md b/crates/matrix-sdk/CHANGELOG.md index f82f32390..44953aa5a 100644 --- a/crates/matrix-sdk/CHANGELOG.md +++ b/crates/matrix-sdk/CHANGELOG.md @@ -64,6 +64,9 @@ simpler methods: a server when the end-user needs to be redirected to an address on localhost. It was used for `SsoLoginBuilder` and can now be used in other cases, like for login with the OAuth 2.0 API. +- The `OAuth` api is no longer gated behind the `experimental-oidc` cargo + feature. + ([#4830](https://github.com/matrix-org/matrix-rust-sdk/pull/4830)) ### Bug Fixes @@ -72,6 +75,8 @@ simpler methods: these secrets, making an attempt to remove them is considered good practice. Note that all secrets are uploaded to the server in an encrypted form. ([#4629](https://github.com/matrix-org/matrix-rust-sdk/pull/4629)) +- Most of the features in the `OAuth` API should now work under WASM + ([#4830](https://github.com/matrix-org/matrix-rust-sdk/pull/4830)) ### Refactor