py3-validate-email/CHANGELOG.txt

108 lines
3.1 KiB
Plaintext
Raw Normal View History

2021-02-15 16:45:01 +01:00
0.2.16:
- Workaround for a bug in the built-in python 3.8 smtp library: https://github.com/karolyi/py3-validate-email/issues/50
2021-02-11 17:49:29 +01:00
0.2.15:
- Added a `skip_smtp` option to optionally skip the SMTP protocol check after the DNS level checks, by @SergeyKons
2021-02-11 11:53:27 +01:00
0.2.14:
- More improvements, courtesy of Reinhard Müller: https://github.com/karolyi/py3-validate-email/pull/48
2021-02-08 14:19:59 +01:00
0.2.13:
- Fix 5xx errors not getting through in the exception parameters on the RCPT TO
handling. (#45)
2020-11-26 16:29:39 +01:00
0.2.12:
- Fixed a TLS error where the MX hostname mismatched the actual hostname due
to MX records resolving to hostnames with dots at the end. Yahoo lookups
resulted in SSL errors, providing false negatives.
2020-11-19 14:26:52 +01:00
0.2.11:
- Make emitting logs off per default, observer the passed `debug` parameter
- Set updater log level to debug
2020-10-11 13:51:37 +02:00
0.2.10:
- Adding STARTTLS handling
- Use EHLO instead of HELO
- Refactorings to handle errors during EHLO and MAIL FROM commands
- Updated dependencies
0.2.9:
- Adding debug command to validate_email for debugging
2020-04-17 15:57:28 +02:00
0.2.8:
- Fixing windows installation error.
2020-04-14 12:27:50 +02:00
0.2.7:
- Increase consistency at handling domain literals
- Clean up initial blacklist download on install
- All improvements made by @reinhard-mueller.
2020-04-13 10:58:38 +02:00
0.2.6:
- Introducing an EmailAddress class, thx to @reinhard-mueller
- Added a test for making sure there's a data directory with blacklist
files on install.
2020-04-12 16:40:04 +02:00
0.2.5:
- Python distutils/setuptools is a mess. Fix data dir creation on
install.
2020-04-12 14:42:20 +02:00
0.2.4:
- Fixed built-in datadir creation again.
0.2.3:
- Fixed https://github.com/karolyi/py3-validate-email/issues/13
0.2.2:
- Fixed the automatic download of the validate_email/data directory on
package install time. The source distribution MUST NOT include the
data directory, local installs have to fetch them when they are
executed.
0.2.1:
- Added a validate_email_or_fail function that will raise an exception
(base class validate_email.exceptions.EmailValidationError) when the
passed email check fails, while logging a warning with the validation
result.
- The blacklist updater can now use a separate thread and writable temp
paths to download and store its data, while logs about the update
process on DEBUG.
- Exposed a `validate_email.updater.update_builtin_blacklist` to update
the built-in blacklists while running.
2019-11-24 18:20:03 +01:00
0.2.0:
- Added automatic auto-updater for updating built-in blacklists.
2019-11-21 15:41:05 +01:00
0.1.12:
- Blacklist/whitelist domains checking is now independent of regex checking.
2019-06-26 14:31:52 +02:00
0.1.11:
- Handling IDNA errors
0.1.10:
- Handling the NoNameservers exception
2019-05-25 13:54:20 +02:00
0.1.9:
- Handling DNS timeout + YXDOMAIN
0.1.8:
2019-05-03 19:06:01 +02:00
- Added IDNA domain handling. (might need adjustment when
https://bugs.python.org/issue20083 gets fixed)
0.1.7:
- Handle the SMTPServerDisconnected exception throughout all the SMTP
connection. Try to contact all MXes for a successful probe.
2019-04-03 21:51:47 +02:00
0.1.6:
- Fixed a rare case where aol.co returns '.' in MX that causes an
exception for the SMTP module, with added tests.
2019-03-25 11:13:56 +01:00
0.1.5:
2019-04-03 21:51:47 +02:00
- Handle socket errors (https://docs.python.org/3/library/
socket.html#exceptions)
2019-03-25 11:13:56 +01:00
2019-03-03 22:49:39 +01:00
0.1.4:
- Handle 'No MX record' exception
2019-03-03 15:36:03 +01:00
0.1.3:
- Added ambigious (4xx) response code handling