Skip to content

Commit

Permalink
Update changelog and readme for v4
Browse files Browse the repository at this point in the history
  • Loading branch information
icgood committed Nov 13, 2016
1 parent a117943 commit 6e56ab9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
18 changes: 13 additions & 5 deletions CHANGELOG.md
@@ -1,7 +1,7 @@

# Change Log

## Unreleased
## [4.0] - 2016-11-13

### Added

Expand All @@ -10,15 +10,22 @@

### Changed

- The `tls` option to many different class constructors now defaults (with
`None`) to enabling TLS with no custom configuration. It can be given
explicitly `False` to disable TLS. This does not apply to server-side TLS,
which requires a dictionary with at least the `certfile` key.
- Constructors and functions that took a `tls` dictionary now take a `context`
argument that should be an [`SSLContext`][7] object. This allows finer
control of encryption behavior, as well as the ability to pre-load sensitive
certificate data before daemonization.
- Client connections will now be opportunistic and try to use TLS if it is
available, even if a key or cert have not been configured.
- The `AUTH` SMTP extension will now advertise insecure authentication
mechanisms without TLS, but trying to use them will fail.
- Moved the `slimta.system` module to `slimta.util.system` to de-clutter the
top-level namespace.

### Fixed

- Fixed a possible race condition on enqueue.
- Fixed exception when given empty EHLO/HELO string.
- Fixed the fallback from EHLO to HELO in certain situations.

## [3.2] - 2016-05-16

Expand Down Expand Up @@ -110,6 +117,7 @@
[4]: https://pythonhosted.org/six/
[5]: https://docs.slimta.org/en/latest/api/slimta.logging.html#slimta.logging.parseline
[6]: https://docs.slimta.org/en/latest/api/slimta.logging.socket.html#slimta.logging.socket.socket_error_log_level
[7]: https://docs.python.org/2.7/library/ssl.html#ssl.SSLContext
[3.0]: https://github.com/slimta/python-slimta/issues?q=milestone%3A3.0
[3.1]: https://github.com/slimta/python-slimta/issues?q=milestone%3A3.1
[3.2]: https://github.com/slimta/python-slimta/issues?q=milestone%3A3.2
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -23,7 +23,7 @@


setup(name='python-slimta',
version='3.2.4',
version='4.0.0',
author='Ian Good',
author_email='icgood@gmail.com',
description='Lightweight, asynchronous SMTP libraries.',
Expand All @@ -41,7 +41,6 @@
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'])

Expand Down

0 comments on commit 6e56ab9

Please sign in to comment.