From e410a97c5e3850387b3a8945d97262c97ed1fa63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Fri, 26 Jul 2024 23:33:42 +0200 Subject: [PATCH] Draft: xmpp: Update ChangeLog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- xmpp/ChangeLog | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/xmpp/ChangeLog b/xmpp/ChangeLog index 51e26c1d..bf486ecb 100644 --- a/xmpp/ChangeLog +++ b/xmpp/ChangeLog @@ -1,3 +1,32 @@ +Version 0.6.0: +2024-07-27 [ Maxime “pep” Buquet ] + * Breaking: + - Rename ClientBuilder::new_with_server to new_with_connector. (99036735) + * Changes: + - Add `syntax-highlighting` feature as a proxy for tokio-xmpp's. (aee4c7911) + - Ensure reqwest doesn't automatically pull openssl when we use rustls. (cde6450b) + - Fix typos via codespell. (002c2803) + - Bump dependencies. + - Remove unused features from dependencies. (2d11ada) + - Expose `bound_jid` on `Agent`. (e36b8d4f) + - Update to edition 2021 + + - Add handler for the Err case when parsing a PubSub event. (7579173c) + - Prevent crash when avatar is too big. (13449b19) + - Add documentation for method. (176d213e) + - Add `Agent::leave_room` method. (249d2aee, d2a56348) + - Stop interpreting “unavailable” status as a `RoomJoined` event. (49921ac7) + - `Event::Disconnected` now exposes reasons of the disconnect. (ba48f6de) + - Read legacy XEP-0048 v1.0 bookmarks. (5fbba5c9) + - Read legacy bookmarks or bookmarks2 depending on disco#info result on + account. (4f8dc68b) + - Split xmpp in various modules to facilitate contributions + - Assume BareJid and not FullJid as per the spec when @from isn't set on + received iq. (51f24627) + - Implement `Event::RoomSubject` for room subject changes / retrieval. (4f8ce0a9) + - Add StanzaTimeInfo for \ (XEP-0203). (3d9bdd6f) + - Allow `xmpp` to be built with no default features. (54de8d99) + Version 0.5.0: 2023-08-23 [ Maxime “pep” Buquet ] * Breaking changes: