Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package poezio for openSUSE:Factory checked 
in at 2022-12-07 17:34:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/poezio (Old)
 and      /work/SRC/openSUSE:Factory/.poezio.new.1835 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "poezio"

Wed Dec  7 17:34:59 2022 rev:4 rq:1040755 version:0.14

Changes:
--------
--- /work/SRC/openSUSE:Factory/poezio/poezio.changes    2022-07-06 
15:42:34.998568722 +0200
+++ /work/SRC/openSUSE:Factory/.poezio.new.1835/poezio.changes  2022-12-07 
17:36:18.488980394 +0100
@@ -1,0 +2,118 @@
+Tue Dec  6 16:12:10 UTC 2022 - Michael Vetter <[email protected]>
+
+- Update to 0.14:
+  Configuration changes:
+  * ADDED: `mam_sync`, `mam_sync_limit`.
+  * ADDED: `autocolor_tab_names`.
+  * CHANGED: `ca_cert_path` is commented out. Poezio will attempt to guess
+    common CA bundle paths. The option can be used to overwrite this behaviour.
+  * REMOVED: `force_remote_bookmarks`.
+  * REMOVED: options related to activity, mood, gaming, tune:
+    `enable_user_activity`, `enable_user_mood`, `enable_user_gaming`,
+    `enable_user_tune`, `display_activity_notifications`,
+    `display_mood_notifications`, `display_gaming_notifications`,
+    `display_tune_notifications`.
+  * REMOVED: `deterministic_muc_colors`.
+  Changes:
+  * DEPRECATION: /leave is deprecated. Use /part or /close instead.
+  * REMOVED: rich presence (activity, mood, gaming, tune) from poezio, 
alongside
+    with configuration options and commands: /activity, /mood,
+    and /gaming. These are moved to the new user_extras plugin.
+  * REMOVED: non-deterministic nick colors in MUC.
+  * REMOVED: XEP-0319 support removed for privacy and performance.
+  * REMOVED: Support for pypy3 with the removal of poopt.py
+  * ADDED: New /request_voice command for moderated rooms
+  * ADDED: /join: support using an XMPP URI (xmpp:...?join)
+  * ADDED: /destroy_room: new optional reason and altroom arguments
+  * ADDED: Newlines now considered as word separator in input manipulation 
(#3411)
+  * ADDED: Colored tab names or number using Consistent Color Generation behind
+    `autocolor_tab_names` (thanks jonas!)
+  * Stop highlighting on MUC history messages just because they're delayed
+  * Stop displaying the traceback in debug log when /xhtml fails
+  * Ensure launch.sh can be use outside the repository (Thanks kaliko)
+  * Detect `/set option = value` pattern and do as it `/set option value` was
+    called. (#3517)
+  * Newlines taken into account on completion (#3385)
+  * Allow resizing certificate confirmation window (#3371)
+  * Make theming more configurable around nicks
+  * Log MUC <destroy/> payload in the information buffer
+  * impromptu: wait for room subject before configuring and inviting
+  * Impromptu: rooms now have pronouceable short names
+  * impromptu: ensure a room is empty before joining
+  * impromptu: now uses mediated invites
+  * Fetch from MAM by default when use_log is False.
+  * xhtml: Add a new line after a blockquote
+ Bug fixes:
+  * Ensure bookmark is present before removing it in /close.
+  * Ensure bookmarks are saved correctly on method config change, and on 
/close.
+  * Ensure nick is added to bookmark when specified
+  * Do not crash on bookmark without a nickname (Thanks Ge0rG)
+  * Ensure the correct tab is bookmarked on /bookmark and /join
+  * /bookmark: treat empty nick as no nick to avoid failing on empty resource
+  * Fix closing a tab not in bookmarks
+  * Disco barejid instead of domains on sent carbons. Follow-up of 5e40437.
+  * Only use JID internally when handling affiliations. Add nick if present.  
(#3536)
+  * /last_activity: prevent traceback
+  * Fix bad error handling when checking bookmarks storage
+  * `/join / password` works again
+  * Report available presence in tabs correctly
+  * /display_correction: now reports the correct time for private messages 
(#3532)
+  * Fix composing indicators not showing (#3527)
+  * Fix pasting text in data forms and bookmarkstab (#3519)
+  * Fix /me logging (#3432)
+  * Retrieve nick colors from the correct section
+  * Do not scroll right by default in dataforms/bookmark text
+  * Hack around the time limit for topic messages
+  * Ensure MUC-PM logging filenames are generated as expected (Thanks Ge0rG, 
southerntofu)
+  * Fix poezio displaying many times the same participant in the user list.
+  * Fix default dataform field handling (#3554)
+  * Fix MUCListTab not joining selected MUCs (#3553)
+  * Fix /color completion (Thanks eijebong)
+  * /info: Don't display comma before status message if not available
+  Plugins:
+  * ADDED: untrackme plugin. based on remove_get_trackers.
+  * ADDED: user_extras plugin. /activity, /mood and /gaming moved from core.
+  * ADDED: sticker plugin.
+  * DEPRECATED: remove_get_trackers
+  * REMOVED: /irc_login from the irc plugin.
+  * Reorder: Prevent GapTabs from being serialized and ignore when serialized 
as
+    they're recreated automatically.
+  * Code: prevent traceback when not enough arguments
+  * Link: Add support for aesgcm, gemini and gopher URIs
+  * Contact: iterate all data forms (Thanks Ge0rG)
+  * Fix plugins (embed, lastlog, otr, quote, time_marker) to use 
poezio.ui.types
+  * Disco: Added error handling
+  * IRC: Fix the plugin to work with the various refactors, and use
+    irc.jabberfr.org as a default gateway
+  API:
+  * BREAKING: E2EEPlugin.decrypt's `tab` parameter is now of type
+    Optional[ChatTab] instead of ChatTab.
+  * BREAKING: E2EEPlugin.supported_tab_types is now required
+  * BREAKING: decrypt method is now async
+  * E2EEPlugin decrypts encrypted messages even when they have no body.
+  * E2EEPlugin lets through already encrypted messages without giving them
+    to the user lib (poezio-omemo, for example).
+  * Correctly pass realjid to decrypt call for MUC messages
+  *  /<encryption_name>_fingerprint command is added. Plugins can implement
+    `get_fingerprints` and `format_fingerprint` for it to return a (formatted)
+    value.
+  Under the hood:
+  * Moved development from 'master' to 'main' branch
+  * Lots of type hints added (decorators, multiuserchat, shlex, common, muctab,
+    etc.) fixing many bugs
+  * Lots of event handlers and calls are now async in poezio. Many callbacks 
removed.
+  * Lots of refactoring
+  * Performance improvements:
+    - Trim all messages by 24 bytes on 64-bit systems
+    - Reduce log parsing by a lot
+  * No more safeJID calls. (#3457)
+  * Rework some features to use slixmpp's API instead of custom poezio code
+    (i.e., muc's set_subject, set_role, set_affiliation, destroy_room,
+    cancel_config, set_room_config, and most events)
+  * Split commands from Core
+  * Require typing_extensions package for python
+  * Require setuptools package explicitly because of pkg_resources' import
+  * Replace asyncio.ensure_future with asyncio.create_task
+- Update URL from http://poezio.eu/en/ to https://poez.io/en/  
+
+-------------------------------------------------------------------

Old:
----
  poezio-v0.13.1.tar.gz

New:
----
  poezio-v0.14.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ poezio.spec ++++++
--- /var/tmp/diff_new_pack.zyHB7h/_old  2022-12-07 17:36:18.912982716 +0100
+++ /var/tmp/diff_new_pack.zyHB7h/_new  2022-12-07 17:36:18.916982738 +0100
@@ -2,7 +2,7 @@
 #
 # spec file for package poezio
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,12 +18,12 @@
 
 
 Name:           poezio
-Version:        0.13.1
+Version:        0.14
 Release:        0
 Summary:        XMPP Client for the Console
 License:        MIT
 Group:          Productivity/Networking/Other
-URL:            http://poezio.eu/en/
+URL:            https://poez.io/en/
 Source:         
https://lab.louiz.org/poezio/poezio/-/archive/v%{version}/poezio-v%{version}.tar.gz
 # PATCH-FIX-OPENSUSE - remove shebangs -- [email protected]
 Patch0:         poezio-remove_shebang.patch

++++++ poezio-v0.13.1.tar.gz -> poezio-v0.14.tar.gz ++++++
++++ 21388 lines of diff (skipped)

Reply via email to