All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog.
- Support custom encoding/decoding implementation via the
packb=...
andunpackb=...
optional parameters, allowing the use of alternative msgpack libraries. (Pull #20)
- Properly re-write request
Content-Type
toapplication/json
. (Pull #24)
First production/stable release.
- Switch to private module naming. Components should now be imported from the root package, e.g.
from msgpack_asgi import MessagePackMiddleware
. (Pull #5)
- Add missing
MANIFEST.in
. (Pull #4)
Initial release.
- Add the
MessagePackMiddleware
ASGI middleware. - Add the
MessagePackResponse
ASGI response class.