From c82c95d35a3eb4f262fb6ea1fe3cc78531df250dd44ecb93db2383bc29692546 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Tue, 14 Nov 2023 15:45:52 +0000 Subject: [PATCH] - update to 3.0.3: * Redefine `click.pass_context` and `click.get_current_context` to use `cloup.Context` in place of `click.Context` - Integrate with git workflow * Fix: default to Group.command_class and Group.group_class when creating subcommands by @janluke in #162 - Version 2.0.0 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiosmtplib?expand=0&rev=23 --- aiosmtplib-2.0.2.tar.gz | 3 --- aiosmtplib-3.0.1.tar.gz | 3 +++ python-aiosmtplib.changes | 28 +++++++++++++++++++++++++--- python-aiosmtplib.spec | 2 +- 4 files changed, 29 insertions(+), 7 deletions(-) delete mode 100644 aiosmtplib-2.0.2.tar.gz create mode 100644 aiosmtplib-3.0.1.tar.gz diff --git a/aiosmtplib-2.0.2.tar.gz b/aiosmtplib-2.0.2.tar.gz deleted file mode 100644 index 5bdf212..0000000 --- a/aiosmtplib-2.0.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:138599a3227605d29a9081b646415e9e793796ca05322a78f69179f0135016a3 -size 56295 diff --git a/aiosmtplib-3.0.1.tar.gz b/aiosmtplib-3.0.1.tar.gz new file mode 100644 index 0000000..859381f --- /dev/null +++ b/aiosmtplib-3.0.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43580604b152152a221598be3037f0ae6359c2817187ac4433bd857bc3fc6513 +size 57715 diff --git a/python-aiosmtplib.changes b/python-aiosmtplib.changes index 0ea7f2b..6cbbc3a 100644 --- a/python-aiosmtplib.changes +++ b/python-aiosmtplib.changes @@ -1,3 +1,25 @@ +------------------------------------------------------------------- +Tue Nov 14 15:41:44 UTC 2023 - Dirk Müller + +- update to 3.0.1: + * Bugfix: 'Future exception was never retrieved' warning in + SMTPProtocol after successful connection close and garbage + collection. + * Cleanup: Updated FlowControlMixin logic from stdlib + are keyword only. + * **BREAKING**: Passing ``source_address`` as a string argument + is now an error. ``source_address`` takes a (addr, port) + tuple that is used as the ``local_addr`` param of + ``asyncio.create_connection``, allowing for binding + to a specific IP. The ``local_hostname`` argument takes the + value to be sent to the server with the EHLO/HELO message + (which is what ``source_address`` was used for prior to 2.0). + * Change: don't use timeout value passed to ``connect`` + everywhere, only for the initial connection + * Change: removed unnecessary connection lost callback + * Change: revised handling for 'Future exception was never + retrieved' warnings in protocol + ------------------------------------------------------------------- Tue Jun 20 16:49:38 UTC 2023 - Dirk Müller @@ -16,7 +38,7 @@ Fri Feb 10 10:34:43 UTC 2023 - Dirk Müller ------------------------------------------------------------------- Thu Nov 10 16:08:50 UTC 2022 - Yogalakshmi Arunachalam -- Update to v2.0.0 +- Update to v2.0.0 * BREAKING: Drop Python 3.5 and 3.6 support. * BREAKING: On connect, if the server supports STARTTLS, automatically try to upgrade the connection. STARTTLS after connect can be turned on or off explicitly by passing start_tls=True or start_tls=False respectively. @@ -44,7 +66,7 @@ Sat Jan 15 17:24:42 UTC 2022 - Dirk Müller - update to 1.1.6: * update auth other than login -- remove failing_smtpd_tests.patch: not needed +- remove failing_smtpd_tests.patch: not needed ------------------------------------------------------------------- Fri May 7 20:53:46 UTC 2021 - Matej Cepl @@ -84,7 +106,7 @@ Thu Jan 16 17:00:41 UTC 2020 - Marketa Calabkova - update to 1.1.2 * Fix handling of sending legacy email API (Message) objects. - * Fix SMTPNotSupported error with UTF8 sender/recipient names + * Fix SMTPNotSupported error with UTF8 sender/recipient names on servers that don’t support SMTPUTF8. ------------------------------------------------------------------- diff --git a/python-aiosmtplib.spec b/python-aiosmtplib.spec index 2ef7dd1..448ed4e 100644 --- a/python-aiosmtplib.spec +++ b/python-aiosmtplib.spec @@ -20,7 +20,7 @@ %define skip_python2 1 %define skip_python36 1 Name: python-aiosmtplib -Version: 2.0.2 +Version: 3.0.1 Release: 0 Summary: Python asyncio SMTP client License: MIT