Skip to content

Commit

Permalink
Bump multidict from 6.0.4 to 6.0.5 (#46)
Browse files Browse the repository at this point in the history
Bumps [multidict](https://github.com/aio-libs/multidict) from 6.0.4 to
6.0.5.
<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.0.5</h2>
<h2>Bug fixes</h2>
<ul>
<li>
<p>Upgraded the C-API macros that have been deprecated in Python 3.9 and
later removed in 3.13 -- by <a
href="https://github.com/iemelyanov"><code>@​iemelyanov</code></a><a
href="https://github.com/sponsors/iemelyanov">💰</a>.</p>
<p><em>Related issues and pull requests on GitHub:</em> <a
href="https://redirect.github.com/aio-libs/multidict/issues/862">#862</a>,
<a
href="https://redirect.github.com/aio-libs/multidict/issues/864">#864</a>,
<a
href="https://redirect.github.com/aio-libs/multidict/issues/868">#868</a>,
<a
href="https://redirect.github.com/aio-libs/multidict/issues/898">#898</a>.</p>
</li>
<li>
<p>Reverted to using the public argument parsing API
<code>PyArg_ParseTupleAndKeywords()</code> under Python 3.12 -- by <a
href="https://github.com/charles-dyfis-net"><code>@​charles-dyfis-net</code></a><a
href="https://github.com/sponsors/charles-dyfis-net">💰</a> and <a
href="https://github.com/webknjaz"><code>@​webknjaz</code></a><a
href="https://github.com/sponsors/webknjaz">💰</a>.</p>
<p>The effect is that this change prevents build failures with clang
16.9.6 and gcc-14 reported in <a
href="https://redirect.github.com/aio-libs/multidict/issues/926">#926</a>.
It also fixes a segmentation fault crash caused by passing keyword
arguments to <code>MultiDict.getall()</code> discovered by <a
href="https://github.com/jonaslb"><code>@​jonaslb</code></a><a
href="https://github.com/sponsors/jonaslb">💰</a> and <a
href="https://github.com/hroncok"><code>@​hroncok</code></a><a
href="https://github.com/sponsors/hroncok">💰</a> while examining the
problem.</p>
<p><em>Related issues and pull requests on GitHub:</em> <a
href="https://redirect.github.com/aio-libs/multidict/issues/862">#862</a>,
<a
href="https://redirect.github.com/aio-libs/multidict/issues/909">#909</a>,
<a
href="https://redirect.github.com/aio-libs/multidict/issues/926">#926</a>,
<a
href="https://redirect.github.com/aio-libs/multidict/issues/929">#929</a>.</p>
</li>
<li>
<p>Fixed a <code>SystemError: null argument to internal routine</code>
error on a <code>MultiDict.items().isdisjoint()</code> call when using C
Extensions.</p>
<p><em>Related issues and pull requests on GitHub:</em> <a
href="https://redirect.github.com/aio-libs/multidict/issues/927">#927</a>.</p>
</li>
</ul>
<h2>Improved documentation</h2>
<ul>
<li>
<p>On the <a
href="https://github.com/aio-libs/multidict/blob/master/CHANGES/#readme">Contributing
docs</a> age, a link to the <code>Towncrier philosophy</code> has been
fixed.</p>
<p><em>Related issues and pull requests on GitHub:</em> <a
href="https://redirect.github.com/aio-libs/multidict/issues/911">#911</a>.</p>
</li>
</ul>
<h2>Packaging updates and notes for downstreams</h2>
<ul>
<li>
<p>Stopped marking all files as installable package data -- by <a
href="https://github.com/webknjaz"><code>@​webknjaz</code></a><a
href="https://github.com/sponsors/webknjaz">💰</a>.</p>
<p>This change helps <code>setuptools</code> understand that C-headers
are not to be installed under
<code>lib/python3.{x}/site-packages/</code>.</p>
<p><em>Related commits on GitHub:</em> 31e1170.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</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.0.5 (2024-02-01)</h1>
<h2>Bug fixes</h2>
<ul>
<li>
<p>Upgraded the C-API macros that have been deprecated in Python 3.9
and later removed in 3.13 -- by :user:<code>iemelyanov</code>.</p>
<p><em>Related issues and pull requests on GitHub:</em>
:issue:<code>862</code>, :issue:<code>864</code>,
:issue:<code>868</code>, :issue:<code>898</code>.</p>
</li>
<li>
<p>Reverted to using the public argument parsing API
:c:func:<code>PyArg_ParseTupleAndKeywords</code> under Python 3.12
-- by :user:<code>charles-dyfis-net</code> and
:user:<code>webknjaz</code>.</p>
<p>The effect is that this change prevents build failures with
clang 16.9.6 and gcc-14 reported in :issue:<code>926</code>. It also
fixes a segmentation fault crash caused by passing keyword
arguments to :py:meth:<code>MultiDict.getall()
&lt;multidict.MultiDict.getall&gt;</code> discovered by
:user:<code>jonaslb</code>
and :user:<code>hroncok</code> while examining the problem.</p>
<p><em>Related issues and pull requests on GitHub:</em>
:issue:<code>862</code>, :issue:<code>909</code>,
:issue:<code>926</code>, :issue:<code>929</code>.</p>
</li>
<li>
<p>Fixed a <code>SystemError: null argument to internal routine</code>
error on
a <code>MultiDict.items().isdisjoint()</code> call when using C
Extensions.</p>
<p><em>Related issues and pull requests on GitHub:</em>
:issue:<code>927</code>.</p>
</li>
</ul>
<h2>Improved documentation</h2>
<ul>
<li>
<p>On the <code>Contributing docs
&lt;https://github.com/aio-libs/multidict/blob/master/CHANGES/README.rst&gt;</code>_
page,
a link to the <code>Towncrier philosophy</code> has been fixed.</p>
<p><em>Related issues and pull requests on GitHub:</em></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/a9b281b2ef4ab25d95d6b268aa88c428e75c3696"><code>a9b281b</code></a>
⇪ 📦 Release v6.0.5</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/ed825c85eaa7d9518e00ad38cdc74c8daec9f09a"><code>ed825c8</code></a>
🧪 Download artifacts to <code>dist/</code> @ release job</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/7b04a64337ac0765f0aff6d2afc18480a9738c15"><code>7b04a64</code></a>
🧪 Normalize issue refs @ release action</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/74840e8fdf84e4617054f3fe6581a5ec5e507554"><code>74840e8</code></a>
🧪 Pass Codecov token to reusable linters job</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/41c133e00e773d6c80d1dba4cc210ba719685b0d"><code>41c133e</code></a>
🧪 Bump Codecov action to v4</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/adb1976f15534b84943df525bcae1e761592b615"><code>adb1976</code></a>
📝 Fix return type @ Sphinx config</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/99e435fe64dd39df75fd4e78b178b30e4c015667"><code>99e435f</code></a>
📝 Mention bylines in the changelog guidelines</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/736169eef2af746ddc8baf9a18d43cf8f3974fba"><code>736169e</code></a>
📝 Clarify need to only ref PR @ change note name</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/887846f546d8a897177c0e7f6105881919935ab3"><code>887846f</code></a>
📝 Highlight the RST term @ changelog guide</li>
<li><a
href="https://github.com/aio-libs/multidict/commit/8f57f8a7a0481eb26137426979c6fdd7f34bf14d"><code>8f57f8a</code></a>
📝 Add a missing comma @ changelog guide</li>
<li>Additional commits viewable in <a
href="https://github.com/aio-libs/multidict/compare/v6.0.4...v6.0.5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=multidict&package-manager=pip&previous-version=6.0.4&new-version=6.0.5)](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>
  • Loading branch information
RJ1002 authored Feb 21, 2024
2 parents f235b88 + 172c6f3 commit 704cb5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ requests==2.31.0
Unidecode==1.3.8
websockets==12.0
matplotlib==3.7.4
multidict==6.0.4
multidict==6.0.5
pymongo==4.6.1
numpy==1.26.3
six==1.16
Expand Down

0 comments on commit 704cb5f

Please sign in to comment.