From 39c04603ab7c4a9e153354254e4c1e7960939a91a3a30bcc7aaf69e907392f27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=C3=A9ta=20Machov=C3=A1?= Date: Mon, 26 Sep 2022 08:34:00 +0000 Subject: [PATCH 1/2] Accepting request 1005498 from home:yarunachalam:branches:devel:languages:python * Add note on 2FA for qr_login * Handle ServerError while getting difference * Re-raise unhandled errors that occur during update handling * Document the client instance cannot be used after logout * Add a hard timeout on disconnect * Update some raw API examples * del_surrogate for HTML inline URLs * Ignore ChannelParticipantLeft during iter_participants * Wrap buttons typehint in Optional * Fix events.Album did not have chat in PM * Ignore aggressive parameter in iter_participants * Replace mentions of master branch with v1 * Fix get_permissions for small group chats * Manually construct reply_to for send_message result * Strip 0-length message entities * Make custom, functions and types proper modules * Trust pts values during apply_difference * Do not remove ENTRY_SECRET during apply difference * Handle auth errors during get difference * Recognize invite links with plus sign prefix * Document new known RPC errors * Handle CancelledError inside update loop * Make use of AlbumHack for all albums * Fix UpdateShort from socket was not unboxed * Fix some MD parsing of inline URLs (#3920) * Fix raw API docs generation - Update to v1.25 * Remove missed async keywords from the revert * Revert "Add missing async keywords in SQLiteSession" * Revert "Make sessions async" OBS-URL: https://build.opensuse.org/request/show/1005498 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Telethon?expand=0&rev=17 --- Telethon-1.24.0.tar.gz | 3 --- Telethon-1.25.0.tar.gz | 3 +++ python-Telethon.changes | 45 +++++++++++++++++++++++++++++++++++++++++ python-Telethon.spec | 2 +- 4 files changed, 49 insertions(+), 4 deletions(-) delete mode 100644 Telethon-1.24.0.tar.gz create mode 100644 Telethon-1.25.0.tar.gz diff --git a/Telethon-1.24.0.tar.gz b/Telethon-1.24.0.tar.gz deleted file mode 100644 index 6d831d3..0000000 --- a/Telethon-1.24.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e50a72f13444193ab1835aeaefde78eabe0529acfaf66cda1f86f7c414ba2bf3 -size 453175 diff --git a/Telethon-1.25.0.tar.gz b/Telethon-1.25.0.tar.gz new file mode 100644 index 0000000..c5eb0d1 --- /dev/null +++ b/Telethon-1.25.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03d23de3cb1887af49b18d56a4549d070fbff45230888f135a67334b88d9d2f +size 469675 diff --git a/python-Telethon.changes b/python-Telethon.changes index 925ab94..7c7635c 100644 --- a/python-Telethon.changes +++ b/python-Telethon.changes @@ -1,3 +1,48 @@ +------------------------------------------------------------------- +Thu Sep 22 21:31:48 UTC 2022 - Yogalakshmi Arunachalam + + * Add note on 2FA for qr_login + * Handle ServerError while getting difference + * Re-raise unhandled errors that occur during update handling + * Document the client instance cannot be used after logout + * Add a hard timeout on disconnect + * Update some raw API examples + * del_surrogate for HTML inline URLs + * Ignore ChannelParticipantLeft during iter_participants + * Wrap buttons typehint in Optional + * Fix events.Album did not have chat in PM + * Ignore aggressive parameter in iter_participants + * Replace mentions of master branch with v1 + * Fix get_permissions for small group chats + * Manually construct reply_to for send_message result + * Strip 0-length message entities + * Make custom, functions and types proper modules + * Trust pts values during apply_difference + * Do not remove ENTRY_SECRET during apply difference + * Handle auth errors during get difference + * Recognize invite links with plus sign prefix + * Document new known RPC errors + * Handle CancelledError inside update loop + * Make use of AlbumHack for all albums + * Fix UpdateShort from socket was not unboxed + * Fix some MD parsing of inline URLs (#3920) + * Fix raw API docs generation +- Update to v1.25 + * Remove missed async keywords from the revert + * Revert "Add missing async keywords in SQLiteSession" + * Revert "Make sessions async" + * Revert "Mark certain SQLiteSession methods as async" + * Revert "Add workaround for SQLiteSession needing save after init" + * Update to layer 144 + * Also except ChannelInvalidError during get_diff + * Fix missing variable and assignment in reset_deadline + * Handle ValueError during get_channel_difference + * Fix reset_deadline was not doing its job + * Prevent double-logging of 'timeout for updates' + * Support sending 4GB files (#3891) + * Add ENTITY_BOUNDS_INVALID and POSTPONED_TIMEOUT to known errors (#3887) + * Fix HTML/MD parser producing empty MessageEntity (#3885) + ------------------------------------------------------------------- Mon Aug 29 03:58:55 UTC 2022 - Yogalakshmi Arunachalam diff --git a/python-Telethon.spec b/python-Telethon.spec index 774dbd9..6cb7074 100644 --- a/python-Telethon.spec +++ b/python-Telethon.spec @@ -21,7 +21,7 @@ %define skip_python2 1 %define modname Telethon Name: python-Telethon -Version: 1.24.0 +Version: 1.25.0 Release: 0 Summary: Full-featured Telegram client library for Python 3 License: MIT From 5025e6646ccb64472c0727797a5fa580a4c94426c7e4ddadd5d3ed37cf63bc8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=C3=A9ta=20Machov=C3=A1?= Date: Mon, 26 Sep 2022 08:37:24 +0000 Subject: [PATCH 2/2] changelog OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Telethon?expand=0&rev=18 --- python-Telethon.changes | 82 ++++++++++++++++++++--------------------- 1 file changed, 41 insertions(+), 41 deletions(-) diff --git a/python-Telethon.changes b/python-Telethon.changes index 7c7635c..2683e9f 100644 --- a/python-Telethon.changes +++ b/python-Telethon.changes @@ -1,53 +1,53 @@ ------------------------------------------------------------------- Thu Sep 22 21:31:48 UTC 2022 - Yogalakshmi Arunachalam - * Add note on 2FA for qr_login - * Handle ServerError while getting difference - * Re-raise unhandled errors that occur during update handling - * Document the client instance cannot be used after logout - * Add a hard timeout on disconnect - * Update some raw API examples - * del_surrogate for HTML inline URLs - * Ignore ChannelParticipantLeft during iter_participants - * Wrap buttons typehint in Optional - * Fix events.Album did not have chat in PM - * Ignore aggressive parameter in iter_participants - * Replace mentions of master branch with v1 - * Fix get_permissions for small group chats - * Manually construct reply_to for send_message result - * Strip 0-length message entities - * Make custom, functions and types proper modules - * Trust pts values during apply_difference - * Do not remove ENTRY_SECRET during apply difference - * Handle auth errors during get difference - * Recognize invite links with plus sign prefix - * Document new known RPC errors - * Handle CancelledError inside update loop - * Make use of AlbumHack for all albums - * Fix UpdateShort from socket was not unboxed - * Fix some MD parsing of inline URLs (#3920) - * Fix raw API docs generation - Update to v1.25 - * Remove missed async keywords from the revert - * Revert "Add missing async keywords in SQLiteSession" - * Revert "Make sessions async" - * Revert "Mark certain SQLiteSession methods as async" - * Revert "Add workaround for SQLiteSession needing save after init" - * Update to layer 144 - * Also except ChannelInvalidError during get_diff - * Fix missing variable and assignment in reset_deadline - * Handle ValueError during get_channel_difference - * Fix reset_deadline was not doing its job - * Prevent double-logging of 'timeout for updates' - * Support sending 4GB files (#3891) - * Add ENTITY_BOUNDS_INVALID and POSTPONED_TIMEOUT to known errors (#3887) - * Fix HTML/MD parser producing empty MessageEntity (#3885) + * Add note on 2FA for qr_login + * Handle ServerError while getting difference + * Re-raise unhandled errors that occur during update handling + * Document the client instance cannot be used after logout + * Add a hard timeout on disconnect + * Update some raw API examples + * del_surrogate for HTML inline URLs + * Ignore ChannelParticipantLeft during iter_participants + * Wrap buttons typehint in Optional + * Fix events.Album did not have chat in PM + * Ignore aggressive parameter in iter_participants + * Replace mentions of master branch with v1 + * Fix get_permissions for small group chats + * Manually construct reply_to for send_message result + * Strip 0-length message entities + * Make custom, functions and types proper modules + * Trust pts values during apply_difference + * Do not remove ENTRY_SECRET during apply difference + * Handle auth errors during get difference + * Recognize invite links with plus sign prefix + * Document new known RPC errors + * Handle CancelledError inside update loop + * Make use of AlbumHack for all albums + * Fix UpdateShort from socket was not unboxed + * Fix some MD parsing of inline URLs (#3920) + * Fix raw API docs generation + * Remove missed async keywords from the revert + * Revert "Add missing async keywords in SQLiteSession" + * Revert "Make sessions async" + * Revert "Mark certain SQLiteSession methods as async" + * Revert "Add workaround for SQLiteSession needing save after init" + * Update to layer 144 + * Also except ChannelInvalidError during get_diff + * Fix missing variable and assignment in reset_deadline + * Handle ValueError during get_channel_difference + * Fix reset_deadline was not doing its job + * Prevent double-logging of 'timeout for updates' + * Support sending 4GB files (#3891) + * Add ENTITY_BOUNDS_INVALID and POSTPONED_TIMEOUT to known errors (#3887) + * Fix HTML/MD parser producing empty MessageEntity (#3885) ------------------------------------------------------------------- Mon Aug 29 03:58:55 UTC 2022 - Yogalakshmi Arunachalam - Update to 1.24.0 - No changelog + * No changelog ------------------------------------------------------------------- Mon Jun 14 13:51:37 UTC 2021 - Matej Cepl