Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump the dependencies group in /.config with 9 updates (#4346)
Bumps the dependencies group in /.config with 9 updates: | Package | From | To | | --- | --- | --- | | [mypy](https://github.com/python/mypy) | `1.13.0` | `1.14.0` | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.11` | `0.5.13` | | [ruff](https://github.com/astral-sh/ruff) | `0.8.3` | `0.8.4` | | [types-pyyaml](https://github.com/python/typeshed) | `6.0.12.20240917` | `6.0.12.20241221` | | [astroid](https://github.com/pylint-dev/astroid) | `3.3.6` | `3.3.7` | | [attrs](https://github.com/sponsors/hynek) | `24.2.0` | `24.3.0` | | [click](https://github.com/pallets/click) | `8.1.7` | `8.1.8` | | [jinja2](https://github.com/pallets/jinja) | `3.1.4` | `3.1.5` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.48` | `9.5.49` | Updates `mypy` from 1.13.0 to 1.14.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python/mypy/blob/master/CHANGELOG.md">mypy's changelog</a>.</em></p> <blockquote> <h1>Mypy Release Notes</h1> <h2>Next release</h2> <p>...</p> <h2>Mypy 1.14</h2> <p>We’ve just uploaded mypy 1.14 to the Python Package Index (<a href="https://pypi.org/project/mypy/">PyPI</a>). Mypy is a static type checker for Python. This release includes new features and bug fixes. You can install it as follows:</p> <pre><code>python3 -m pip install -U mypy </code></pre> <p>You can read the full documentation for this release on <a href="http://mypy.readthedocs.io">Read the Docs</a>.</p> <h3>Change to Enum Membership Semantics</h3> <p>As per the updated <a href="https://typing.readthedocs.io/en/latest/spec/enums.html#defining-members">typing specification for enums</a>, enum members must be left unannotated.</p> <pre lang="python"><code>class Pet(Enum): CAT = 1 # Member attribute DOG = 2 # Member attribute <pre><code># New error: Enum members must be left unannotated WOLF: int = 3 species: str # Considered a non-member attribute </code></pre> <p></code></pre></p> <p>In particular, the specification change can result in issues in type stubs (<code>.pyi</code> files), since historically it was common to leave the value absent:</p> <pre lang="python"><code># In a type stub (.pyi file) <p>class Pet(Enum): # Change in semantics: previously considered members, # now non-member attributes CAT: int DOG: int</p> <pre><code># Mypy will now issue a warning if it detects this # situation in type stubs: # &gt; Detected enum &quot;Pet&quot; in a type stub with zero # &gt; members. There is a chance this is due to a recent # &gt; change in the semantics of enum membership. If so, # &gt; use `member = value` to mark an enum member, </code></pre> <p></tr></table> </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python/mypy/commit/6f37859612cd8670724c2ee2df21aa691276a9dc"><code>6f37859</code></a> Remove +dev from version for release 1.14</li> <li><a href="https://github.com/python/mypy/commit/5a6a7548a9ae25c79690108b1dc1aaec559a18de"><code>5a6a754</code></a> Minor updates to 1.14 changelog (<a href="https://redirect.github.com/python/mypy/issues/18310">#18310</a>)</li> <li><a href="https://github.com/python/mypy/commit/9772d486ada2c198811c34f47be7d0bad44cdbf5"><code>9772d48</code></a> Update changelog for release 1.14 (<a href="https://redirect.github.com/python/mypy/issues/18301">#18301</a>)</li> <li><a href="https://github.com/python/mypy/commit/92473c8bef8a2969e2a649c6c84b3165ba342b0c"><code>92473c8</code></a> Warn about --follow-untyped-imports (<a href="https://redirect.github.com/python/mypy/issues/18249">#18249</a>)</li> <li><a href="https://github.com/python/mypy/commit/e6ce8be8a61a4a8c17523a828e800a76331ee4b5"><code>e6ce8be</code></a> PEP 702 (<a href="https://github.com/deprecated"><code>@deprecated</code></a>): descriptors (<a href="https://redirect.github.com/python/mypy/issues/18090">#18090</a>)</li> <li><a href="https://github.com/python/mypy/commit/5082a221f33e6f2ceb32830f733890a1b21061db"><code>5082a22</code></a> [mypyc] Document optimized bytes ops and additional str ops (<a href="https://redirect.github.com/python/mypy/issues/18242">#18242</a>)</li> <li><a href="https://github.com/python/mypy/commit/ee19ea7d26ccdda3e0e79ef36aeb98cddb527903"><code>ee19ea7</code></a> [mypyc] Add primitives and specialization for ord() (<a href="https://redirect.github.com/python/mypy/issues/18240">#18240</a>)</li> <li><a href="https://github.com/python/mypy/commit/cc45bec732d6ccf4f846c5fd40617fed9cc04e8d"><code>cc45bec</code></a> [mypyc] Make exception type check in assertRaises test helper precise (<a href="https://redirect.github.com/python/mypy/issues/18241">#18241</a>)</li> <li><a href="https://github.com/python/mypy/commit/f51090d053874aed0f3bfdb354e42f641296eaac"><code>f51090d</code></a> Make "deprecated" Note a standard Error, disabled by default (<a href="https://redirect.github.com/python/mypy/issues/18192">#18192</a>)</li> <li><a href="https://github.com/python/mypy/commit/242873a2e8a1d98762b30fcf7b28a699a230279d"><code>242873a</code></a> Implement flag to allow typechecking of untyped modules (<a href="https://redirect.github.com/python/mypy/issues/17712">#17712</a>)</li> <li>Additional commits viewable in <a href="https://github.com/python/mypy/compare/v1.13.0...v1.14.0">compare view</a></li> </ul> </details> <br /> Updates `pydoclint` from 0.5.11 to 0.5.13 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jsh9/pydoclint/releases">pydoclint's releases</a>.</em></p> <blockquote> <h2>0.5.13</h2> <h2>What's Changed</h2> <ul> <li>Fix a bug with subscript assign by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/191">jsh9/pydoclint#191</a></li> <li>Fix a bug with reading non-UTF-8 encoded files by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/192">jsh9/pydoclint#192</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.12...0.5.13">https://github.com/jsh9/pydoclint/compare/0.5.12...0.5.13</a></p> <h2>0.5.12</h2> <h2>What's Changed</h2> <ul> <li>Drop Python 3.8 support by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/186">jsh9/pydoclint#186</a></li> <li>Add mypy static type checking to pydoclint by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/185">jsh9/pydoclint#185</a></li> <li>Use "modern" type annotations by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/187">jsh9/pydoclint#187</a></li> <li>Add new config option to treat ClassVar attrs as class attrs by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/188">jsh9/pydoclint#188</a></li> <li>Ensure support for py312 and 313 by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/189">jsh9/pydoclint#189</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.11...0.5.12">https://github.com/jsh9/pydoclint/compare/0.5.11...0.5.12</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md">pydoclint's changelog</a>.</em></p> <blockquote> <h2>[0.5.13] - 2024-12-20</h2> <ul> <li> <p>Fixed</p> <ul> <li>Fixed a bug where assigning a dict value (such as <code>abc['something'] = 123</code>) would result in EdgeCaseError</li> <li>Fixed a bug where non-UTF-8 encoded files would crash <em>pydoclint</em></li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.12...0.5.13">https://github.com/jsh9/pydoclint/compare/0.5.12...0.5.13</a></li> </ul> </li> </ul> <h2>[0.5.12] - 2024-12-15</h2> <ul> <li> <p>Changed</p> <ul> <li>Dropped support for Python 3.8</li> <li>Use "modern" type annotation, such as <code>list</code> and <code>str | None</code></li> </ul> </li> <li> <p>Added</p> <ul> <li>Added static type checking using <code>mypy</code></li> <li>A new config option, <code>--only-attrs-with-ClassVar-are-treated-as-class-attrs</code></li> <li>Ensured support for Python 3.12 and 3.13</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.11...0.5.12">https://github.com/jsh9/pydoclint/compare/0.5.11...0.5.12</a></li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/dfd9494b25cede6b46bdfa13f2124f54377e0bdb"><code>dfd9494</code></a> Fix a bug with reading non-UTF-8 encoded files (<a href="https://redirect.github.com/jsh9/pydoclint/issues/192">#192</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/3e5b3045a1914fdf44a07f2f304b89e2af46e41c"><code>3e5b304</code></a> Fix a bug with subscript assign (<a href="https://redirect.github.com/jsh9/pydoclint/issues/191">#191</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/ca6f344b0c6a227216cc00fd47d9d82bf6607ba3"><code>ca6f344</code></a> Ensure support for py312 and 313 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/189">#189</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/da14ebd4bf2d635011a4bdb516f73c9b0a92cf71"><code>da14ebd</code></a> Add new config option to treat ClassVar attrs as class attrs (<a href="https://redirect.github.com/jsh9/pydoclint/issues/188">#188</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/dc5a53b40543e0e0b40985b0c92f454758af6609"><code>dc5a53b</code></a> Use "modern" type annotations (<a href="https://redirect.github.com/jsh9/pydoclint/issues/187">#187</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/903aa91811548fb74d473544ecb4c139b1e6801c"><code>903aa91</code></a> Add mypy static type checking to pydoclint (<a href="https://redirect.github.com/jsh9/pydoclint/issues/185">#185</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/c9d017f4e52afb199c6c6c4254d616f606c1d11d"><code>c9d017f</code></a> Drop Python 3.8 support (<a href="https://redirect.github.com/jsh9/pydoclint/issues/186">#186</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.11...0.5.13">compare view</a></li> </ul> </details> <br /> Updates `ruff` from 0.8.3 to 0.8.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ruff/releases">ruff's releases</a>.</em></p> <blockquote> <h2>0.8.4</h2> <h2>Release Notes</h2> <h3>Preview features</h3> <ul> <li>[<code>airflow</code>] Extend <code>AIR302</code> with additional functions and classes (<a href="https://redirect.github.com/astral-sh/ruff/pull/15015">#15015</a>)</li> <li>[<code>airflow</code>] Implement <code>moved-to-provider-in-3</code> for modules that has been moved to Airflow providers (<code>AIR303</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/14764">#14764</a>)</li> <li>[<code>flake8-use-pathlib</code>] Extend check for invalid path suffix to include the case <code>"."</code> (<code>PTH210</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/14902">#14902</a>)</li> <li>[<code>perflint</code>] Fix panic in <code>PERF401</code> when list variable is after the <code>for</code> loop (<a href="https://redirect.github.com/astral-sh/ruff/pull/14971">#14971</a>)</li> <li>[<code>perflint</code>] Simplify finding the loop target in <code>PERF401</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/15025">#15025</a>)</li> <li>[<code>pylint</code>] Preserve original value format (<code>PLR6104</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/14978">#14978</a>)</li> <li>[<code>ruff</code>] Avoid false positives for <code>RUF027</code> for typing context bindings (<a href="https://redirect.github.com/astral-sh/ruff/pull/15037">#15037</a>)</li> <li>[<code>ruff</code>] Check for ambiguous pattern passed to <code>pytest.raises()</code> (<code>RUF043</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/14966">#14966</a>)</li> </ul> <h3>Rule changes</h3> <ul> <li>[<code>flake8-bandit</code>] Check <code>S105</code> for annotated assignment (<a href="https://redirect.github.com/astral-sh/ruff/pull/15059">#15059</a>)</li> <li>[<code>flake8-pyi</code>] More autofixes for <code>redundant-none-literal</code> (<code>PYI061</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/14872">#14872</a>)</li> <li>[<code>pydocstyle</code>] Skip leading whitespace for <code>D403</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/14963">#14963</a>)</li> <li>[<code>ruff</code>] Skip <code>SQLModel</code> base classes for <code>mutable-class-default</code> (<code>RUF012</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/14949">#14949</a>)</li> </ul> <h3>Bug</h3> <ul> <li>[<code>perflint</code>] Parenthesize walrus expressions in autofix for <code>manual-list-comprehension</code> (<code>PERF401</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/15050">#15050</a>)</li> </ul> <h3>Server</h3> <ul> <li>Check diagnostic refresh support from client capability which enables dynamic configuration for various editors (<a href="https://redirect.github.com/astral-sh/ruff/pull/15014">#15014</a>)</li> </ul> <h2>Contributors</h2> <ul> <li><a href="https://github.com/AlexWaygood"><code>@AlexWaygood</code></a></li> <li><a href="https://github.com/Daverball"><code>@Daverball</code></a></li> <li><a href="https://github.com/DimitriPapadopoulos"><code>@DimitriPapadopoulos</code></a></li> <li><a href="https://github.com/InSyncWithFoo"><code>@InSyncWithFoo</code></a></li> <li><a href="https://github.com/Lee-W"><code>@Lee-W</code></a></li> <li><a href="https://github.com/MichaReiser"><code>@MichaReiser</code></a></li> <li><a href="https://github.com/TheBits"><code>@TheBits</code></a></li> <li><a href="https://github.com/cake-monotone"><code>@cake-monotone</code></a></li> <li><a href="https://github.com/carljm"><code>@carljm</code></a></li> <li><a href="https://github.com/dcreager"><code>@dcreager</code></a></li> <li><a href="https://github.com/dhruvmanila"><code>@dhruvmanila</code></a></li> <li><a href="https://github.com/dylwil3"><code>@dylwil3</code></a></li> <li><a href="https://github.com/github-actions"><code>@github-actions</code></a></li> <li><a href="https://github.com/kiran-4444"><code>@kiran-4444</code></a></li> <li><a href="https://github.com/krishnan-chandra"><code>@krishnan-chandra</code></a></li> <li><a href="https://github.com/rchen152"><code>@rchen152</code></a></li> <li><a href="https://github.com/renovate"><code>@renovate</code></a></li> <li><a href="https://github.com/sharkdp"><code>@sharkdp</code></a></li> <li><a href="https://github.com/tarasmatsyk"><code>@tarasmatsyk</code></a></li> <li><a href="https://github.com/w0nder1ng"><code>@w0nder1ng</code></a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md">ruff's changelog</a>.</em></p> <blockquote> <h2>0.8.4</h2> <h3>Preview features</h3> <ul> <li>[<code>airflow</code>] Extend <code>AIR302</code> with additional functions and classes (<a href="https://redirect.github.com/astral-sh/ruff/pull/15015">#15015</a>)</li> <li>[<code>airflow</code>] Implement <code>moved-to-provider-in-3</code> for modules that has been moved to Airflow providers (<code>AIR303</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/14764">#14764</a>)</li> <li>[<code>flake8-use-pathlib</code>] Extend check for invalid path suffix to include the case <code>"."</code> (<code>PTH210</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/14902">#14902</a>)</li> <li>[<code>perflint</code>] Fix panic in <code>PERF401</code> when list variable is after the <code>for</code> loop (<a href="https://redirect.github.com/astral-sh/ruff/pull/14971">#14971</a>)</li> <li>[<code>perflint</code>] Simplify finding the loop target in <code>PERF401</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/15025">#15025</a>)</li> <li>[<code>pylint</code>] Preserve original value format (<code>PLR6104</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/14978">#14978</a>)</li> <li>[<code>ruff</code>] Avoid false positives for <code>RUF027</code> for typing context bindings (<a href="https://redirect.github.com/astral-sh/ruff/pull/15037">#15037</a>)</li> <li>[<code>ruff</code>] Check for ambiguous pattern passed to <code>pytest.raises()</code> (<code>RUF043</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/14966">#14966</a>)</li> </ul> <h3>Rule changes</h3> <ul> <li>[<code>flake8-bandit</code>] Check <code>S105</code> for annotated assignment (<a href="https://redirect.github.com/astral-sh/ruff/pull/15059">#15059</a>)</li> <li>[<code>flake8-pyi</code>] More autofixes for <code>redundant-none-literal</code> (<code>PYI061</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/14872">#14872</a>)</li> <li>[<code>pydocstyle</code>] Skip leading whitespace for <code>D403</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/14963">#14963</a>)</li> <li>[<code>ruff</code>] Skip <code>SQLModel</code> base classes for <code>mutable-class-default</code> (<code>RUF012</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/14949">#14949</a>)</li> </ul> <h3>Bug</h3> <ul> <li>[<code>perflint</code>] Parenthesize walrus expressions in autofix for <code>manual-list-comprehension</code> (<code>PERF401</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/15050">#15050</a>)</li> </ul> <h3>Server</h3> <ul> <li>Check diagnostic refresh support from client capability which enables dynamic configuration for various editors (<a href="https://redirect.github.com/astral-sh/ruff/pull/15014">#15014</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/astral-sh/ruff/commit/3bb0dac23569fb607e781ca8e401c6eba71b14dd"><code>3bb0dac</code></a> Bump version to 0.8.4 (<a href="https://redirect.github.com/astral-sh/ruff/issues/15064">#15064</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/40cba5dc8aa79fef488bcae366abf7efefb04faa"><code>40cba5d</code></a> [red-knot] Cleanup various <code>todo_type!()</code> messages (<a href="https://redirect.github.com/astral-sh/ruff/issues/15063">#15063</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/596d80cc8e9b4e2380712597a881ec2ad3609b96"><code>596d80c</code></a> [<code>perflint</code>] Parenthesize walrus expressions in autofix for `manual-list-comp...</li> <li><a href="https://github.com/astral-sh/ruff/commit/d8b9a366c820750d52650ac42668771ef9fcebe1"><code>d8b9a36</code></a> Disable actionlint hook by default when running pre-commit locally (<a href="https://redirect.github.com/astral-sh/ruff/issues/15061">#15061</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/85e71ba91ae5adc8fb3b764681c21c8959f71346"><code>85e71ba</code></a> [<code>flake8-bandit</code>] Check <code>S105</code> for annotated assignment (<a href="https://redirect.github.com/astral-sh/ruff/issues/15059">#15059</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/2802cbde29ea85ae6a01870aac34b5b788346fc0"><code>2802cbd</code></a> Don't special-case class instances in unary expression inference (<a href="https://redirect.github.com/astral-sh/ruff/issues/15045">#15045</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/ed2bce6ebb56c84c5ecd22cbe8aac4a887c403ca"><code>ed2bce6</code></a> [red-knot] Report invalid exceptions (<a href="https://redirect.github.com/astral-sh/ruff/issues/15042">#15042</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/f0012df68653835752c32d47ebba06320c7e48cf"><code>f0012df</code></a> Fix typos in <code>RUF043.py</code> (<a href="https://redirect.github.com/astral-sh/ruff/issues/15044">#15044</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/0fc4e8f795f2cc4ad0ea2b3c3d592ed50da29caf"><code>0fc4e8f</code></a> Introduce <code>InferContext</code> (<a href="https://redirect.github.com/astral-sh/ruff/issues/14956">#14956</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/ac81c72bf3e5c8c8196adb82133cd3b53793fb48"><code>ac81c72</code></a> [<code>ruff</code>] Ambiguous pattern passed to <code>pytest.raises()</code> (<code>RUF043</code>) (<a href="https://redirect.github.com/astral-sh/ruff/issues/14966">#14966</a>)</li> <li>Additional commits viewable in <a href="https://github.com/astral-sh/ruff/compare/0.8.3...0.8.4">compare view</a></li> </ul> </details> <br /> Updates `types-pyyaml` from 6.0.12.20240917 to 6.0.12.20241221 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/python/typeshed/commits">compare view</a></li> </ul> </details> <br /> Updates `astroid` from 3.3.6 to 3.3.7 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pylint-dev/astroid/blob/main/ChangeLog">astroid's changelog</a>.</em></p> <blockquote> <h1>What's New in astroid 3.3.7?</h1> <p>Release date: 2024-12-20</p> <ul> <li> <p>Fix inability to import <code>collections.abc</code> in python 3.13.1. The reported fix in astroid 3.3.6 did not actually fix this issue.</p> <p>Closes <a href="https://redirect.github.com/pylint-dev/pylint/issues/10112">pylint-dev/pylint#10112</a></p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/astroid/commit/50916d64150da365d4234b48afec73008f2a81f1"><code>50916d6</code></a> Bump astroid to 3.3.7, update changelog (<a href="https://redirect.github.com/pylint-dev/astroid/issues/2659">#2659</a>)</li> <li><a href="https://github.com/pylint-dev/astroid/commit/c47a798b00ec5d53543ff0521d59bb43c684937d"><code>c47a798</code></a> Fix <code>collections.abc</code> imports on Python 3.13.0 and 3.13.1 (<a href="https://redirect.github.com/pylint-dev/astroid/issues/2657">#2657</a>) (<a href="https://redirect.github.com/pylint-dev/astroid/issues/2658">#2658</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/astroid/compare/v3.3.6...v3.3.7">compare view</a></li> </ul> </details> <br /> Updates `attrs` from 24.2.0 to 24.3.0 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/sponsors/hynek/commits">compare view</a></li> </ul> </details> <br /> Updates `click` from 8.1.7 to 8.1.8 <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.1.8</h2> <p>This is the Click 8.1.8 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.1.8/">https://pypi.org/project/click/8.1.8/</a> Changes: <a href="https://click.palletsprojects.com/en/stable/changes/#version-8-1-8">https://click.palletsprojects.com/en/stable/changes/#version-8-1-8</a> Milestone <a href="https://github.com/pallets/click/milestones/23?closed=1">https://github.com/pallets/click/milestones/23?closed=1</a></p> <ul> <li>Fix an issue with type hints for <code>click.open_file()</code>. <a href="https://redirect.github.com/pallets/click/issues/2717">#2717</a></li> <li>Fix issue where error message for invalid <code>click.Path</code> displays on multiple lines. <a href="https://redirect.github.com/pallets/click/issues/2697">#2697</a></li> <li>Fixed issue that prevented a default value of <code>""</code> from being displayed in the help for an option. <a href="https://redirect.github.com/pallets/click/issues/2500">#2500</a></li> <li>The test runner handles stripping color consistently on Windows. <a href="https://redirect.github.com/pallets/click/issues/2705">#2705</a></li> <li>Show correct value for flag default when using <code>default_map</code>. <a href="https://redirect.github.com/pallets/click/issues/2632">#2632</a></li> <li>Fix <code>click.echo(color=...)</code> passing <code>color</code> to coloroma so it can be forced on Windows. <a href="https://redirect.github.com/pallets/click/issues/2606">#2606</a>.</li> <li>More robust bash version check, fixing problem on Windows with git-bash. <a href="https://redirect.github.com/pallets/click/issues/2638">#2638</a></li> <li>Cache the help option generated by the <code>help_option_names</code> setting to respect its eagerness. <a href="https://redirect.github.com/pallets/click/issues/2811">#2811</a></li> <li>Replace uses of <code>os.system</code> with <code>subprocess.Popen</code>. <a href="https://redirect.github.com/pallets/click/issues/1476">#1476</a></li> <li>Exceptions generated during a command will use the context's <code>color</code> setting when being displayed. <a href="https://redirect.github.com/pallets/click/issues/2193">#2193</a></li> <li>Error message when defining option with invalid name is more descriptive. <a href="https://redirect.github.com/pallets/click/issues/2452">#2452</a></li> <li>Refactor code generating default <code>--help</code> option to deduplicate code. <a href="https://redirect.github.com/pallets/click/issues/2563">#2563</a></li> <li>Test <code>CLIRunner</code> resets patched <code>_compat.should_strip_ansi</code>. <a href="https://redirect.github.com/pallets/click/issues/2732">#2732</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.1.8</h2> <p>Unreleased</p> <ul> <li>Fix an issue with type hints for <code>click.open_file()</code>. :issue:<code>2717</code></li> <li>Fix issue where error message for invalid <code>click.Path</code> displays on multiple lines. :issue:<code>2697</code></li> <li>Fixed issue that prevented a default value of <code>""</code> from being displayed in the help for an option. :issue:<code>2500</code></li> <li>The test runner handles stripping color consistently on Windows. :issue:<code>2705</code></li> <li>Show correct value for flag default when using <code>default_map</code>. :issue:<code>2632</code></li> <li>Fix <code>click.echo(color=...)</code> passing <code>color</code> to coloroma so it can be forced on Windows. :issue:<code>2606</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pallets/click/commit/934813e4d421071a1b3db3973c02fe2721359a6e"><code>934813e</code></a> release version 8.1.8</li> <li><a href="https://github.com/pallets/click/commit/c23223b13c847ae472faa258907ffb5c27b504fa"><code>c23223b</code></a> Add links to third-party projects enhancing Click (<a href="https://redirect.github.com/pallets/click/issues/2815">#2815</a>)</li> <li><a href="https://github.com/pallets/click/commit/822d4fd0bcfcd0ab22c9eec550ee2dae2a3d260c"><code>822d4fd</code></a> Add links to third-party projects</li> <li><a href="https://github.com/pallets/click/commit/8e7bed0466fd49acf8bcf1399f54d7dc783fd6a1"><code>8e7bed0</code></a> Break up arguments section (<a href="https://redirect.github.com/pallets/click/issues/2586">#2586</a>)</li> <li><a href="https://github.com/pallets/click/commit/3241541fc89fe9c79908a6099fa2235dd20016e8"><code>3241541</code></a> Remove some typing hints.</li> <li><a href="https://github.com/pallets/click/commit/bed037717d5f39cf875d83df4025e62beebc77f4"><code>bed0377</code></a> remove test pypi</li> <li><a href="https://github.com/pallets/click/commit/653459007a15e4d75187acc5a1e1a08cbd787814"><code>6534590</code></a> update dev dependencies</li> <li><a href="https://github.com/pallets/click/commit/b1e392e69b2a32566550aa41c38875e9cafe2456"><code>b1e392e</code></a> fix typos</li> <li><a href="https://github.com/pallets/click/commit/fdc6b020465751d26f9e74a707f2c058b0dd251f"><code>fdc6b02</code></a> Fix missing reset in isolation function (<a href="https://redirect.github.com/pallets/click/issues/2733">#2733</a>)</li> <li><a href="https://github.com/pallets/click/commit/ffd43e9dc3b90bd698088fc7ebac9dbc6a4444b2"><code>ffd43e9</code></a> Fixed missing reset on _compat.should_strip_ansi.</li> <li>Additional commits viewable in <a href="https://github.com/pallets/click/compare/8.1.7...8.1.8">compare view</a></li> </ul> </details> <br /> Updates `jinja2` from 3.1.4 to 3.1.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pallets/jinja/releases">jinja2's releases</a>.</em></p> <blockquote> <h2>3.1.5</h2> <p>This is the Jinja 3.1.5 security fix release, which fixes security issues and 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/Jinja2/3.1.5/">https://pypi.org/project/Jinja2/3.1.5/</a> Changes: <a href="https://jinja.palletsprojects.com/changes/#version-3-1-5">https://jinja.palletsprojects.com/changes/#version-3-1-5</a> Milestone: <a href="https://github.com/pallets/jinja/milestone/16?closed=1">https://github.com/pallets/jinja/milestone/16?closed=1</a></p> <ul> <li>The sandboxed environment handles indirect calls to <code>str.format</code>, such as by passing a stored reference to a filter that calls its argument. <a href="https://github.com/pallets/jinja/security/advisories/GHSA-q2x7-8rv6-6q7h">GHSA-q2x7-8rv6-6q7h</a></li> <li>Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. <a href="https://redirect.github.com/pallets/jinja/issues/1792">#1792</a>, <a href="https://github.com/pallets/jinja/security/advisories/GHSA-gmj6-6f8f-6699">GHSA-gmj6-6f8f-6699</a></li> <li>Sandbox does not allow <code>clear</code> and <code>pop</code> on known mutable sequence types. <a href="https://redirect.github.com/pallets/jinja/issues/2032">#2032</a></li> <li>Calling sync <code>render</code> for an async template uses <code>asyncio.run</code>. <a href="https://redirect.github.com/pallets/jinja/issues/1952">#1952</a></li> <li>Avoid unclosed <code>auto_aiter</code> warnings. <a href="https://redirect.github.com/pallets/jinja/issues/1960">#1960</a></li> <li>Return an <code>aclose</code>-able <code>AsyncGenerator</code> from <code>Template.generate_async</code>. <a href="https://redirect.github.com/pallets/jinja/issues/1960">#1960</a></li> <li>Avoid leaving <code>root_render_func()</code> unclosed in <code>Template.generate_async</code>. <a href="https://redirect.github.com/pallets/jinja/issues/1960">#1960</a></li> <li>Avoid leaving async generators unclosed in blocks, includes and extends. <a href="https://redirect.github.com/pallets/jinja/issues/1960">#1960</a></li> <li>The runtime uses the correct <code>concat</code> function for the current environment when calling block references. <a href="https://redirect.github.com/pallets/jinja/issues/1701">#1701</a></li> <li>Make <code>|unique</code> async-aware, allowing it to be used after another async-aware filter. <a href="https://redirect.github.com/pallets/jinja/issues/1781">#1781</a></li> <li><code>|int</code> filter handles <code>OverflowError</code> from scientific notation. <a href="https://redirect.github.com/pallets/jinja/issues/1921">#1921</a></li> <li>Make compiling deterministic for tuple unpacking in a <code>{% set ... %}</code> call. <a href="https://redirect.github.com/pallets/jinja/issues/2021">#2021</a></li> <li>Fix dunder protocol (<code>copy</code>/<code>pickle</code>/etc) interaction with <code>Undefined</code> objects. <a href="https://redirect.github.com/pallets/jinja/issues/2025">#2025</a></li> <li>Fix <code>copy</code>/<code>pickle</code> support for the internal <code>missing</code> object. <a href="https://redirect.github.com/pallets/jinja/issues/2027">#2027</a></li> <li><code>Environment.overlay(enable_async)</code> is applied correctly. <a href="https://redirect.github.com/pallets/jinja/issues/2061">#2061</a></li> <li>The error message from <code>FileSystemLoader</code> includes the paths that were searched. <a href="https://redirect.github.com/pallets/jinja/issues/1661">#1661</a></li> <li><code>PackageLoader</code> shows a clearer error message when the package does not contain the templates directory. <a href="https://redirect.github.com/pallets/jinja/issues/1705">#1705</a></li> <li>Improve annotations for methods returning copies. <a href="https://redirect.github.com/pallets/jinja/issues/1880">#1880</a></li> <li><code>urlize</code> does not add <code>mailto:</code> to values like <code>@A@b</code>. <a href="https://redirect.github.com/pallets/jinja/issues/1870">#1870</a></li> <li>Tests decorated with <code>@pass_context</code> can be used with the <code>|select</code> filter. <a href="https://redirect.github.com/pallets/jinja/issues/1624">#1624</a></li> <li>Using <code>set</code> for multiple assignment (<code>a, b = 1, 2</code>) does not fail when the target is a namespace attribute. <a href="https://redirect.github.com/pallets/jinja/issues/1413">#1413</a></li> <li>Using <code>set</code> in all branches of <code>{% if %}{% elif %}{% else %}</code> blocks does not cause the variable to be considered initially undefined. <a href="https://redirect.github.com/pallets/jinja/issues/1253">#1253</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pallets/jinja/blob/main/CHANGES.rst">jinja2's changelog</a>.</em></p> <blockquote> <h2>Version 3.1.5</h2> <p>Released 2024-12-21</p> <ul> <li>The sandboxed environment handles indirect calls to <code>str.format</code>, such as by passing a stored reference to a filter that calls its argument. :ghsa:<code>q2x7-8rv6-6q7h</code></li> <li>Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. :issue:<code>1792</code>, :ghsa:<code>gmj6-6f8f-6699</code></li> <li>Sandbox does not allow <code>clear</code> and <code>pop</code> on known mutable sequence types. :issue:<code>2032</code></li> <li>Calling sync <code>render</code> for an async template uses <code>asyncio.run</code>. :pr:<code>1952</code></li> <li>Avoid unclosed <code>auto_aiter</code> warnings. :pr:<code>1960</code></li> <li>Return an <code>aclose</code>-able <code>AsyncGenerator</code> from <code>Template.generate_async</code>. :pr:<code>1960</code></li> <li>Avoid leaving <code>root_render_func()</code> unclosed in <code>Template.generate_async</code>. :pr:<code>1960</code></li> <li>Avoid leaving async generators unclosed in blocks, includes and extends. :pr:<code>1960</code></li> <li>The runtime uses the correct <code>concat</code> function for the current environment when calling block references. :issue:<code>1701</code></li> <li>Make <code>|unique</code> async-aware, allowing it to be used after another async-aware filter. :issue:<code>1781</code></li> <li><code>|int</code> filter handles <code>OverflowError</code> from scientific notation. :issue:<code>1921</code></li> <li>Make compiling deterministic for tuple unpacking in a <code>{% set ... %}</code> call. :issue:<code>2021</code></li> <li>Fix dunder protocol (<code>copy</code>/<code>pickle</code>/etc) interaction with <code>Undefined</code> objects. :issue:<code>2025</code></li> <li>Fix <code>copy</code>/<code>pickle</code> support for the internal <code>missing</code> object. :issue:<code>2027</code></li> <li><code>Environment.overlay(enable_async)</code> is applied correctly. :pr:<code>2061</code></li> <li>The error message from <code>FileSystemLoader</code> includes the paths that were searched. :issue:<code>1661</code></li> <li><code>PackageLoader</code> shows a clearer error message when the package does not contain the templates directory. :issue:<code>1705</code></li> <li>Improve annotations for methods returning copies. :pr:<code>1880</code></li> <li><code>urlize</code> does not add <code>mailto:</code> to values like <code>@A@b</code>. :pr:<code>1870</code></li> <li>Tests decorated with <code>@pass_context`` can be used with the ``|select`` filter. :issue:</code>1624`</li> <li>Using <code>set</code> for multiple assignment (<code>a, b = 1, 2</code>) does not fail when the target is a namespace attribute. :issue:<code>1413</code></li> <li>Using <code>set</code> in all branches of <code>{% if %}{% elif %}{% else %}</code> blocks does not cause the variable to be considered initially undefined. :issue:<code>1253</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pallets/jinja/commit/877f6e51be8e1765b06d911cfaa9033775f051d1"><code>877f6e5</code></a> release version 3.1.5</li> <li><a href="https://github.com/pallets/jinja/commit/8d588592653b052f957b720e1fc93196e06f207f"><code>8d58859</code></a> remove test pypi</li> <li><a href="https://github.com/pallets/jinja/commit/eda8fe86fd716dfce24910294e9f1fc81fbc740c"><code>eda8fe8</code></a> update dev dependencies</li> <li><a href="https://github.com/pallets/jinja/commit/c8fdce1e0333f1122b244b03a48535fdd7b03d91"><code>c8fdce1</code></a> Fix bug involving calling set on a template parameter within all branches of ...</li> <li><a href="https://github.com/pallets/jinja/commit/66587ce989e5a478e0bb165371fa2b9d42b7040f"><code>66587ce</code></a> Fix bug where set would sometimes fail within if</li> <li><a href="https://github.com/pallets/jinja/commit/fbc3a696c729d177340cc089531de7e2e5b6f065"><code>fbc3a69</code></a> Add support for namespaces in tuple parsing (<a href="https://redirect.github.com/pallets/jinja/issues/1664">#1664</a>)</li> <li><a href="https://github.com/pallets/jinja/commit/b8f4831d41e6a7cb5c40d42f074ffd92d2daccfc"><code>b8f4831</code></a> more comments about nsref assignment</li> <li><a href="https://github.com/pallets/jinja/commit/ee832194cd9f55f75e5a51359b709d535efe957f"><code>ee83219</code></a> Add support for namespaces in tuple assignment</li> <li><a href="https://github.com/pallets/jinja/commit/1d55cddbb28e433779511f28f13a2d8c4ec45826"><code>1d55cdd</code></a> Triple quotes in docs (<a href="https://redirect.github.com/pallets/jinja/issues/2064">#2064</a>)</li> <li><a href="https://github.com/pallets/jinja/commit/8a8eafc6b992ba177f1d3dd483f8465f18a11116"><code>8a8eafc</code></a> edit block assignment section</li> <li>Additional commits viewable in <a href="https://github.com/pallets/jinja/compare/3.1.4...3.1.5">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.48 to 9.5.49 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/squidfunk/mkdocs-material/releases">mkdocs-material's releases</a>.</em></p> <blockquote> <h2>mkdocs-material-9.5.49</h2> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG">mkdocs-material's changelog</a>.</em></p> <blockquote> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7672">#7672</a>: Font CSS 404's when using privacy plugin (9.5.43 regression)</li> </ul> <p>mkdocs-material-9.5.43 (2024-10-31)</p> <ul> <li>Added support for external images in SVGs in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7651">#7651</a>: Privacy plugin doesn't handle quoted URLs in CSS</li> </ul> <p>mkdocs-material-9.5.42 (2024-10-20)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7625">#7625</a>: Invalid encoding of boolean attributes in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7624">#7624</a>: Crash when disabling privacy plugin (9.5.41 regression)</li> </ul> <p>mkdocs-material-9.5.41 (2024-10-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7619">#7619</a>: Improved tooltip on logo disappears after instant navigation</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7616">#7616</a>: Race condition in built-in privacy plugin when inlining assets</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7615">#7615</a>: Comments and "Was this page helpful?" visible when printing</li> </ul> <p>mkdocs-material-9.5.40 (2024-10-10)</p> <ul> <li>Updated Latvian translations</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7597">#7597</a>: Social cards not using site name on home page</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/f947bbe64a6f0f4754c0a7a1afc3b67e8b735c8b"><code>f947bbe</code></a> Prepare 9.5.49 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/968fbe1ae213cb350850cfddf2614a1c93e73adb"><code>968fbe1</code></a> Fixed privacy plugin interop with generated files</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/c97270c8f1d7a068eb20335ad961a356971c5f05"><code>c97270c</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/7fb3a39bbc17865743b8cb8846aa4e845ac53eb4"><code>7fb3a39</code></a> Documentation (<a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7794">#7794</a>)</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1ee11152260a8081d2e6f394162194d1e591aadb"><code>1ee1115</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/b368cee13f23b52335fd1ab39cacae9e26b08291"><code>b368cee</code></a> Fixed diagram title not switching color in dark mode</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0f97a8d5f029b1d38ec84fcdb9733a3682f84d50"><code>0f97a8d</code></a> Documentation (<a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7784">#7784</a>)</li> <li>See full diff in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.48...9.5.49">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information