Commit 437dffa
Bump multidict from 6.4.3 to 6.4.4 (#10892)
Bumps [multidict](https://github.com/aio-libs/multidict) from 6.4.3 to
6.4.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/aio-libs/multidict/releases">multidict's
releases</a>.</em></p>
<blockquote>
<h2>6.4.4</h2>
<h2>Bug fixes</h2>
<ul>
<li>
<p>Fixed a segmentation fault when calling
:py:meth:<code>multidict.MultiDict.setdefault</code> with a single
argument -- by :user:<code>bdraco</code>.</p>
<p><em>Related issues and pull requests on GitHub:</em>
<a
href="https://redirect.github.com/aio-libs/multidict/issues/1160">#1160</a>.</p>
</li>
<li>
<p>Fixed a segmentation fault when attempting to directly instantiate
view objects
(<code>multidict._ItemsView</code>, <code>multidict._KeysView</code>,
<code>multidict._ValuesView</code>) -- by :user:<code>bdraco</code>.</p>
<p>View objects now raise a proper :exc:<code>TypeError</code> with the
message "cannot create '...' instances directly"
when direct instantiation is attempted.</p>
<p>View objects should only be created through the proper methods:
:py:meth:<code>multidict.MultiDict.items</code>,
:py:meth:<code>multidict.MultiDict.keys</code>, and
:py:meth:<code>multidict.MultiDict.values</code>.</p>
<p><em>Related issues and pull requests on GitHub:</em>
<a
href="https://redirect.github.com/aio-libs/multidict/issues/1164">#1164</a>.</p>
</li>
</ul>
<h2>Miscellaneous internal changes</h2>
<ul>
<li>
<p>:class:<code>multidict.MultiDictProxy</code> was refactored to rely
only on
:class:<code>multidict.MultiDict</code> public interface and don't touch
any implementation
details.</p>
<p><em>Related issues and pull requests on GitHub:</em>
<a
href="https://redirect.github.com/aio-libs/multidict/issues/1150">#1150</a>.</p>
</li>
<li>
<p>Multidict views were refactored to rely only on
:class:<code>multidict.MultiDict</code> API and don't touch any
implementation
details.</p>
<p><em>Related issues and pull requests on GitHub:</em>
<a
href="https://redirect.github.com/aio-libs/multidict/issues/1152">#1152</a>.</p>
</li>
<li>
<p>Dropped internal <code>_Impl</code> class from pure Python
implementation, both pure Python and C
Extension follows the same design internally now.</p>
<p><em>Related issues and pull requests on GitHub:</em>
<a
href="https://redirect.github.com/aio-libs/multidict/issues/1153">#1153</a>.</p>
</li>
</ul>
<hr />
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/aio-libs/multidict/blob/master/CHANGES.rst">multidict's
changelog</a>.</em></p>
<blockquote>
<h1>6.4.4</h1>
<p><em>(2025-05-19)</em></p>
<h2>Bug fixes</h2>
<ul>
<li>
<p>Fixed a segmentation fault when calling
:py:meth:<code>multidict.MultiDict.setdefault</code> with a single
argument -- by :user:<code>bdraco</code>.</p>
<p><em>Related issues and pull requests on GitHub:</em>
:issue:<code>1160</code>.</p>
</li>
<li>
<p>Fixed a segmentation fault when attempting to directly instantiate
view objects
(<code>multidict._ItemsView</code>, <code>multidict._KeysView</code>,
<code>multidict._ValuesView</code>) -- by :user:<code>bdraco</code>.</p>
<p>View objects now raise a proper :exc:<code>TypeError</code> with the
message "cannot create '...' instances directly"
when direct instantiation is attempted.</p>
<p>View objects should only be created through the proper methods:
:py:meth:<code>multidict.MultiDict.items</code>,
:py:meth:<code>multidict.MultiDict.keys</code>, and
:py:meth:<code>multidict.MultiDict.values</code>.</p>
<p><em>Related issues and pull requests on GitHub:</em>
:issue:<code>1164</code>.</p>
</li>
</ul>
<h2>Miscellaneous internal changes</h2>
<ul>
<li>
<p>:class:<code>multidict.MultiDictProxy</code> was refactored to rely
only on
:class:<code>multidict.MultiDict</code> public interface and don't touch
any implementation
details.</p>
<p><em>Related issues and pull requests on GitHub:</em>
:issue:<code>1150</code>.</p>
</li>
<li>
<p>Multidict views were refactored to rely only on
:class:<code>multidict.MultiDict</code> API and don't touch any
implementation
details.</p>
<p><em>Related issues and pull requests on GitHub:</em>
:issue:<code>1152</code>.</p>
</li>
<li>
<p>Dropped internal <code>_Impl</code> class from pure Python
implementation, both pure Python and C
Extension follows the same design internally now.</p>
<p><em>Related issues and pull requests on GitHub:</em>
:issue:<code>1153</code>.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aio-libs/multidict/commit/e77793a006e8c27ee96ae8b638a38c6413f87b9c"><code>e77793a</code></a>
Release 6.4.4 (<a
href="https://redirect.github.com/aio-libs/multidict/issues/1164">#1164</a>)</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/b5a24b7d0c7ae2518580edacb60c328754fadfce"><code>b5a24b7</code></a>
Fix segfault creating view objects (<a
href="https://redirect.github.com/aio-libs/multidict/issues/1163">#1163</a>)</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/fea968f9475bc5b1fb0603a838104baf992cf1d9"><code>fea968f</code></a>
Fix segfault when a single arg is passed to setdefault (<a
href="https://redirect.github.com/aio-libs/multidict/issues/1160">#1160</a>)</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/7770ff2779022edfb0f3f2dd23ca5497a34a7b07"><code>7770ff2</code></a>
Bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 (<a
href="https://redirect.github.com/aio-libs/multidict/issues/1162">#1162</a>)</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/af420430358d6f0ebb660d6a733c16b7ff491d3f"><code>af42043</code></a>
Bump pypa/cibuildwheel from 2.23.2 to 2.23.3 (<a
href="https://redirect.github.com/aio-libs/multidict/issues/1158">#1158</a>)</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/df93794f4c43ba196aa87df5687a480369713e51"><code>df93794</code></a>
Fix wrong types in tests (<a
href="https://redirect.github.com/aio-libs/multidict/issues/1156">#1156</a>)</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/72f3fcefbb414627ca803915f3e3e819eaf93d46"><code>72f3fce</code></a>
Tune multidict benchmark (<a
href="https://redirect.github.com/aio-libs/multidict/issues/1155">#1155</a>)</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/99e3f3b31c05905d1647d339c1b2726dd0b60e14"><code>99e3f3b</code></a>
Drop _Impl helper class, move all logic to MultiDict itself (<a
href="https://redirect.github.com/aio-libs/multidict/issues/1153">#1153</a>)</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/d476a03c454a529c2d9fbb0007b9971bf71556a7"><code>d476a03</code></a>
Views don't rely in _Impl anymore (<a
href="https://redirect.github.com/aio-libs/multidict/issues/1152">#1152</a>)</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/1d72435794cea9329376ec8e742f7665fa5a88d0"><code>1d72435</code></a>
MultiDictProxy doesn't rely on '_impl' anymore (<a
href="https://redirect.github.com/aio-libs/multidict/issues/1150">#1150</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/aio-libs/multidict/compare/v6.4.3...v6.4.4">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: J. Nick Koston <[email protected]>1 parent 9a2835a commit 437dffa
File tree
7 files changed
+7
-7
lines changed- requirements
7 files changed
+7
-7
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
115 | 115 | | |
116 | 116 | | |
117 | 117 | | |
118 | | - | |
| 118 | + | |
119 | 119 | | |
120 | 120 | | |
121 | 121 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
113 | 113 | | |
114 | 114 | | |
115 | 115 | | |
116 | | - | |
| 116 | + | |
117 | 117 | | |
118 | 118 | | |
119 | 119 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
62 | | - | |
| 62 | + | |
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
| |||
0 commit comments