- Action is now both a Future and an async iterator
- py38 support
- no longer use yield from syntaxe.
- Added custom options for connect method: run_forever, on_startup, on_shutdown, reconnect_timeout
- Make ping interval and ping delay more configurable. Callbacks on_login, on_connect and on_disconnect added for use in metrics
- Avoid double exception logging because log.exception() already logs the stacktrace
- Multiple FastAGI support improvement
- py37 support
- Fix KeyError problem in call_manager
- as_list is now default to none and is used first in Action.multi
- improve AMI version detection
- We no longer loosing calls on reconnection
- End of support for python<3.4
- Better test coverage
- Add FastAGI server, implemented with high-level AsyncIO API (Streams)
- Add events parameter for Manager, to disable AMI events reception (Useful for performance reasons)
- Finish AsyncAGI commands support (WIP)
- Avoid failure when factory is not already set
- AMI command results tracking fixed
- Return AMI command result with multiple events in a Future
- Return AsyncAGI command result in a Future
- Add several examples
- Internal refactoring
- Remove arawman support
- Remove external dependencies
- Add support for multiple responses from Actions (example: QueueStatus)
- Improved performance with Events pattern matching
- Add mocked test wrapper
- Add coroutine support for Events dispatching
- Invert event callback signature to create Manager methods to handle events
- Support of AMI commands
- Support of AsyncAGI commands (Not finished)
- Compat with the latest trollius
- Don't send commands twice
- Initial release