Releases: aio-libs/multidict
Releases · aio-libs/multidict
multidict 2.0 release
The major multidict release.
New version is slightly incompatible with multidict==1.x
We have changed canonical representation for case insensitive strings.
Changes
upstris renamed toistr(case insensitive string)upstris remained as alias foristristrusesstr.title()for converting into canonical form.
It meansistr('content-length')now represented asContent-Lengthinstead ofCONTENT-LENGTH.- All tests that depend on
repr(upstr(...))are broken, everything else should work as expected.
P.S.
Sorry for inconvenience but the change was requested many times.
At least canonical representation of HTTP headers (the main consumer of the library) is title-cased.
aiohttp library will utilize new representation in next major release.
multidict 1.2.0 release
Changes
- Make
upstr(upstr('abc'))much faster