Skip to content

Commit e0e61c2

Browse files
authored
Release 6.6.4 (#1234)
1 parent 820631f commit e0e61c2

File tree

6 files changed

+40
-12
lines changed

6 files changed

+40
-12
lines changed

CHANGES.rst

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,45 @@ Changelog
1414

1515
.. towncrier release notes start
1616
17+
6.6.4
18+
=====
19+
20+
*(2025-08-11)*
21+
22+
23+
Bug fixes
24+
---------
25+
26+
- Fixed ``MutliDict`` & ``CIMultiDict`` memory leak when deleting values or clearing them
27+
-- by :user:`Vizonex`
28+
29+
*Related issues and pull requests on GitHub:*
30+
:issue:`1233`.
31+
32+
33+
Contributor-facing changes
34+
--------------------------
35+
36+
- The type preciseness coverage report generated by `MyPy
37+
<https://mypy-lang.org>`__ is now uploaded to `Coveralls
38+
<https://coveralls.io/github/aio-libs/multidict>`__ and
39+
will not be included in the `Codecov views
40+
<https://app.codecov.io/gh/aio-libs/multidict>`__ going forward
41+
-- by :user:`webknjaz`.
42+
43+
*Related issues and pull requests on GitHub:*
44+
:issue:`1122`, :issue:`1231`.
45+
46+
- Added memory leak test for popping or deleting attributes from a multidict to prevent future issues or bogus claims.
47+
-- by :user:`Vizonex`
48+
49+
*Related issues and pull requests on GitHub:*
50+
:issue:`1233`.
51+
52+
53+
----
54+
55+
1756
6.6.3
1857
=====
1958

CHANGES/1122.contrib.rst

Lines changed: 0 additions & 6 deletions
This file was deleted.

CHANGES/1231.contrib.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/1233.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

CHANGES/1233.contrib.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

multidict/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"getversion",
2323
)
2424

25-
__version__ = "6.6.3"
25+
__version__ = "6.6.4"
2626

2727

2828
if TYPE_CHECKING or not USE_EXTENSIONS:

0 commit comments

Comments
 (0)