From f0b76f2295c3c61b9cf3d395b45cdfb3e6018dd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Mon, 7 Oct 2024 22:41:11 +0200 Subject: [PATCH] chore: Mention Matrix 1.12 in changelog --- crates/ruma-client-api/CHANGELOG.md | 11 ++++++----- crates/ruma-html/CHANGELOG.md | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/crates/ruma-client-api/CHANGELOG.md b/crates/ruma-client-api/CHANGELOG.md index 301cbda7..9f0c956e 100644 --- a/crates/ruma-client-api/CHANGELOG.md +++ b/crates/ruma-client-api/CHANGELOG.md @@ -11,7 +11,8 @@ Breaking changes: `media::get_content_as_filename::v3::Response` use now the strongly typed `ContentDisposition` instead of strings. - Replace `server_name` on `knock::knock_room::v3::Request` and - `membership::join_room_by_id_or_alias::v3::Request` with `via` as per MSC4156. + `membership::join_room_by_id_or_alias::v3::Request` with `via` as per MSC4156 + / Matrix 1.12. - Remove `RuleScope`, due to a clarification in the Matrix 1.12 where the `global` scope is now hardcoded. - The `push` endpoints don't take a scope anymore. @@ -38,8 +39,8 @@ Improvements: `Vec` instead of a vector of strings - This is a breaking change, but only for users of `unstable-msc3575` - Add the `get_login_token` field to `Capabilities`, according to a - clarification in the spec. -- Add support for account locking, according to MSC3939. + clarification in Matrix 1.12. +- Add support for account locking, according to MSC3939 / Matrix 1.12. - Allow constructing `error::ErrorBody::NotJson` outside of this crate. Bug fixes: @@ -47,9 +48,9 @@ Bug fixes: - Rename `avatar` to `avatar_url` when (De)serializing `SlidingSyncRoomHero` - `user_id` of `SlidingSyncRoomHero` is now mandatory - Make authentication with access token optional for the `change_password` and - `deactivate` endpoints. + `deactivate` endpoints, due to a clarification in Matrix 1.11. - Do not send a request body for the `logout` and `logout_all` endpoints, due - to a clarification in the spec. + to a clarification in Matrix 1.11. # 0.18.0 diff --git a/crates/ruma-html/CHANGELOG.md b/crates/ruma-html/CHANGELOG.md index 454e822f..0a70c8b4 100644 --- a/crates/ruma-html/CHANGELOG.md +++ b/crates/ruma-html/CHANGELOG.md @@ -3,7 +3,7 @@ Breaking Changes: - `MatrixElement::Div` is now a newtype variant. -- `AnchorData`'s `name` field was removed, according to MSC4159. +- `AnchorData`'s `name` field was removed, according to MSC4159 / Matrix 1.12. - html5ever was bumped to a new major version. A breaking change in the parsing API required us to rewrite the `Html` type. - `Html::sanitize()` and `Html::sanitize_with()` take a non-mutable reference.