[pull] master from aio-libs:master#299
Merged
pull[bot] merged 73 commits intotj-python:masterfrom Jul 10, 2025
Merged
Conversation
* Fix cookie handling * Fix cookie handling * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update aiohttp/cookiejar.py Co-authored-by: Sam Bull <aa6bs0@sambull.org> Co-authored-by: Bruno Cabral <bruno@potelo.com.br> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Sam Bull <aa6bs0@sambull.org> (cherry picked from commit 916b3ee) <!-- Thank you for your contribution! --> ## What do these changes do? <!-- Please give a short brief about these changes. --> ## Are there changes in behavior for the user? <!-- Outline any notable behaviour for the end users. --> ## Related issue number <!-- Are there any issues opened that will be resolved by merging this change? --> ## Checklist - [ ] I think the code is well written - [ ] Unit tests for the changes exist - [ ] Documentation reflects the changes - [ ] If you provide code modification, please add yourself to `CONTRIBUTORS.txt` * The format is <Name> <Surname>. * Please keep alphabetical order, the file is sorted by names. - [ ] Add a new news fragment into the `CHANGES` folder * name it `<issue_id>.<type>` for example (588.bugfix) * if you don't have an `issue_id` change it to the pr id after creating the pr * ensure type is one of the following: * `.feature`: Signifying a new feature. * `.bugfix`: Signifying a bug fix. * `.doc`: Signifying a documentation improvement. * `.removal`: Signifying a deprecation or removal of public API. * `.misc`: A ticket has been closed, but it is not of interest to users. * Make sure to use full sentences with correct case and punctuation, for example: "Fix issue with non-ascii contents in doctest text files." Co-authored-by: Bruno Cabral <brataodream@gmail.com>
…oc (#7155) **This is a backport of PR #7154 as merged into master (283861d).** <!-- Thank you for your contribution! --> ## What do these changes do? Fix small mistake in doc ## Are there changes in behavior for the user? No. ## Related issue number #7151 Co-authored-by: solarjoe <walterwhite666@googlemail.com>
#7199) Co-authored-by: J. Nick Koston <nick@koston.org>
(cherry picked from commit fb7a0a1)
…ore links (#7349) **This is a backport of PR #7348 as merged into master (bf9d753).** In corner cases, changelog fragments with things like detached link definitions (example: #7346) cause RST rendering errors. This patch corrects this by injecting empty lines between the changelog entry bodies and their reference lists. Co-authored-by: Sviatoslav Sydorenko <sviat@redhat.com>
…yPI (#7360) Co-authored-by: Sviatoslav Sydorenko <sviat@redhat.com>
**This is a backport of PR #7370 as merged into master (22c264c).** <!-- Thank you for your contribution! --> ## What do these changes do? Fixes #7351 ## Are there changes in behavior for the user? <!-- Outline any notable behaviour for the end users. --> ## Related issue number <!-- Are there any issues opened that will be resolved by merging this change? --> ## Checklist - [x] I think the code is well written - [x] Unit tests for the changes exist - [x] Documentation reflects the changes - [x] If you provide code modification, please add yourself to `CONTRIBUTORS.txt` * The format is <Name> <Surname>. * Please keep alphabetical order, the file is sorted by names. - [x] Add a new news fragment into the `CHANGES` folder * name it `<issue_id>.<type>` for example (588.bugfix) * if you don't have an `issue_id` change it to the pr id after creating the pr * ensure type is one of the following: * `.feature`: Signifying a new feature. * `.bugfix`: Signifying a bug fix. * `.doc`: Signifying a documentation improvement. * `.removal`: Signifying a deprecation or removal of public API. * `.misc`: A ticket has been closed, but it is not of interest to users. * Make sure to use full sentences with correct case and punctuation, for example: "Fix issue with non-ascii contents in doctest text files." Co-authored-by: Shamil Abdulaev <112097588+abdulaev-sh-m@users.noreply.github.com>
(cherry picked from commit 985c448)
## What do these changes do? If no NETRC environment variable is provided and the .netrc path cannot be accessed due to missing permission, a PermissionError was raised instead of returning None. See issue #7237. This PR fixes the issue. If the changes look good, I can also prepare backports. ## Are there changes in behavior for the user? If the .netrc cannot be accessed due to a permission problem (and the `NETRC` environment variable is unset), no `PermissionError` will be raised. Instead it will be silently ignored. ## Related issue number Fixes #7237 Backport of #7378 (cherry picked from commit 0d2e43b) ## Checklist - [x] I think the code is well written - [x] Unit tests for the changes exist - [x] Documentation reflects the changes - [x] If you provide code modification, please add yourself to `CONTRIBUTORS.txt` * The format is <Name> <Surname>. * Please keep alphabetical order, the file is sorted by names. - [x] Add a new news fragment into the `CHANGES` folder * name it `<issue_id>.<type>` for example (588.bugfix) * if you don't have an `issue_id` change it to the pr id after creating the pr * ensure type is one of the following: * `.feature`: Signifying a new feature. * `.bugfix`: Signifying a bug fix. * `.doc`: Signifying a documentation improvement. * `.removal`: Signifying a deprecation or removal of public API. * `.misc`: A ticket has been closed, but it is not of interest to users. * Make sure to use full sentences with correct case and punctuation, for example: "Fix issue with non-ascii contents in doctest text files."
…jitter not work (#7519) **This is a backport of PR #7518 as merged into master (8bd42e7).** <!-- Thank you for your contribution! --> ## What do these changes do? <!-- Please give a short brief about these changes. --> `GunicornWebWorker` use `self.cfg.max_requests` which is not add jitter, from https://github.com/benoitc/gunicorn/blob/master/gunicorn/workers/base.py#L56-L60, the correct way is to use `sef.max_requests` ## Are there changes in behavior for the user? <!-- Outline any notable behaviour for the end users. --> After the PR is merged, the max-requests-jitter parameter of Gunicorn can take effect. ## Related issue number <!-- Are there any issues opened that will be resolved by merging this change? --> ## Checklist - [x] I think the code is well written - [x] Unit tests for the changes exist - [ ] Documentation reflects the changes - [ ] If you provide code modification, please add yourself to `CONTRIBUTORS.txt` * The format is <Name> <Surname>. * Please keep alphabetical order, the file is sorted by names. - [x] Add a new news fragment into the `CHANGES` folder * name it `<issue_id>.<type>` for example (588.bugfix) * if you don't have an `issue_id` change it to the pr id after creating the pr * ensure type is one of the following: * `.feature`: Signifying a new feature. * `.bugfix`: Signifying a bug fix. * `.doc`: Signifying a documentation improvement. * `.removal`: Signifying a deprecation or removal of public API. * `.misc`: A ticket has been closed, but it is not of interest to users. * Make sure to use full sentences with correct case and punctuation, for example: "Fix issue with non-ascii contents in doctest text files." Co-authored-by: phyng <phyngk@gmail.com>
Bumps [multidict](https://github.com/aio-libs/multidict) from 6.5.0 to 6.5.1. <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.5.1</h2> <h2>Bug fixes</h2> <ul> <li> <p>Fixed a bug in C implementation when multidict is resized and it has deleted slots.</p> <p>The bug was introduced by multidict 6.5.0 release.</p> <p>Patch by :user:<code>asvetlov</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> <a href="https://redirect.github.com/aio-libs/multidict/issues/1195">#1195</a>.</p> </li> </ul> <h2>Contributor-facing changes</h2> <ul> <li> <p>A pair of code formatters for Python and C have been configured in the pre-commit tool.</p> <p><em>Related issues and pull requests on GitHub:</em> <a href="https://redirect.github.com/aio-libs/multidict/issues/1123">#1123</a>.</p> </li> <li> <p>Shorted fixture parametrization ids.</p> <p>For example, <code>test_keys_view_xor[case-insensitive-pure-python-module]</code> becomes <code>test_keys_view_xor[ci-py]</code> -- by :user:<code>asvetlov</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> <a href="https://redirect.github.com/aio-libs/multidict/issues/1192">#1192</a>.</p> </li> <li> <p>The :file:<code>reusable-cibuildwheel.yml</code> workflow has been refactored to be more generic and :file:<code>ci-cd.yml</code> now holds all the configuration toggles -- by :user:<code>webknjaz</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> <a href="https://redirect.github.com/aio-libs/multidict/issues/1193">#1193</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.5.1</h1> <p><em>(2025-06-24)</em></p> <h2>Bug fixes</h2> <ul> <li> <p>Fixed a bug in C implementation when multidict is resized and it has deleted slots.</p> <p>The bug was introduced by multidict 6.5.0 release.</p> <p>Patch by :user:<code>asvetlov</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> :issue:<code>1195</code>.</p> </li> </ul> <h2>Contributor-facing changes</h2> <ul> <li> <p>A pair of code formatters for Python and C have been configured in the pre-commit tool.</p> <p><em>Related issues and pull requests on GitHub:</em> :issue:<code>1123</code>.</p> </li> <li> <p>Shorted fixture parametrization ids.</p> <p>For example, <code>test_keys_view_xor[case-insensitive-pure-python-module]</code> becomes <code>test_keys_view_xor[ci-py]</code> -- by :user:<code>asvetlov</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> :issue:<code>1192</code>.</p> </li> <li> <p>The :file:<code>reusable-cibuildwheel.yml</code> workflow has been refactored to be more generic and :file:<code>ci-cd.yml</code> now holds all the configuration toggles -- by :user:<code>webknjaz</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> :issue:<code>1193</code>.</p> </li> </ul> <hr /> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aio-libs/multidict/commit/df0379fe7f27682359e3298a9ad1507f650cc690"><code>df0379f</code></a> Release 6.5.1 (<a href="https://redirect.github.com/aio-libs/multidict/issues/1197">#1197</a>)</li> <li><a href="https://github.com/aio-libs/multidict/commit/964d65f3c1a4aaa7f49acc6c2028aef79aba69fd"><code>964d65f</code></a> Issue 1195 (<a href="https://redirect.github.com/aio-libs/multidict/issues/1196">#1196</a>)</li> <li><a href="https://github.com/aio-libs/multidict/commit/c90fade05a2dfb2818993de920f02764b86e4772"><code>c90fade</code></a> Fix md_get_all() return value (<a href="https://redirect.github.com/aio-libs/multidict/issues/1194">#1194</a>)</li> <li><a href="https://github.com/aio-libs/multidict/commit/eeb048f7ec15d51ff1289a7eb431618fd79c9036"><code>eeb048f</code></a> Merge branch 'maintenance/generic-gha-cibuildwheel'</li> <li><a href="https://github.com/aio-libs/multidict/commit/0072f7e53b4cb097948abb8b05c39029a3c231ca"><code>0072f7e</code></a> 📝 Add a change note for PR <a href="https://redirect.github.com/aio-libs/multidict/issues/1193">#1193</a></li> <li><a href="https://github.com/aio-libs/multidict/commit/7fa1318a151336e7dd6462f790527ac8be90a559"><code>7fa1318</code></a> 🧪 Generalize <code>cibuildwheel</code> config w/ env vars</li> <li><a href="https://github.com/aio-libs/multidict/commit/2f05c7b85209502804472e8f3e4d60befdc7271b"><code>2f05c7b</code></a> 🧪 Implement CI UI build matrix groups</li> <li><a href="https://github.com/aio-libs/multidict/commit/661a5e16dda31981bbcf43b13219d6cf9b4f3298"><code>661a5e1</code></a> Surface <code>timeout-minutes</code> in reusable-cibuildwheel</li> <li><a href="https://github.com/aio-libs/multidict/commit/67a8cb2d196ef8fff33812caed1bf7d726c79dd2"><code>67a8cb2</code></a> Replace reusable-cibuildwheel <code>tag</code> w/<code>check-name</code></li> <li><a href="https://github.com/aio-libs/multidict/commit/9ed7eb142cdbb06d3cc2ee71e5418235885dddbc"><code>9ed7eb1</code></a> Make hash compute sparse @ <code>reusable-cibuildwheel</code></li> <li>Additional commits viewable in <a href="https://github.com/aio-libs/multidict/compare/v6.5.0...v6.5.1">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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…11161 (#11232) Co-authored-by: kge <kge@gitlab>
Bumps [multidict](https://github.com/aio-libs/multidict) from 6.5.1 to 6.6.2. <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.6.2</h2> <h2>Bug fixes</h2> <ul> <li> <p>Fixed a memory corruption issue in the C implementation of <code>_md_shrink()</code> that could lead to segmentation faults and data loss when items were deleted from a :class:<code>~multidict.MultiDict</code>. The issue was an edge case in the pointer arithmetic during the compaction phase -- 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/1221">#1221</a>, <a href="https://redirect.github.com/aio-libs/multidict/issues/1222">#1222</a>.</p> </li> <li> <p>Fixed format string compilation errors in debug builds on 32-bit platforms by using portable <code>%zd</code> format specifiers for <code>Py_ssize_t</code> values instead of <code>%ld</code> -- 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/1225">#1225</a>, <a href="https://redirect.github.com/aio-libs/multidict/issues/1226">#1226</a>.</p> </li> </ul> <h2>Packaging updates and notes for downstreams</h2> <ul> <li> <p>Re-enabled 32-bit Linux wheel builds that were disabled by default in cibuildwheel 3.0.0 -- 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/1225">#1225</a>, <a href="https://redirect.github.com/aio-libs/multidict/issues/1227">#1227</a>.</p> </li> </ul> <hr /> <h2>6.6.1</h2> <h2>Bug fixes</h2> <ul> <li> <p>If :meth:<code>multidict.MultiDict.extend</code>, :meth:<code>multidict.MultiDict.merge</code>, or :meth:<code>multidict.MultiDict.update</code> raises an exception, now the multidict internal state is correctly restored. Patch by :user:<code>asvetlov</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> <a href="https://redirect.github.com/aio-libs/multidict/issues/1215">#1215</a>.</p> </li> </ul> <h2>Contributor-facing changes</h2> <ul> <li> <p>Fixed <code>setuptools</code> deprecation warning about the license specification -- by :user:<code>asvetlov</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> <a href="https://redirect.github.com/aio-libs/multidict/issues/1216">#1216</a>.</p> </li> <li> <p>Fix compiler warnings and convert them to errors -- by :user:<code>asvetlov</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> <a href="https://redirect.github.com/aio-libs/multidict/issues/1217">#1217</a>.</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.6.2</h1> <p><em>(2025-06-28)</em></p> <h2>Bug fixes</h2> <ul> <li> <p>Fixed a memory corruption issue in the C implementation of <code>_md_shrink()</code> that could lead to segmentation faults and data loss when items were deleted from a :class:<code>~multidict.MultiDict</code>. The issue was an edge case in the pointer arithmetic during the compaction phase -- by :user:<code>bdraco</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> :issue:<code>1221</code>, :issue:<code>1222</code>.</p> </li> <li> <p>Fixed format string compilation errors in debug builds on 32-bit platforms by using portable <code>%zd</code> format specifiers for <code>Py_ssize_t</code> values instead of <code>%ld</code> -- by :user:<code>bdraco</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> :issue:<code>1225</code>, :issue:<code>1226</code>.</p> </li> </ul> <h2>Packaging updates and notes for downstreams</h2> <ul> <li> <p>Re-enabled 32-bit Linux wheel builds that were disabled by default in cibuildwheel 3.0.0 -- by :user:<code>bdraco</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> :issue:<code>1225</code>, :issue:<code>1227</code>.</p> </li> </ul> <hr /> <h1>6.6.1</h1> <p><em>(2025-06-28)</em></p> <h2>Bug fixes</h2> <ul> <li> <p>If :meth:<code>multidict.MultiDict.extend</code>, :meth:<code>multidict.MultiDict.merge</code>, or :meth:<code>multidict.MultiDict.update</code> raises an exception, now the multidict internal state is correctly restored. Patch by :user:<code>asvetlov</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> :issue:<code>1215</code>.</p> </li> </ul> <h2>Contributor-facing changes</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aio-libs/multidict/commit/8ea69422ea5e80293cec2258ecc8c1a4b3c6239e"><code>8ea6942</code></a> Release 6.6.2 (<a href="https://redirect.github.com/aio-libs/multidict/issues/1224">#1224</a>)</li> <li><a href="https://github.com/aio-libs/multidict/commit/149c693df2e6c5deb398bdb57f428d61220db9fc"><code>149c693</code></a> Fix format strings on 32bit platforms (<a href="https://redirect.github.com/aio-libs/multidict/issues/1226">#1226</a>)</li> <li><a href="https://github.com/aio-libs/multidict/commit/ae6ed084c22bb4d689a6a17b1276519dc679ca67"><code>ae6ed08</code></a> Restore building 32bit wheels on Linux (<a href="https://redirect.github.com/aio-libs/multidict/issues/1227">#1227</a>)</li> <li><a href="https://github.com/aio-libs/multidict/commit/17bbfd050623bcb8f56d2434b0e8241d573bd3c4"><code>17bbfd0</code></a> Fix pointer increment issue in _md_shrink causing memory corruption (<a href="https://redirect.github.com/aio-libs/multidict/issues/1222">#1222</a>)</li> <li><a href="https://github.com/aio-libs/multidict/commit/863eff18c9b00fc36115fd9648b3b0bc96cfca2e"><code>863eff1</code></a> Bump to 6.6.2.dev0 (<a href="https://redirect.github.com/aio-libs/multidict/issues/1220">#1220</a>)</li> <li><a href="https://github.com/aio-libs/multidict/commit/ba4d428acf8caaf95c61785fb048f5c71d7d33ef"><code>ba4d428</code></a> Release 6.6.1 (<a href="https://redirect.github.com/aio-libs/multidict/issues/1219">#1219</a>)</li> <li><a href="https://github.com/aio-libs/multidict/commit/626d96c4cf57aede2efb89e922a41c1ad1eab1a1"><code>626d96c</code></a> Fix compiler warnings, convert them to errors (<a href="https://redirect.github.com/aio-libs/multidict/issues/1217">#1217</a>)</li> <li><a href="https://github.com/aio-libs/multidict/commit/50a58d4411deb5c8cd9f1ac2ac362ba6fce51d32"><code>50a58d4</code></a> Restore multidict internal state on exception during updating (<a href="https://redirect.github.com/aio-libs/multidict/issues/1215">#1215</a>)</li> <li><a href="https://github.com/aio-libs/multidict/commit/0b046c90e44292f0392d014e7d26e1650fd6cb14"><code>0b046c9</code></a> Fix setuptools deprecation warning about the license (<a href="https://redirect.github.com/aio-libs/multidict/issues/1216">#1216</a>)</li> <li><a href="https://github.com/aio-libs/multidict/commit/97c0e9402263f5421ca9d756a231ff43a49b6063"><code>97c0e94</code></a> Bump to 6.6.0.dev0 (<a href="https://redirect.github.com/aio-libs/multidict/issues/1214">#1214</a>)</li> <li>Additional commits viewable in <a href="https://github.com/aio-libs/multidict/compare/v6.5.1...v6.6.2">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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [pytest-xdist](https://github.com/pytest-dev/pytest-xdist) from 3.7.0 to 3.8.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest-xdist/blob/master/CHANGELOG.rst">pytest-xdist's changelog</a>.</em></p> <blockquote> <h1>pytest-xdist 3.8.0 (2025-06-30)</h1> <h2>Features</h2> <ul> <li> <p><code>[#1083](pytest-dev/pytest-xdist#1083) <https://github.com/pytest-dev/pytest-xdist/issues/1083></code>_: Add <code>--no-loadscope-reorder</code> and <code>--loadscope-reorder</code> option to control whether to automatically reorder tests in loadscope for tests where relative ordering matters. This only applies when using <code>loadscope</code>.</p> <p>For example, [test_file_1, test_file_2, ..., test_file_n] are given as input test files, if <code>--no-loadscope-reorder</code> is used, for either worker, the <code>test_file_a</code> will be executed before <code>test_file_b</code> only if <code>a < b</code>.</p> <p>The default behavior is to reorder the tests to maximize the number of tests that can be executed in parallel.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/1e3e4dc16523c8a8f6c67d95a950166420718c99"><code>1e3e4dc</code></a> Release 3.8.0</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/600aad575a4e4382855145b0c464d51b8f0b7242"><code>600aad5</code></a> Ensure all xdist group names are strings (<a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1216">#1216</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/9d7ba5b5fbbbe26793fbfb7cb1903eb69425cf09"><code>9d7ba5b</code></a> Add <code>--no-loadscope-reorder</code> and <code>--loadscope-reorder</code> options (<a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1217">#1217</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/532f07fb181bb1546eda79bbe6b46bdb56c699e1"><code>532f07f</code></a> Merge pull request <a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1210">#1210</a> from pytest-dev/pre-commit-ci-update-config</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/0883ad085e0cf039c8ae13eb2789c1076544d225"><code>0883ad0</code></a> Fix Path usage in <code>test_rsync_roots_no_roots</code></li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/58a51bc14015d211761e44c2bdacab09c3893668"><code>58a51bc</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/59a2ad0150697b9ff837f3ae8dcf6e074d5a114b"><code>59a2ad0</code></a> Merge pull request <a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1220">#1220</a> from pytest-dev/dependabot/github_actions/github-act...</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/d42b9c72044855236c68286ca3bdb34486a05872"><code>d42b9c7</code></a> build(deps): bump hynek/build-and-inspect-python-package</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/ebfcb99072aed3503fda5175245f28895a0204bb"><code>ebfcb99</code></a> Merge pull request <a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1206">#1206</a> from pytest-dev/release-3.7.0</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/23b7fd6054298a530b02b33d07007b3082a36277"><code>23b7fd6</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1207">#1207</a>)</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-xdist/compare/v3.7.0...v3.8.0">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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [multidict](https://github.com/aio-libs/multidict) from 6.6.2 to 6.6.3. <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.6.3</h2> <h2>Bug fixes</h2> <ul> <li> <p>Fixed inconsistencies generated by the C implementation of <code>_md_shrink()</code> which might later lead to assertion failures and crash -- by :user:<code>Romain-Geissler-1A</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> <a href="https://redirect.github.com/aio-libs/multidict/issues/1229">#1229</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.6.3</h1> <p><em>(2025-06-30)</em></p> <h2>Bug fixes</h2> <ul> <li> <p>Fixed inconsistencies generated by the C implementation of <code>_md_shrink()</code> which might later lead to assertion failures and crash -- by :user:<code>Romain-Geissler-1A</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> :issue:<code>1229</code>.</p> </li> </ul> <hr /> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aio-libs/multidict/commit/dbd686f37c1bc14355dce9c16dbbfae82f11dc00"><code>dbd686f</code></a> Bump to 6.6.3 (<a href="https://redirect.github.com/aio-libs/multidict/issues/1230">#1230</a>)</li> <li><a href="https://github.com/aio-libs/multidict/commit/ac621054343a7deffa429f3dfd3267a2f8b91e10"><code>ac62105</code></a> Fixed inconsistencies generated by _md_shrink. (<a href="https://redirect.github.com/aio-libs/multidict/issues/1229">#1229</a>)</li> <li>See full diff in <a href="https://github.com/aio-libs/multidict/compare/v6.6.2...v6.6.3">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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.9.1 to 7.9.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst">coverage's changelog</a>.</em></p> <blockquote> <h2>Version 7.9.2 — 2025-07-03</h2> <ul> <li> <p>Fix: complex conditionals within a line might cause a KeyError when using sys.monitoring, as reported in <code>issue 1991</code>_. This is now fixed.</p> </li> <li> <p>Fix: we can now measure coverage for code in Python archive (.par) files. Thanks, <code>Itamer Oren <pull 1984_></code>_.</p> </li> </ul> <p>.. _pull 1984: <a href="https://redirect.github.com/nedbat/coveragepy/pull/1984">nedbat/coveragepy#1984</a> .. _issue 1991: <a href="https://redirect.github.com/nedbat/coveragepy/issues/1991">nedbat/coveragepy#1991</a></p> <p>.. _changes_7-9-1:</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nedbat/coveragepy/commit/6e774923cf042751feb78036fcd46909d263be06"><code>6e77492</code></a> docs: oops, beta 3</li> <li><a href="https://github.com/nedbat/coveragepy/commit/b24cf7ef3968ba86ebe3c3d4ca8ae3af82d6dc8c"><code>b24cf7e</code></a> docs: sample HTML for 7.9.2</li> <li><a href="https://github.com/nedbat/coveragepy/commit/35305c350fb08ea02a723c91b0eb84ab14b770bd"><code>35305c3</code></a> docs: prep for 7.9.2</li> <li><a href="https://github.com/nedbat/coveragepy/commit/9a8d9b637406334c5ef3fdf8d574d3e5c54aa66c"><code>9a8d9b6</code></a> docs: add pull request link</li> <li><a href="https://github.com/nedbat/coveragepy/commit/88dcaa21727a8670e0eb663cae540760b1f04a6d"><code>88dcaa2</code></a> fix: assume a missing line number is intra-line. <a href="https://redirect.github.com/nedbat/coveragepy/issues/1991">#1991</a></li> <li><a href="https://github.com/nedbat/coveragepy/commit/678ec80b42116b790ee30cb8ec638a0dda96927c"><code>678ec80</code></a> build: use pyenv for nightly builds. Thanks, Paul Timmins</li> <li><a href="https://github.com/nedbat/coveragepy/commit/a3d00d521a8d49c133b773bcbc22ee7d0f839f93"><code>a3d00d5</code></a> build: workflow jobs should have names</li> <li><a href="https://github.com/nedbat/coveragepy/commit/279310a8f08b742072915ff88b6773a70ed3095d"><code>279310a</code></a> chore: bump the action-dependencies group with 2 updates (<a href="https://redirect.github.com/nedbat/coveragepy/issues/1988">#1988</a>)</li> <li><a href="https://github.com/nedbat/coveragepy/commit/614dfbf059002a832b187fe8d14f635ee64afb0b"><code>614dfbf</code></a> fix: enable measuring test coverage for Python archive (.par) files (<a href="https://redirect.github.com/nedbat/coveragepy/issues/1984">#1984</a>)</li> <li><a href="https://github.com/nedbat/coveragepy/commit/42bf82c3ed409c308b2f2437fac87cb5b8d6fad9"><code>42bf82c</code></a> chore: bump the action-dependencies group with 2 updates (<a href="https://redirect.github.com/nedbat/coveragepy/issues/1985">#1985</a>)</li> <li>Additional commits viewable in <a href="https://github.com/nedbat/coveragepy/compare/7.9.1...7.9.2">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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [cryptography](https://github.com/pyca/cryptography) from 45.0.4 to 45.0.5. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's changelog</a>.</em></p> <blockquote> <p>45.0.5 - 2025-07-02</p> <pre><code> * Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.5.1. <p>.. _v45-0-4:<br /> </code></pre></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pyca/cryptography/commit/3e53a233b65123d2a836b58ccdc427ed5207f92b"><code>3e53a23</code></a> Bump for 45.0.5 release (<a href="https://redirect.github.com/pyca/cryptography/issues/13135">#13135</a>)</li> <li>See full diff in <a href="https://github.com/pyca/cryptography/compare/45.0.4...45.0.5">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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [aiosignal](https://github.com/aio-libs/aiosignal) from 1.3.2 to 1.4.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/aio-libs/aiosignal/releases">aiosignal's releases</a>.</em></p> <blockquote> <h2>1.4.0</h2> <h2>Features</h2> <ul> <li> <p>Added decorator functionality to <code>Signal</code> as a convenient way to add a callback -- by <code>@Vizonex</code>. <code>[#699](aio-libs/aiosignal#699) <https://github.com/aio-libs/aiosignal/pulls/699></code>_</p> </li> <li> <p>Improved type safety by allowing callback parameters to be type checked (typing-extensions is now required for Python <3.13). Parameters for a <code>Signal</code> callback should now be defined like <code>Signal[int, str]</code> -- by <a href="https://github.com/Vizonex"><code>@Vizonex</code></a> and <a href="https://github.com/Dreamsorcerer"><code>@Dreamsorcerer</code></a>. <code>[#699](aio-libs/aiosignal#699) <https://github.com/aio-libs/aiosignal/pulls/699></code><em>, <code>[#710](aio-libs/aiosignal#710) <https://github.com/aio-libs/aiosignal/pulls/710></code></em></p> </li> </ul> <h2>Misc</h2> <ul> <li>Removed the sphinxcontrib-asyncio documentation dependency. <code>[#528](aio-libs/aiosignal#528) <https://github.com/aio-libs/aiosignal/pull/528></code>_</li> </ul> <hr /> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/aio-libs/aiosignal/blob/master/CHANGES.rst">aiosignal's changelog</a>.</em></p> <blockquote> <h1>1.4.0 (2025-07-03)</h1> <h2>Features</h2> <ul> <li> <p>Added decorator functionality to <code>Signal</code> as a convenient way to add a callback -- by <code>@Vizonex</code>. <code>[#699](aio-libs/aiosignal#699) <https://github.com/aio-libs/aiosignal/pulls/699></code>_</p> </li> <li> <p>Improved type safety by allowing callback parameters to be type checked (typing-extensions is now required for Python <3.13). Parameters for a <code>Signal</code> callback should now be defined like <code>Signal[int, str]</code> -- by <a href="https://github.com/Vizonex"><code>@Vizonex</code></a> and <a href="https://github.com/Dreamsorcerer"><code>@Dreamsorcerer</code></a>. <code>[#699](aio-libs/aiosignal#699) <https://github.com/aio-libs/aiosignal/pulls/699></code><em>, <code>[#710](aio-libs/aiosignal#710) <https://github.com/aio-libs/aiosignal/pulls/710></code></em></p> </li> </ul> <h2>Misc</h2> <ul> <li>Removed the sphinxcontrib-asyncio documentation dependency. <code>[#528](aio-libs/aiosignal#528) <https://github.com/aio-libs/aiosignal/pull/528></code>_</li> </ul> <hr /> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aio-libs/aiosignal/commit/1cf80149c869d410c90a58e85e9c703be6ef8692"><code>1cf8014</code></a> Fix deploy</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/892494c5c72553e281e57e924cf055e6125fb0fc"><code>892494c</code></a> Release v1.4 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/718">#718</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/fa360821631383aed6a534da6f73ad149ec666f7"><code>fa36082</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/719">#719</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/b7f68f12fed7c4b84a6866984e7adafcd18fe265"><code>b7f68f1</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/717">#717</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/2b1acac380eaaa91a643bfc9c24fa1f3942f0d45"><code>2b1acac</code></a> Build(deps): Bump sigstore/gh-action-sigstore-python from 3.0.0 to 3.0.1 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/716">#716</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/17456ed5f968c0001a8823c2076f999fbf448157"><code>17456ed</code></a> Build(deps): Bump tox from 4.26.0 to 4.27.0 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/715">#715</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/4c236903da2e71b85652c07bed69013189a39406"><code>4c23690</code></a> Build(deps): Bump pytest from 8.4.0 to 8.4.1 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/714">#714</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/7be2f6833be08bb14207bc627f9931665cd947ce"><code>7be2f68</code></a> Build(deps): Bump mypy from 1.16.0 to 1.16.1 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/713">#713</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/5d62945d07c9413720e968cc3f25c66307d9a337"><code>5d62945</code></a> Build(deps): Bump coverage from 7.9.0 to 7.9.1 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/712">#712</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/a6d85c1c3430621814d6163ea442828e7f31b34b"><code>a6d85c1</code></a> Build(deps): Bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/694">#694</a>)</li> <li>Additional commits viewable in <a href="https://github.com/aio-libs/aiosignal/compare/v1.3.2...v1.4.0">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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sam Bull <git@sambull.org> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Bumps [typing-extensions](https://github.com/python/typing_extensions) from 4.14.0 to 4.14.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/python/typing_extensions/releases">typing-extensions's releases</a>.</em></p> <blockquote> <h2>4.14.1</h2> <h1>Release 4.14.1 (July 4, 2025)</h1> <ul> <li>Fix usage of <code>typing_extensions.TypedDict</code> nested inside other types (e.g., <code>typing.Type[typing_extensions.TypedDict]</code>). This is not allowed by the type system but worked on older versions, so we maintain support.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python/typing_extensions/blob/main/CHANGELOG.md">typing-extensions's changelog</a>.</em></p> <blockquote> <h1>Release 4.14.1 (July 4, 2025)</h1> <ul> <li>Fix usage of <code>typing_extensions.TypedDict</code> nested inside other types (e.g., <code>typing.Type[typing_extensions.TypedDict]</code>). This is not allowed by the type system but worked on older versions, so we maintain support.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python/typing_extensions/commit/42027aba3558c9d9133a90bca17f6fecaecc48d8"><code>42027ab</code></a> Prepare release 4.14.1 (<a href="https://redirect.github.com/python/typing_extensions/issues/620">#620</a>)</li> <li><a href="https://github.com/python/typing_extensions/commit/59d2c20858ac527516ebad5a89c05af514dac94a"><code>59d2c20</code></a> Fix off by one in pickle protocol tests (<a href="https://redirect.github.com/python/typing_extensions/issues/618">#618</a>)</li> <li><a href="https://github.com/python/typing_extensions/commit/40e22ebb2ca5747eaa9405b152c43a294ac3af37"><code>40e22eb</code></a> Do not use slots for <code>_TypedDictSpecialForm</code> (<a href="https://redirect.github.com/python/typing_extensions/issues/616">#616</a>)</li> <li><a href="https://github.com/python/typing_extensions/commit/d17c456d367e88adee4a4e3bef48f81f7e2df473"><code>d17c456</code></a> allow TypedDict as a type argument (<a href="https://redirect.github.com/python/typing_extensions/issues/614">#614</a>)</li> <li>See full diff in <a href="https://github.com/python/typing_extensions/compare/4.14.0...4.14.1">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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 3.0.0 to 3.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pypa/cibuildwheel/releases">pypa/cibuildwheel's releases</a>.</em></p> <blockquote> <h2>v3.0.1</h2> <ul> <li>🛠 Updates CPython 3.14 prerelease to 3.14.0b3 (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/2471">#2471</a>)</li> <li>✨ Adds a CPython 3.14 prerelease iOS build (only when prerelease builds are <a href="https://cibuildwheel.pypa.io/en/stable/options/#enable">enabled</a>) (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/2475">#2475</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md">pypa/cibuildwheel's changelog</a>.</em></p> <blockquote> <h3>v3.0.1</h3> <p><em>5 July 2025</em></p> <ul> <li>🛠 Updates CPython 3.14 prerelease to 3.14.0b3 (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/2471">#2471</a>)</li> <li>✨ Adds a CPython 3.14 prerelease iOS build (only when prerelease builds are <a href="https://cibuildwheel.pypa.io/en/stable/options/#enable">enabled</a>) (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/2475">#2475</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/cibuildwheel/commit/95d2f3a92fbf80abe066b09418bbf128a8923df2"><code>95d2f3a</code></a> Bump version: v3.0.1</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/40de3fe51083fa91bc8804c5a8de5c496f61ed52"><code>40de3fe</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/2483">#2483</a>)</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/920081014e8b136b4565824771dee1d489e046ef"><code>9200810</code></a> feat: added Python 3.14 preview for iOS (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/2475">#2475</a>)</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/94fe0a212fa9c1bfabd54ee45473c28f30227c03"><code>94fe0a2</code></a> [Bot] Update dependencies (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/2482">#2482</a>)</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/405ddd5315d4df8a9ffc569790a05e19f4344d7d"><code>405ddd5</code></a> fix: pyodide missing some logging (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/2477">#2477</a>)</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/34b4f1e86e47792c683de9ef813ed4d614159846"><code>34b4f1e</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/2474">#2474</a>)</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/e69b5532ab01c9d7c73e8e376a4e1219307cd4bd"><code>e69b553</code></a> [Bot] Update dependencies (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/2473">#2473</a>)</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/3e86452449f29075a6e1fa3a165a532effacfdab"><code>3e86452</code></a> [Bot] Update dependencies (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/2471">#2471</a>)</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/e73749579b3347d39c4793da6f01e22ef6e4363e"><code>e737495</code></a> chore(deps): bump actions/attest-build-provenance from 2.3.0 to 2.4.0 in the ...</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/588dee0e0c7780ab3264dfd3fab3a197f50306d3"><code>588dee0</code></a> docs: include Windows ARM in examples (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/2468">#2468</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pypa/cibuildwheel/compare/v3.0.0...v3.0.1">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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [aiosignal](https://github.com/aio-libs/aiosignal) from 1.3.2 to 1.4.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/aio-libs/aiosignal/releases">aiosignal's releases</a>.</em></p> <blockquote> <h2>1.4.0</h2> <h2>Features</h2> <ul> <li> <p>Added decorator functionality to <code>Signal</code> as a convenient way to add a callback -- by <code>@Vizonex</code>. <code>[#699](aio-libs/aiosignal#699) <https://github.com/aio-libs/aiosignal/pulls/699></code>_</p> </li> <li> <p>Improved type safety by allowing callback parameters to be type checked (typing-extensions is now required for Python <3.13). Parameters for a <code>Signal</code> callback should now be defined like <code>Signal[int, str]</code> -- by <a href="https://github.com/Vizonex"><code>@Vizonex</code></a> and <a href="https://github.com/Dreamsorcerer"><code>@Dreamsorcerer</code></a>. <code>[#699](aio-libs/aiosignal#699) <https://github.com/aio-libs/aiosignal/pulls/699></code><em>, <code>[#710](aio-libs/aiosignal#710) <https://github.com/aio-libs/aiosignal/pulls/710></code></em></p> </li> </ul> <h2>Misc</h2> <ul> <li>Removed the sphinxcontrib-asyncio documentation dependency. <code>[#528](aio-libs/aiosignal#528) <https://github.com/aio-libs/aiosignal/pull/528></code>_</li> </ul> <hr /> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/aio-libs/aiosignal/blob/master/CHANGES.rst">aiosignal's changelog</a>.</em></p> <blockquote> <h1>1.4.0 (2025-07-03)</h1> <h2>Features</h2> <ul> <li> <p>Added decorator functionality to <code>Signal</code> as a convenient way to add a callback -- by <code>@Vizonex</code>. <code>[#699](aio-libs/aiosignal#699) <https://github.com/aio-libs/aiosignal/pulls/699></code>_</p> </li> <li> <p>Improved type safety by allowing callback parameters to be type checked (typing-extensions is now required for Python <3.13). Parameters for a <code>Signal</code> callback should now be defined like <code>Signal[int, str]</code> -- by <a href="https://github.com/Vizonex"><code>@Vizonex</code></a> and <a href="https://github.com/Dreamsorcerer"><code>@Dreamsorcerer</code></a>. <code>[#699](aio-libs/aiosignal#699) <https://github.com/aio-libs/aiosignal/pulls/699></code><em>, <code>[#710](aio-libs/aiosignal#710) <https://github.com/aio-libs/aiosignal/pulls/710></code></em></p> </li> </ul> <h2>Misc</h2> <ul> <li>Removed the sphinxcontrib-asyncio documentation dependency. <code>[#528](aio-libs/aiosignal#528) <https://github.com/aio-libs/aiosignal/pull/528></code>_</li> </ul> <hr /> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aio-libs/aiosignal/commit/1cf80149c869d410c90a58e85e9c703be6ef8692"><code>1cf8014</code></a> Fix deploy</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/892494c5c72553e281e57e924cf055e6125fb0fc"><code>892494c</code></a> Release v1.4 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/718">#718</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/fa360821631383aed6a534da6f73ad149ec666f7"><code>fa36082</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/719">#719</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/b7f68f12fed7c4b84a6866984e7adafcd18fe265"><code>b7f68f1</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/717">#717</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/2b1acac380eaaa91a643bfc9c24fa1f3942f0d45"><code>2b1acac</code></a> Build(deps): Bump sigstore/gh-action-sigstore-python from 3.0.0 to 3.0.1 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/716">#716</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/17456ed5f968c0001a8823c2076f999fbf448157"><code>17456ed</code></a> Build(deps): Bump tox from 4.26.0 to 4.27.0 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/715">#715</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/4c236903da2e71b85652c07bed69013189a39406"><code>4c23690</code></a> Build(deps): Bump pytest from 8.4.0 to 8.4.1 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/714">#714</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/7be2f6833be08bb14207bc627f9931665cd947ce"><code>7be2f68</code></a> Build(deps): Bump mypy from 1.16.0 to 1.16.1 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/713">#713</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/5d62945d07c9413720e968cc3f25c66307d9a337"><code>5d62945</code></a> Build(deps): Bump coverage from 7.9.0 to 7.9.1 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/712">#712</a>)</li> <li><a href="https://github.com/aio-libs/aiosignal/commit/a6d85c1c3430621814d6163ea442828e7f31b34b"><code>a6d85c1</code></a> Build(deps): Bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 (<a href="https://redirect.github.com/aio-libs/aiosignal/issues/694">#694</a>)</li> <li>Additional commits viewable in <a href="https://github.com/aio-libs/aiosignal/compare/v1.3.2...v1.4.0">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> --------- (cherry picked from commit 9571860) <!-- Thank you for your contribution! --> ## What do these changes do? <!-- Please give a short brief about these changes. --> ## Are there changes in behavior for the user? <!-- Outline any notable behaviour for the end users. --> ## Is it a substantial burden for the maintainers to support this? <!-- Stop right there! Pause. Just for a minute... Can you think of anything obvious that would complicate the ongoing development of this project? Try to consider if you'd be able to maintain it throughout the next 5 years. Does it seem viable? Tell us your thoughts! We'd very much love to hear what the consequences of merging this patch might be... This will help us assess if your change is something we'd want to entertain early in the review process. Thank you in advance! --> ## Related issue number <!-- Will this resolve any open issues? --> <!-- Remember to prefix with 'Fixes' if it closes an issue (e.g. 'Fixes #123'). --> ## Checklist - [ ] I think the code is well written - [ ] Unit tests for the changes exist - [ ] Documentation reflects the changes - [ ] If you provide code modification, please add yourself to `CONTRIBUTORS.txt` * The format is <Name> <Surname>. * Please keep alphabetical order, the file is sorted by names. - [ ] Add a new news fragment into the `CHANGES/` folder * name it `<issue_or_pr_num>.<type>.rst` (e.g. `588.bugfix.rst`) * if you don't have an issue number, change it to the pull request number after creating the PR * `.bugfix`: A bug fix for something the maintainers deemed an improper undesired behavior that got corrected to match pre-agreed expectations. * `.feature`: A new behavior, public APIs. That sort of stuff. * `.deprecation`: A declaration of future API removals and breaking changes in behavior. * `.breaking`: When something public is removed in a breaking way. Could be deprecated in an earlier release. * `.doc`: Notable updates to the documentation structure or build process. * `.packaging`: Notes for downstreams about unobvious side effects and tooling. Changes in the test invocation considerations and runtime assumptions. * `.contrib`: Stuff that affects the contributor experience. e.g. Running tests, building the docs, setting up the development environment. * `.misc`: Changes that are hard to assign to any of the above categories. * Make sure to use full sentences with correct case and punctuation, for example: ```rst Fixed issue with non-ascii contents in doctest text files -- by :user:`contributor-gh-handle`. ``` Use the past tense or the present tense a non-imperative mood, referring to what's changed compared to the last released version of this project. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Bumps [pytest-codspeed](https://github.com/CodSpeedHQ/pytest-codspeed) from 3.2.0 to 4.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/CodSpeedHQ/pytest-codspeed/releases">pytest-codspeed's releases</a>.</em></p> <blockquote> <h2>v4.0.0</h2> <h2>What's Changed</h2> <p>This release introduces profiling to the walltime instrument and includes several key improvements to the existing benchmark fixture API! 🎉</p> <blockquote> <p>[!WARNING]<br /> Since we're now using <a href="https://github.com/CodSpeedHQ/instrument-hooks/">CodSpeedHQ/instrument-hooks</a> to control the instrument state, the performance may slightly change in tiny microbenchmarks when upgrading.</p> </blockquote> <h3>🚀 Features</h3> <ul> <li>Support perf profiling in Python walltime instrument by <a href="https://github.com/not-matthias"><code>@not-matthias</code></a> in <a href="https://redirect.github.com/CodSpeedHQ/pytest-codspeed/pull/79">CodSpeedHQ/pytest-codspeed#79</a></li> <li>Support pytest-benchmark marker attributes by <a href="https://github.com/art049"><code>@art049</code></a> in <a href="https://redirect.github.com/CodSpeedHQ/pytest-codspeed/pull/80">CodSpeedHQ/pytest-codspeed#80</a></li> <li>Support the pedantic API by <a href="https://github.com/art049"><code>@art049</code></a> in <a href="https://redirect.github.com/CodSpeedHQ/pytest-codspeed/pull/81">CodSpeedHQ/pytest-codspeed#81</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/not-matthias"><code>@not-matthias</code></a> made their first contribution in <a href="https://redirect.github.com/CodSpeedHQ/pytest-codspeed/pull/79">CodSpeedHQ/pytest-codspeed#79</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.2.0...v4.0.0">https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.2.0...v4.0.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/CodSpeedHQ/pytest-codspeed/blob/master/CHANGELOG.md">pytest-codspeed's changelog</a>.</em></p> <blockquote> <h2>[4.0.0] - 2025-07-10</h2> <h3><!-- raw HTML omitted -->🚀 Features</h3> <ul> <li>Update readme by <a href="https://github.com/art049"><code>@art049</code></a></li> </ul> <h3><!-- raw HTML omitted -->⚙️ Internals</h3> <ul> <li>Remove pre-releases from git-cliff changelog by <a href="https://github.com/art049"><code>@art049</code></a></li> <li>Link to the documentation by <a href="https://github.com/art049"><code>@art049</code></a></li> <li>Improve reliability of perf trampoline compatibility checks by <a href="https://github.com/art049"><code>@art049</code></a></li> </ul> <h2>[4.0.0-beta1] - 2025-06-10</h2> <h3><!-- raw HTML omitted -->🐛 Bug Fixes</h3> <ul> <li>Reenable walltime instrument hooks by <a href="https://github.com/art049"><code>@art049</code></a> in <a href="https://redirect.github.com/CodSpeedHQ/pytest-codspeed/pull/82">#82</a></li> </ul> <h2>[4.0.0-beta] - 2025-06-06</h2> <h3><!-- raw HTML omitted -->🚀 Features</h3> <ul> <li>Support pytest-benchmark's pedantic API by <a href="https://github.com/art049"><code>@art049</code></a> in <a href="https://redirect.github.com/CodSpeedHQ/pytest-codspeed/pull/81">#81</a></li> <li>Make sure the benchmark fixture can only be called once per bench by <a href="https://github.com/art049"><code>@art049</code></a></li> <li>Support marker attributes to customize the walltime execution by <a href="https://github.com/art049"><code>@art049</code></a> in <a href="https://redirect.github.com/CodSpeedHQ/pytest-codspeed/pull/80">#80</a></li> <li>Use instrument hooks by <a href="https://github.com/not-matthias"><code>@not-matthias</code></a></li> <li>Add instrument-hooks native module by <a href="https://github.com/not-matthias"><code>@not-matthias</code></a></li> </ul> <h3><!-- raw HTML omitted -->🐛 Bug Fixes</h3> <ul> <li>Fix native library typing by <a href="https://github.com/art049"><code>@art049</code></a></li> </ul> <h3><!-- raw HTML omitted -->🧪 Testing</h3> <ul> <li>Add benches from the documentation's getting started by <a href="https://github.com/art049"><code>@art049</code></a> in <a href="https://redirect.github.com/CodSpeedHQ/pytest-codspeed/pull/71">#71</a></li> <li>Add simple python benches by <a href="https://github.com/art049"><code>@art049</code></a></li> </ul> <h3><!-- raw HTML omitted -->⚙️ Internals</h3> <ul> <li>Bump ruff by <a href="https://github.com/art049"><code>@art049</code></a></li> <li>Update release workflow to include submodules by <a href="https://github.com/art049"><code>@art049</code></a> in <a href="https://redirect.github.com/CodSpeedHQ/pytest-codspeed/pull/79">#79</a></li> <li>Remove valgrind wrapper by <a href="https://github.com/not-matthias"><code>@not-matthias</code></a></li> <li>Update apt before installing packages by <a href="https://github.com/art049"><code>@art049</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/CodSpeedHQ/pytest-codspeed/commit/f3b85bc79e9659936f549f06d468ebc7276bbd1a"><code>f3b85bc</code></a> Release v4.0.0 🚀</li> <li><a href="https://github.com/CodSpeedHQ/pytest-codspeed/commit/f97b02d43591aa4cff2bfe8408beaf92bad6d426"><code>f97b02d</code></a> chore: remove pre-releases from git-cliff changelog</li> <li><a href="https://github.com/CodSpeedHQ/pytest-codspeed/commit/a4e5901701a572f4c4745e807fdd45df75a2853e"><code>a4e5901</code></a> feat: update readme</li> <li><a href="https://github.com/CodSpeedHQ/pytest-codspeed/commit/8b1fb2f7d0e0e02041019e73ae966011497bdc46"><code>8b1fb2f</code></a> chore: link to the documentation</li> <li><a href="https://github.com/CodSpeedHQ/pytest-codspeed/commit/3181f6d4ab9ca1ad2b4524b49d90b759ea397292"><code>3181f6d</code></a> chore: improve reliability of perf trampoline compatibility checks</li> <li><a href="https://github.com/CodSpeedHQ/pytest-codspeed/commit/e49de52abe56e5757a84e42c624e799e63d6b82a"><code>e49de52</code></a> Release v4.0.0-beta1 🚀</li> <li><a href="https://github.com/CodSpeedHQ/pytest-codspeed/commit/0eba0c5ce136fb9e1545fb9dd49b88cf29f8508b"><code>0eba0c5</code></a> fix: reenable walltime instrument hooks</li> <li><a href="https://github.com/CodSpeedHQ/pytest-codspeed/commit/7b8c2c9ded80703bf1d1e61944e1e007c03ceda4"><code>7b8c2c9</code></a> Release v4.0.0-beta 🚀</li> <li><a href="https://github.com/CodSpeedHQ/pytest-codspeed/commit/96fe457ff3bba6c22194a5b7f94a683ef31bd727"><code>96fe457</code></a> feat: support pytest-benchmark's pedantic API</li> <li><a href="https://github.com/CodSpeedHQ/pytest-codspeed/commit/c4adb9b483bc3b5d5f9cd6c0d440d3e5b819002b"><code>c4adb9b</code></a> feat: make sure the benchmark fixture can only be called once per bench</li> <li>Additional commits viewable in <a href="https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.2.0...v4.0.0">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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.2)
Can you help keep this open source service alive? 💖 Please sponsor : )