You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current multidict master has changed behavior: keys for CIMultiDict are always str (before they was either str or istr) and they are stored as-is without title casing. But key comparison is performed on title-cased basis.
Also CIMultiDict lookup is about 30% faster.
It is backward incompatible change, some aiohttp tests are failing. But all functionality is working on just released aiohttp 2.2.0 (it's crucial for smooth transition).
I need release new multidict first and fix failed aiohttp tests.
The text was updated successfully, but these errors were encountered:
Current
multidict
master has changed behavior: keys forCIMultiDict
are alwaysstr
(before they was eitherstr
oristr
) and they are stored as-is without title casing. But key comparison is performed on title-cased basis.Also
CIMultiDict
lookup is about 30% faster.It is backward incompatible change, some aiohttp tests are failing. But all functionality is working on just released aiohttp 2.2.0 (it's crucial for smooth transition).
I need release new multidict first and fix failed aiohttp tests.
The text was updated successfully, but these errors were encountered: