Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,45 @@ Changelog

.. towncrier release notes start

6.6.4
=====

*(2025-08-11)*


Bug fixes
---------

- Fixed ``MutliDict`` & ``CIMultiDict`` memory leak when deleting values or clearing them
-- by :user:`Vizonex`

*Related issues and pull requests on GitHub:*
:issue:`1233`.


Contributor-facing changes
--------------------------

- The type preciseness coverage report generated by `MyPy
<https://mypy-lang.org>`__ is now uploaded to `Coveralls
<https://coveralls.io/github/aio-libs/multidict>`__ and
will not be included in the `Codecov views
<https://app.codecov.io/gh/aio-libs/multidict>`__ going forward
-- by :user:`webknjaz`.

*Related issues and pull requests on GitHub:*
:issue:`1122`, :issue:`1231`.

- Added memory leak test for popping or deleting attributes from a multidict to prevent future issues or bogus claims.
-- by :user:`Vizonex`

*Related issues and pull requests on GitHub:*
:issue:`1233`.


----


6.6.3
=====

Expand Down
6 changes: 0 additions & 6 deletions CHANGES/1122.contrib.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1231.contrib.rst

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/1233.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/1233.contrib.rst

This file was deleted.

2 changes: 1 addition & 1 deletion multidict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"getversion",
)

__version__ = "6.6.3"
__version__ = "6.6.4"


if TYPE_CHECKING or not USE_EXTENSIONS:
Expand Down
Loading