Releases: agronholm/smtpproto
Releases · agronholm/smtpproto
2.0.0
- BACKWARDS INCOMPATIBLE The concrete client implementations were refactored:
AsyncSMTPClient
andSyncSMTPClient
were refactored into "session factories", and thus are no longer used as context managers- The
send_message()
method is now reentrant, as it now creates (and closes) an ad-hoc session with the SMTP server - The
connect()
method now returns a context manager that yields an SMTP session
- BACKWARDS INCOMPATIBLE The
OAuth2Authenticator
class was refactored:- The return type of
get_token()
was changed to a (decoded) JSON web token – a dict containing theaccess_token
andexpires_in
fields - The result of
get_token()
method is now automatically cached until the token's expiration time nears (configurable via thegrace_period
parameter inOAuth2Authenticator
) - Added the
clear_cached_token()
method
- The return type of
- Dropped support for Python 3.7
- Upgraded minimum AnyIO version to 4.2+
- The
Bcc
andResent-Bcc
are now properly added to the recipients list by the concrete client implementation - The
Bcc
andResent-Bcc
headers are now automatically left out of the data inSMTPClientProtocol.data()
to simplify client implementations
1.2.1
- Fixed
LoginAuthenticator
expecting the wrong questions (there should be a:
at the end) - Fixed compatibility with AnyIO 4