Skip to content

chore(deps): update dependency multidict to v6 - autoclosed

Oleg A. requested to merge renovate/multidict-6.x into master

This MR contains the following updates:

Package Change Age Adoption Passing Confidence
multidict ==5.2.0 -> ==6.0.2 age adoption passing confidence

Release Notes

aio-libs/multidict

v6.0.2

Compare Source

==================

Bugfixes

  • Revert :issue:644, restore type annotations to as-of 5.2.0 version. (:issue:688)

v6.0.1

Compare Source

==================

Bugfixes

  • Restored back MultiDict, CIMultiDict, MultiDictProxy, and CIMutiDictProxy generic type arguments; they are parameterized by value type, but the key type is fixed by container class.

    MultiDict[int] means MutableMultiMapping[str, int]. The key type of MultiDict is always str, while all str-like keys are accepted by API and converted to str internally.

    The same is true for CIMultiDict[int] which means MutableMultiMapping[istr, int]. str-like keys are accepted but converted to istr internally. (:issue:682)

v6.0.0

Compare Source

==================

Features

  • Use METH_FASTCALL where it makes sense.

    MultiDict.add() is 2.2 times faster now, CIMultiDict.add() is 1.5 times faster. The same boost is applied to get*(), setdefault(), and pop*() methods. (:issue:681)

Bugfixes

  • Fixed type annotations for keys of multidict mapping classes. (:issue:644)
  • Support Multidict[int] for pure-python version. __class_getitem__ is already provided by C Extension, making it work with the pure-extension too. (:issue:678)

Deprecations and Removals

  • Dropped Python 3.6 support (:issue:680)

Misc

  • :issue:659

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this MR and you won't be reminded about this update again.


  • If you want to rebase/retry this MR, click this checkbox.

This MR has been generated by Renovate Bot.

Edited by Oleg A.

Merge request reports