Releases: quantmind/pulsar
1.5.1
This minor release brings Channels
to pulsar.
Channels are a better way to manage publish/subscribe clients.
Channels use events
to create namespaces which limit the
number of channels a client needs to subscribe to. A pubsub
client can register
to one or more event from a given channel.
This feature is in initial phase of development but stable.
Documentation will follow.
1.5.0
This version brings several improvements and enhancements in the internal API.
It is broadly compatible with the 1.4 series with the exception of the media component in the
WSGI strings. Importantly, multi-processing is handled directly by asyncio
rather than the multiprocessing module.
It is still possible to use the multiprocessing
module via --concurrency multi
command line/config flag.
Support for uvloop has been added.
To use the this third party event loop, pass the --io uv
flag in the command line.
- Several internal changes for better asyncio API support, dropped all private methods
- Process based actors are created using asyncio subprocess API
- Actor based on the multiprocessing module are created via the
multi
concurrency flag - Added the
bench
setup.py command #247 - Added
pulsar.create_future
function, a shortcut forloop.create_future
- Added support for uvloop
- Removed tweet example and created a new repository pulsar-twitter
- Removed
require
script from wsgi media and refactoring #239 - Test.wait only support
assertRaises
#235 - Removed
yield from
from all tests - No more docs in http://pythonhosted.org/pulsar/
1.4.1
This version brings a critical bug fix in the HTTP client Digest authentication flow.
If you use that feature you need to upgrade now!
1.4.0
A release which brings several improvements, bug fixes and a minor backward
compatibility in the asynchronous Redis Lock.
Importantly, the django pulse application has been moved to its own repo.
- Django
pulse
application has been moved to its own repo pulsar-django - Refactored the close method in TcpServer
- Added
closed
property to green pool - Better stopping of monitors
- Added
after_run
method to actors - HttpClient bug fix #221 9249331
- Added asynchronous Lock primitive to the async module 4a10883
- Handle datastor and redis pubsub connections drop with
connection_lost
event dc322b7 - Always decode content as json in JsonProxy (thanks to @wilddom), pull request #233
1.3.6
1.3.5
1.3.4
1.3.3
A critical bug fix for the WSGI server and several important fixes in internals.
- Critical bug fix in HEAD HTTP response - remove the content but not the content related headers 74438a7
- No longer add
Connection
header if HTTP version is 1.1 and the value is keep-alive - Http head test 6d33410
- Http client is now an asynchronous context manager 1c01fc7
- Server does not hang when using the
--reload
flag and Ctrl-C - Removed finish event from AbstractClient, no longer used
- Actor is set to STOPPED state when the event loop is stopped f2afe03
- Link to actor image in README.rst