forked from aio-libs/aiohttp
-
Notifications
You must be signed in to change notification settings - Fork 0
[pull] master from aio-libs:master #397
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
Bumps [click](https://github.com/pallets/click) from 8.3.0 to 8.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pallets/click/releases">click's releases</a>.</em></p> <blockquote> <h2>8.3.1</h2> <p>This is the Click 8.3.1 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.</p> <p>PyPI: <a href="https://pypi.org/project/click/8.3.1/">https://pypi.org/project/click/8.3.1/</a> Changes: <a href="https://click.palletsprojects.com/page/changes/#version-8-3-1">https://click.palletsprojects.com/page/changes/#version-8-3-1</a> Milestone: <a href="https://github.com/pallets/click/milestone/28">https://github.com/pallets/click/milestone/28</a></p> <ul> <li>Don't discard pager arguments by correctly using <code>subprocess.Popen</code>. <a href="https://redirect.github.com/pallets/click/issues/3039">#3039</a> <a href="https://redirect.github.com/pallets/click/issues/3055">#3055</a></li> <li>Replace <code>Sentinel.UNSET</code> default values by <code>None</code> as they're passed through the <code>Context.invoke()</code> method. <a href="https://redirect.github.com/pallets/click/issues/3066">#3066</a> <a href="https://redirect.github.com/pallets/click/issues/3065">#3065</a> <a href="https://redirect.github.com/pallets/click/issues/3068">#3068</a></li> <li>Fix conversion of <code>Sentinel.UNSET</code> happening too early, which caused incorrect behavior for multiple parameters using the same name. <a href="https://redirect.github.com/pallets/click/issues/3071">#3071</a> <a href="https://redirect.github.com/pallets/click/issues/3079">#3079</a></li> <li>Fix rendering when <code>prompt</code> and <code>confirm</code> parameter <code>prompt_suffix</code> is empty. <a href="https://redirect.github.com/pallets/click/issues/3019">#3019</a> <a href="https://redirect.github.com/pallets/click/issues/3021">#3021</a></li> <li>When <code>Sentinel.UNSET</code> is found during parsing, it will skip calls to <code>type_cast_value</code>. <a href="https://redirect.github.com/pallets/click/issues/3069">#3069</a> <a href="https://redirect.github.com/pallets/click/issues/3090">#3090</a></li> <li>Hide <code>Sentinel.UNSET</code> values as <code>None</code> when looking up for other parameters through the context inside parameter callbacks. <a href="https://redirect.github.com/pallets/click/issues/3136">#3136</a> <a href="https://redirect.github.com/pallets/click/issues/3137">#3137</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pallets/click/blob/main/CHANGES.rst">click's changelog</a>.</em></p> <blockquote> <h2>Version 8.3.1</h2> <p>Released 2025-11-15</p> <ul> <li>Don't discard pager arguments by correctly using <code>subprocess.Popen</code>. :issue:<code>3039</code> :pr:<code>3055</code></li> <li>Replace <code>Sentinel.UNSET</code> default values by <code>None</code> as they're passed through the <code>Context.invoke()</code> method. :issue:<code>3066</code> :issue:<code>3065</code> :pr:<code>3068</code></li> <li>Fix conversion of <code>Sentinel.UNSET</code> happening too early, which caused incorrect behavior for multiple parameters using the same name. :issue:<code>3071</code> :pr:<code>3079</code></li> <li>Hide <code>Sentinel.UNSET</code> values as <code>None</code> when looking up for other parameters through the context inside parameter callbacks. :issue:<code>3136</code> :pr:<code>3137</code></li> <li>Fix rendering when <code>prompt</code> and <code>confirm</code> parameter <code>prompt_suffix</code> is empty. :issue:<code>3019</code> :pr:<code>3021</code></li> <li>When <code>Sentinel.UNSET</code> is found during parsing, it will skip calls to <code>type_cast_value</code>. :issue:<code>3069</code> :pr:<code>3090</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pallets/click/commit/1d038f270701498433cb432f54db89f95f07a845"><code>1d038f2</code></a> release version 8.3.1</li> <li><a href="https://github.com/pallets/click/commit/03f3889f505d0c9ca4f9d6810f9e4ba2799f2a66"><code>03f3889</code></a> Fix Ruff UP038 warning (<a href="https://redirect.github.com/pallets/click/issues/3141">#3141</a>)</li> <li><a href="https://github.com/pallets/click/commit/3867781222cb63693ca67df94352d29d8e6e2770"><code>3867781</code></a> Fix Ruff UP038 warning</li> <li><a href="https://github.com/pallets/click/commit/b91bb9548a5617b1197add95e084d569f57149c3"><code>b91bb95</code></a> Provide altered context to callbacks to hide <code>UNSET</code> values as <code>None</code> (<a href="https://redirect.github.com/pallets/click/issues/3137">#3137</a>)</li> <li><a href="https://github.com/pallets/click/commit/437e1e3295c7ec979fc1bf285bb402ca20d847e7"><code>437e1e3</code></a> Temporarily provide a fake context to the callback to hide <code>UNSET</code> values as ...</li> <li><a href="https://github.com/pallets/click/commit/ea70da487b05d6bb758d472a3a9ffab4a5b7fcd5"><code>ea70da4</code></a> Don't test using a file in docs/ (<a href="https://redirect.github.com/pallets/click/issues/3102">#3102</a>)</li> <li><a href="https://github.com/pallets/click/commit/e27b307462b725722f620c69dd1d5509c032d18a"><code>e27b307</code></a> Make <code>uv run --all-extras pyright --verifytypes click</code> pass (<a href="https://redirect.github.com/pallets/click/issues/3072">#3072</a>)</li> <li><a href="https://github.com/pallets/click/commit/a92c573f3195c9da3058eadf1735d38af186d22c"><code>a92c573</code></a> Fix test_edit to work with BSD sed (<a href="https://redirect.github.com/pallets/click/issues/3129">#3129</a>)</li> <li><a href="https://github.com/pallets/click/commit/bd131e1ab63da2281d6dd9b8205ad2eb5a085468"><code>bd131e1</code></a> Fix test_edit to work with BSD sed</li> <li><a href="https://github.com/pallets/click/commit/0b5c6b75f617e6ee2f9f6dcd071b8a4bf183d1ed"><code>0b5c6b7</code></a> Add Best practices section (<a href="https://redirect.github.com/pallets/click/issues/3127">#3127</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pallets/click/compare/8.3.0...8.3.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 [backports-zstd](https://github.com/rogdham/backports.zstd) from 1.0.0 to 1.1.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/Rogdham/backports.zstd/blob/master/CHANGELOG.md">backports-zstd's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/rogdham/backports.zstd/releases/tag/v1.1.0">1.1.0</a> - 2025-11-23</h2> <h3>:rocket: Added</h3> <ul> <li>Shorten import time by lazy loading the <code>register_shutil</code> function</li> </ul> <h3>:bug: Fixes</h3> <ul> <li>Fix assertion on Python 3.13 when build with <code>DEBUG</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Rogdham/backports.zstd/commit/b2f19470a3bdd47c925535e087442ad4fb514df3"><code>b2f1947</code></a> chore: prepare v1.1.0</li> <li><a href="https://github.com/Rogdham/backports.zstd/commit/6d16910ab389120de965418eb1f0a8dcb0df693f"><code>6d16910</code></a> feat: lazy load register_shutil</li> <li><a href="https://github.com/Rogdham/backports.zstd/commit/33780f92c11c296ab7745f215303034a82004f60"><code>33780f9</code></a> chore: remove NDEBUG local patch</li> <li><a href="https://github.com/Rogdham/backports.zstd/commit/361f25b32e6dd0e11ac255043dfb079ceb7095aa"><code>361f25b</code></a> chore: test with DEBUG</li> <li><a href="https://github.com/Rogdham/backports.zstd/commit/1abb8e37de02c6d4398f2b2a13f5c8469a169306"><code>1abb8e3</code></a> fix: assertions on 3.13</li> <li>See full diff in <a href="https://github.com/rogdham/backports.zstd/compare/v1.0.0...v1.1.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 [execnet](https://github.com/pytest-dev/execnet) from 2.1.1 to 2.1.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/execnet/blob/master/CHANGELOG.rst">execnet's changelog</a>.</em></p> <blockquote> <h2>2.1.2 (2025-11-11)</h2> <ul> <li><code>[#376](pytest-dev/execnet#376) <https://github.com/pytest-dev/execnet/issues/376></code>__ fix artifact building - pin minimal version of hatch.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/execnet/commit/9313ece783ba2bd565eb1a2a8a71be441af56199"><code>9313ece</code></a> Release 2.1.2</li> <li><a href="https://github.com/pytest-dev/execnet/commit/45a4d872775ae77366b62d6c93adb5c3ec51c966"><code>45a4d87</code></a> Test on pypy-3.11 instead of pypy-3.8 (<a href="https://redirect.github.com/pytest-dev/execnet/issues/375">#375</a>)</li> <li><a href="https://github.com/pytest-dev/execnet/commit/03462f5ad357cb28de83f28af6977e620b81c607"><code>03462f5</code></a> Update hatchling version requirement in pyproject.toml (<a href="https://redirect.github.com/pytest-dev/execnet/issues/377">#377</a>)</li> <li><a href="https://github.com/pytest-dev/execnet/commit/f05618084b3e524babe6d684e97443a16c4ecaf2"><code>f056180</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/execnet/issues/378">#378</a>)</li> <li><a href="https://github.com/pytest-dev/execnet/commit/a9d75e74b6913b9f4940de4d90e796b464ca88f9"><code>a9d75e7</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/execnet/issues/373">#373</a>)</li> <li><a href="https://github.com/pytest-dev/execnet/commit/9bfff13008d02cb5e0943ac57811b07ed7d81ffd"><code>9bfff13</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/execnet/issues/372">#372</a>)</li> <li><a href="https://github.com/pytest-dev/execnet/commit/caf108da5946aa4355eb853cb0f1fb5d6a359013"><code>caf108d</code></a> build(deps): bump actions/download-artifact from 5 to 6 (<a href="https://redirect.github.com/pytest-dev/execnet/issues/371">#371</a>)</li> <li><a href="https://github.com/pytest-dev/execnet/commit/d3074cd90921317e8d9510bf2fb41e48ed7b62fd"><code>d3074cd</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/execnet/issues/370">#370</a>)</li> <li><a href="https://github.com/pytest-dev/execnet/commit/35aa8073a2ae51a38bb787784fd79d0bfba517cb"><code>35aa807</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/execnet/issues/369">#369</a>)</li> <li><a href="https://github.com/pytest-dev/execnet/commit/d823f13ba81a1d14051dda54eb0931c73b7afdf7"><code>d823f13</code></a> build(deps): bump hynek/build-and-inspect-python-package (<a href="https://redirect.github.com/pytest-dev/execnet/issues/368">#368</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pytest-dev/execnet/compare/v2.1.1...v2.1.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>
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.4)
Can you help keep this open source service alive? 💖 Please sponsor : )