Skip to content

Commit eec09d6

Browse files
authored
Bump the required group with 7 updates (#337)
Bumps the required group with 7 updates: | Package | From | To | | --- | --- | --- | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.1` | `3.3.3` | | [pytest](https://github.com/pytest-dev/pytest) | `8.3.3` | `8.3.4` | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.9` | `0.5.14` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.46` | `9.5.49` | | [mkdocstrings-python](https://github.com/mkdocstrings/python) | `1.12.2` | `1.13.0` | | [mypy](https://github.com/python/mypy) | `1.13.0` | `1.14.1` | | [jinja2](https://github.com/pallets/jinja) | `3.1.4` | `3.1.5` | Updates `pylint` from 3.3.1 to 3.3.3 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c28580be76fe1ec55a6cac41833c0bd68070d2f7"><code>c28580b</code></a> Bump pylint to 3.3.3, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/1f9b947768ca8dc15deaf1b70e102ccb27621c08"><code>1f9b947</code></a> Bump astroid from 3.3.5 to 3.3.8 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10125">#10125</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10155">#10155</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/96d13034cfcd021f73572115781f4eaa55257ff3"><code>96d1303</code></a> Bump actions/cache from 4.1.2 to 4.2.0 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10123">#10123</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10154">#10154</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/a7202b145b81e86bed9ddcddf54439cccc73d4f3"><code>a7202b1</code></a> Fix Python 3.12 generic type syntax (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10135">#10135</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10146">#10146</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/90cb29df77bf8abde79671dd59e740eeaf063deb"><code>90cb29d</code></a> [mypy] Use type-setuptools instead of types-pkg-resources (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10120">#10120</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/995570109a3edaa76606558df8758451ec2d85c8"><code>9955701</code></a> Fix 'use-implicit-booleaness' wrongly emitted for generators. (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10107">#10107</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10109">#10109</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/a5a1bc3a9602d08f15ac90ad12f5b25bde375613"><code>a5a1bc3</code></a> Bump pylint to 3.3.2, update changelog (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10088">#10088</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/621ecf68c9cfda6fcd64c082c59d545556814ca6"><code>621ecf6</code></a> Fix <code>potential-index-error</code> false positive when iterable contains starred ele...</li> <li><a href="https://github.com/pylint-dev/pylint/commit/5597aae8757a70abf8eb7842b4f1c575aaf7ac47"><code>5597aae</code></a> Fix source root not recognized (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10036">#10036</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10083">#10083</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/ea8ed7e0ea84c2e3d58e98f0b38010625eff99a9"><code>ea8ed7e</code></a> Bump astroid to 3.3.5 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10004">#10004</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10005">#10005</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.1...v3.3.3">compare view</a></li> </ul> </details> <br /> Updates `pytest` from 8.3.3 to 8.3.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest/releases">pytest's releases</a>.</em></p> <blockquote> <h2>8.3.4</h2> <h1>pytest 8.3.4 (2024-12-01)</h1> <h2>Bug fixes</h2> <ul> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/12592">#12592</a>: Fixed <code>KeyError</code>{.interpreted-text role=&quot;class&quot;} crash when using <code>--import-mode=importlib</code> in a directory layout where a directory contains a child directory with the same name.</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/12818">#12818</a>: Assertion rewriting now preserves the source ranges of the original instructions, making it play well with tools that deal with the <code>AST</code>, like <a href="https://github.com/alexmojaki/executing">executing</a>.</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/12849">#12849</a>: ANSI escape codes for colored output now handled correctly in <code>pytest.fail</code>{.interpreted-text role=&quot;func&quot;} with [pytrace=False]{.title-ref}.</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/9353">#9353</a>: <code>pytest.approx</code>{.interpreted-text role=&quot;func&quot;} now uses strict equality when given booleans.</p> </li> </ul> <h2>Improved documentation</h2> <ul> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/10558">#10558</a>: Fix ambiguous docstring of <code>pytest.Config.getoption</code>{.interpreted-text role=&quot;func&quot;}.</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/10829">#10829</a>: Improve documentation on the current handling of the <code>--basetemp</code> option and its lack of retention functionality (<code>temporary directory location and retention</code>{.interpreted-text role=&quot;ref&quot;}).</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/12866">#12866</a>: Improved cross-references concerning the <code>recwarn</code>{.interpreted-text role=&quot;fixture&quot;} fixture.</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/12966">#12966</a>: Clarify <code>filterwarnings</code>{.interpreted-text role=&quot;ref&quot;} docs on filter precedence/order when using multiple <code>@pytest.mark.filterwarnings &lt;pytest.mark.filterwarnings ref&gt;</code>{.interpreted-text role=&quot;ref&quot;} marks.</p> </li> </ul> <h2>Contributor-facing changes</h2> <ul> <li><a href="https://redirect.github.com/pytest-dev/pytest/issues/12497">#12497</a>: Fixed two failing pdb-related tests on Python 3.13.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest/commit/53f8b4e634c5066c4f797a87b20060edbb086240"><code>53f8b4e</code></a> Update pypa/gh-action-pypi-publish to v1.12.2</li> <li><a href="https://github.com/pytest-dev/pytest/commit/98dff36c9dc0a44881e9e90daf381f9079adf4cc"><code>98dff36</code></a> Prepare release version 8.3.4</li> <li><a href="https://github.com/pytest-dev/pytest/commit/1b474e221d5ced2c8c73924a0087e6e24ab6cd61"><code>1b474e2</code></a> approx: use exact comparison for bool (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13013">#13013</a>)</li> <li><a href="https://github.com/pytest-dev/pytest/commit/b541721529feba7fcd0d069fa2437a817f340eba"><code>b541721</code></a> docs: Fix wrong statement about sys.modules with importlib import mode (<a href="https://redirect.github.com/pytest-dev/pytest/issues/1298">#1298</a>...</li> <li><a href="https://github.com/pytest-dev/pytest/commit/16cb87b65036300d74472cd55eebca8fc3f8e703"><code>16cb87b</code></a> pytest.fail: fix ANSI escape codes for colored output (<a href="https://redirect.github.com/pytest-dev/pytest/issues/12959">#12959</a>) (<a href="https://redirect.github.com/pytest-dev/pytest/issues/12990">#12990</a>)</li> <li><a href="https://github.com/pytest-dev/pytest/commit/be6bc812b02454b2915755dd76ce74b877aeafad"><code>be6bc81</code></a> Issue <a href="https://redirect.github.com/pytest-dev/pytest/issues/12966">#12966</a> Clarify filterwarnings docs on precedence when using multiple ma...</li> <li><a href="https://github.com/pytest-dev/pytest/commit/7aeb72bbc67bd1b8271eee57caa0a4e9b07038fc"><code>7aeb72b</code></a> Improve docs on basetemp and retention (<a href="https://redirect.github.com/pytest-dev/pytest/issues/12912">#12912</a>) (<a href="https://redirect.github.com/pytest-dev/pytest/issues/12928">#12928</a>)</li> <li><a href="https://github.com/pytest-dev/pytest/commit/c8758414cfd1646f273842e8f9292b2c15dcfcfb"><code>c875841</code></a> Merge pull request <a href="https://redirect.github.com/pytest-dev/pytest/issues/12917">#12917</a> from pytest-dev/patchback/backports/8.3.x/ded1f44e5...</li> <li><a href="https://github.com/pytest-dev/pytest/commit/6502816d977fcdbd65a3f4d8a63c0ce7c1f25649"><code>6502816</code></a> Merge pull request <a href="https://redirect.github.com/pytest-dev/pytest/issues/12913">#12913</a> from jakkdl/dontfailonbadpath</li> <li><a href="https://github.com/pytest-dev/pytest/commit/52135b033fb949efbec6aed9dd9000275bb199fd"><code>52135b0</code></a> Merge pull request <a href="https://redirect.github.com/pytest-dev/pytest/issues/12885">#12885</a> from The-Compiler/pdb-py311 (<a href="https://redirect.github.com/pytest-dev/pytest/issues/12887">#12887</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pytest-dev/pytest/compare/8.3.3...8.3.4">compare view</a></li> </ul> </details> <br /> Updates `pydoclint` from 0.5.9 to 0.5.14 <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.14</h2> <h2>What's Changed</h2> <ul> <li>Make pydoclint not crash on syntax erros (including invisible chars) by <a href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/194">jsh9/pydoclint#194</a></li> <li>Fix a bug with ast.assign by <a href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/195">jsh9/pydoclint#195</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.13...0.5.14">https://github.com/jsh9/pydoclint/compare/0.5.13...0.5.14</a></p> <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 &quot;modern&quot; 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> <h2>0.5.11</h2> <h2>What's Changed</h2> <ul> <li>fix: get name of a raised exception when bound in except by <a href="https://github.com/Amar1729"><code>@​Amar1729</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/184">jsh9/pydoclint#184</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.10...0.5.11">https://github.com/jsh9/pydoclint/compare/0.5.10...0.5.11</a></p> <h2>0.5.10</h2> <h2>What's Changed</h2> <ul> <li>Hide msg about loading config in quiet mode by <a href="https://github.com/aemonge"><code>@​aemonge</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/178">jsh9/pydoclint#178</a></li> <li>Fix bug caused by assigning value to attr by <a href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/181">jsh9/pydoclint#181</a></li> <li>Rename unparseAnnotation by <a href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/182">jsh9/pydoclint#182</a></li> <li>Rename InternalError into EdgeCaseError by <a href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/183">jsh9/pydoclint#183</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.9...0.5.10">https://github.com/jsh9/pydoclint/compare/0.5.9...0.5.10</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.14] - 2024-12-26</h2> <ul> <li> <p>Changed</p> <ul> <li>Added <code>DOC002</code> (syntax error) to handle cases where there are syntax errors in the Python file</li> <li>Replaced invisible and zero-width characters with empty strings so that Python's AST can correctly parse the files</li> <li>Added end-to-end test (essentially an integration test)</li> </ul> </li> <li> <p>Fixed</p> <ul> <li>A bug in ast.assign</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.13...0.5.14">https://github.com/jsh9/pydoclint/compare/0.5.13...0.5.14</a></li> </ul> </li> </ul> <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 &quot;modern&quot; 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> <h2>[0.5.11] - 2024-12-14</h2> <ul> <li> <p>Fixed</p> <ul> <li>Fixed a bug where pydoclint uses variable names instead of the exception itself (<a href="https://redirect.github.com/jsh9/pydoclint/issues/175">jsh9/pydoclint#175</a>)</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/46c5cb78a36446feed5bee30ab763d0f157a21b3"><code>46c5cb7</code></a> Fix a bug with ast.assign (<a href="https://redirect.github.com/jsh9/pydoclint/issues/195">#195</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/f141b716d5b764e25edf591c9808d740245b6eda"><code>f141b71</code></a> Make pydoclint not crash on syntax erros (including invisible chars) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/194">#194</a>)</li> <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 &quot;modern&quot; 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><a href="https://github.com/jsh9/pydoclint/commit/3b4dcb52fd1b48762a06a9e6af45f71bcb32e1d6"><code>3b4dcb5</code></a> fix: get name of a raised exception when bound in except (<a href="https://redirect.github.com/jsh9/pydoclint/issues/184">#184</a>)</li> <li>Additional commits viewable in <a href="https://github.com/jsh9/pydoclint/compare/0.5.9...0.5.14">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.46 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> <h2>mkdocs-material-9.5.48</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <h2>mkdocs-material-9.5.47</h2> <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>Thanks go to <a href="https://github.com/perpil"><code>@​perpil</code></a> for their contributions</p> </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 &quot;Was this page helpful?&quot; 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><a href="https://github.com/squidfunk/mkdocs-material/commit/622bf7a6916ec11b4f8d38db40722096ab861b59"><code>622bf7a</code></a> Prepare 9.5.48 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/bedd3fb2c806c4f45ce9857ebf116c2f64590d0f"><code>bedd3fb</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/a7dc57c23935c0420b01b78c13d9058fc057a16f"><code>a7dc57c</code></a> Fixed disabling of social cards</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.46...9.5.49">compare view</a></li> </ul> </details> <br /> Updates `mkdocstrings-python` from 1.12.2 to 1.13.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mkdocstrings/python/releases">mkdocstrings-python's releases</a>.</em></p> <blockquote> <h2>1.13.0</h2> <h2><a href="https://github.com/mkdocstrings/python/releases/tag/1.13.0">1.13.0</a> - 2024-12-26</h2> <p><!-- raw HTML omitted --><a href="https://github.com/mkdocstrings/python/compare/1.12.2...1.13.0">Compare with 1.12.2</a><!-- raw HTML omitted --></p> <h3>Features</h3> <ul> <li>Allow using Ruff to format signatures and attribute values (<a href="https://github.com/mkdocstrings/python/commit/d67215c976938ef1e169f16dd0b6166067ebd7bc">d67215c</a> by dm). <a href="https://redirect.github.com/mkdocstrings/python/pull/216">PR-216</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li>Respect <code>show_signature_annotations</code> option for attribute signatures in headings (<a href="https://github.com/mkdocstrings/python/commit/e93d166a14d0944d30ff2f28f21f2262ac396bff">e93d166</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/griffe-pydantic/issues/9">Issue-griffe-pydantic#9</a></li> <li>Handle <code>__init__</code> overloads when merging into class (<a href="https://github.com/mkdocstrings/python/commit/af6fab31142204872ace716392dcb314b2cb5d0f">af6fab3</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/python/issues/212">Issue-212</a></li> <li>Actually check if a module is public when rendering auto-generated summary table for modules (<a href="https://github.com/mkdocstrings/python/commit/3bf55b22ce9a841242c55b2efcedbd8f3a99ccc9">3bf55b2</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/python/issues/203">Issue-203</a></li> <li>Never render line numbers for signatures and attribute values (<a href="https://github.com/mkdocstrings/python/commit/a669f1caefbd54305cc4610bdd57a529aa1208cf">a669f1c</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/python/issues/192">Issue-192</a></li> <li>Respect highlight's <code>linenums</code> config for <code>pycon</code> examples in docstrings (<a href="https://github.com/mkdocstrings/python/commit/53eb82a21bbcaa959306e909bf0d4ac468f87580">53eb82a</a> by Timothée Mazzucotelli). [Related-to-<a href="https://redirect.github.com/mkdocstrings/python/issues/192">#192</a>](<a href="https://redirect.github.com/mkdocstrings/python/issues/192">mkdocstrings/python#192</a>)</li> <li>Fix normalization of extension paths on the annoying operating system and Python 3.13 (<a href="https://github.com/mkdocstrings/python/commit/101a6dc428da59a512da617a0a2453f2b6ef4387">101a6dc</a> by Timothée Mazzucotelli).</li> <li>Don't merge parent <code>__init__</code> docstring into class docstring if such inherited method wasn't selected through the <code>inherited_members</code> configuration option (<a href="https://github.com/mkdocstrings/python/commit/6c5b5c341940af9425b3de0672ac400794b3f6e5">6c5b5c3</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/python/issues/189">Issue-189</a></li> </ul> <h3>Code Refactoring</h3> <ul> <li>Render <code>*</code> and <code>**</code> outside of cross-references in signatures (<a href="https://github.com/mkdocstrings/python/commit/c4506f080e0c75cd32d6512c80f5016e82fc12bc">c4506f0</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/python/pull/216">Needed-for-PR-216</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md">mkdocstrings-python's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/mkdocstrings/python/releases/tag/1.13.0">1.13.0</a> - 2024-12-26</h2> <p><!-- raw HTML omitted --><a href="https://github.com/mkdocstrings/python/compare/1.12.2...1.13.0">Compare with 1.12.2</a><!-- raw HTML omitted --></p> <h3>Features</h3> <ul> <li>Allow using Ruff to format signatures and attribute values (<a href="https://github.com/mkdocstrings/python/commit/d67215c976938ef1e169f16dd0b6166067ebd7bc">d67215c</a> by dm). <a href="https://redirect.github.com/mkdocstrings/python/pull/216">PR-216</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li>Respect <code>show_signature_annotations</code> option for attribute signatures in headings (<a href="https://github.com/mkdocstrings/python/commit/e93d166a14d0944d30ff2f28f21f2262ac396bff">e93d166</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/griffe-pydantic/issues/9">Issue-griffe-pydantic#9</a></li> <li>Handle <code>__init__</code> overloads when merging into class (<a href="https://github.com/mkdocstrings/python/commit/af6fab31142204872ace716392dcb314b2cb5d0f">af6fab3</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/python/issues/212">Issue-212</a></li> <li>Actually check if a module is public when rendering auto-generated summary table for modules (<a href="https://github.com/mkdocstrings/python/commit/3bf55b22ce9a841242c55b2efcedbd8f3a99ccc9">3bf55b2</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/python/issues/203">Issue-203</a></li> <li>Never render line numbers for signatures and attribute values (<a href="https://github.com/mkdocstrings/python/commit/a669f1caefbd54305cc4610bdd57a529aa1208cf">a669f1c</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/python/issues/192">Issue-192</a></li> <li>Respect highlight's <code>linenums</code> config for <code>pycon</code> examples in docstrings (<a href="https://github.com/mkdocstrings/python/commit/53eb82a21bbcaa959306e909bf0d4ac468f87580">53eb82a</a> by Timothée Mazzucotelli). [Related-to-<a href="https://redirect.github.com/mkdocstrings/python/issues/192">#192</a>](<a href="https://redirect.github.com/mkdocstrings/python/issues/192">mkdocstrings/python#192</a>)</li> <li>Fix normalization of extension paths on the annoying operating system and Python 3.13 (<a href="https://github.com/mkdocstrings/python/commit/101a6dc428da59a512da617a0a2453f2b6ef4387">101a6dc</a> by Timothée Mazzucotelli).</li> <li>Don't merge parent <code>__init__</code> docstring into class docstring if such inherited method wasn't selected through the <code>inherited_members</code> configuration option (<a href="https://github.com/mkdocstrings/python/commit/6c5b5c341940af9425b3de0672ac400794b3f6e5">6c5b5c3</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/python/issues/189">Issue-189</a></li> </ul> <h3>Code Refactoring</h3> <ul> <li>Render <code>*</code> and <code>**</code> outside of cross-references in signatures (<a href="https://github.com/mkdocstrings/python/commit/c4506f080e0c75cd32d6512c80f5016e82fc12bc">c4506f0</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/python/pull/216">Needed-for-PR-216</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mkdocstrings/python/commit/941d0e5fa02038bf4c7ef61633aa8288dc59d1da"><code>941d0e5</code></a> chore: Prepare release 1.13.0</li> <li><a href="https://github.com/mkdocstrings/python/commit/c8f1a77dc5150e0dec0f43649c2b04e422028f37"><code>c8f1a77</code></a> tests: Add templates rendenring tests using inline-snapshot</li> <li><a href="https://github.com/mkdocstrings/python/commit/e4936638b9d80ed1bc918e545f65b0b46b9a91d9"><code>e493663</code></a> tests: Refactor fixtures and helpers</li> <li><a href="https://github.com/mkdocstrings/python/commit/0d953e384fac3f4439933daa0bd7022c7baea5a3"><code>0d953e3</code></a> chore: Template upgrade</li> <li><a href="https://github.com/mkdocstrings/python/commit/ec4d2cc392a33f42033fe0ea44dc9eef55e335c3"><code>ec4d2cc</code></a> chore: Template upgrade</li> <li><a href="https://github.com/mkdocstrings/python/commit/d67215c976938ef1e169f16dd0b6166067ebd7bc"><code>d67215c</code></a> feat: Allow using Ruff to format signatures and attribute values</li> <li><a href="https://github.com/mkdocstrings/python/commit/c4506f080e0c75cd32d6512c80f5016e82fc12bc"><code>c4506f0</code></a> refactor: Render <code>*</code> and <code>**</code> outside of cross-references in signatures</li> <li><a href="https://github.com/mkdocstrings/python/commit/cea49964ac8364e2087f3016baa88168e67dec7f"><code>cea4996</code></a> docs: Mention mkdocstrings-python-xref</li> <li><a href="https://github.com/mkdocstrings/python/commit/e93d166a14d0944d30ff2f28f21f2262ac396bff"><code>e93d166</code></a> fix: Respect <code>show_signature_annotations</code> option for attribute signatures in ...</li> <li><a href="https://github.com/mkdocstrings/python/commit/af6fab31142204872ace716392dcb314b2cb5d0f"><code>af6fab3</code></a> fix: Handle <code>__init__</code> overloads when merging into class</li> <li>Additional commits viewable in <a href="https://github.com/mkdocstrings/python/compare/1.12.2...1.13.0">compare view</a></li> </ul> </details> <br /> Updates `mypy` from 1.13.0 to 1.14.1 <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> <h3>Drop Support for Python 3.8</h3> <p>Mypy no longer supports running with Python 3.8, which has reached end-of-life. When running mypy with Python 3.9+, it is still possible to type check code that needs to support Python 3.8 with the <code>--python-version 3.8</code> argument. Support for this will be dropped in the first half of 2025!</p> <p>Contributed by Marc Mueller (PR <a href="https://redirect.github.com/python/mypy/pull/17492">17492</a>).</p> <h3>Mypyc accelerated mypy wheels for aarch64</h3> <p>Mypy can compile itself to C extension modules using mypyc. This makes mypy 3-5x faster than if mypy is interpreted with pure Python. We now build and upload mypyc accelerated mypy wheels for <code>manylinux_aarch64</code> to PyPI, making it easy for users on such platforms to realise this speedup.</p> <p>Contributed by Christian Bundy (PR <a href="https://redirect.github.com/mypyc/mypy_mypyc-wheels/pull/76">mypy_mypyc-wheels#76</a>)</p> <h3><code>--strict-bytes</code></h3> <p>By default, mypy treats an annotation of <code>bytes</code> as permitting <code>bytearray</code> and <code>memoryview</code>. <a href="https://peps.python.org/pep-0688">PEP 688</a> specified the removal of this special case. Use this flag to disable this behavior. <code>--strict-bytes</code> will be enabled by default in <strong>mypy 2.0</strong>.</p> <p>Contributed by Ali Hamdan (PR <a href="https://redirect.github.com/python/mypy/pull/18263/">18137</a>) and Shantanu Jain (PR <a href="https://redirect.github.com/python/mypy/pull/13952">13952</a>).</p> <h3>Improvements to partial type handling in loops</h3> <p>This change results in mypy better modelling control flow within loops and hence detecting several issues it previously did not detect. In some cases, this change may require use of an additional explicit annotation of a variable.</p> <p>Contributed by Christoph Tyralla (PR <a href="https://redirect.github.com/python/mypy/pull/18180">18180</a>).</p> <p>(Speaking of partial types, another reminder that mypy plans on enabling <code>--local-partial-types</code> by default in <strong>mypy 2.0</strong>).</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> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python/mypy/commit/251d12fe9f89f8d4818fd6ff1c48224e77119004"><code>251d12f</code></a> Remove +dev from version for release 1.14.1</li> <li><a href="https://github.com/python/mypy/commit/667e5f752aaa4d1c62341d27af54e9ffff82620c"><code>667e5f7</code></a> Revert &quot;Remove redundant inheritances from Iterator in builtins&quot; (<a href="https://redirect.github.com/python/mypy/issues/18324">#18324</a>)</li> <li><a href="https://github.com/python/mypy/commit/67f673a79d3114b3aa06d9642b9feefc2f20631a"><code>67f673a</code></a> Fix enum truthiness for StrEnum (<a href="https://redirect.github.com/python/mypy/issues/18379">#18379</a>)</li> <li><a href="https://github.com/python/mypy/commit/3755abbb875c80698c928711b5aa8f59e71ce973"><code>3755abb</code></a> Fix getargs argument passing (<a href="https://redirect.github.com/python/mypy/issues/18350">#18350</a>)</li> <li><a href="https://github.com/python/mypy/commit/b9fa8eeaebfda2b6ac01a2651659d3206fab9854"><code>b9fa8ee</code></a> Update version to 1.14.1+dev for point release</li> <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>Additional commits viewable in <a href="https://github.com/python/mypy/compare/v1.13.0...v1.14.1">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 /> 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>
2 parents 4744298 + f637cf1 commit eec09d6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ dev-flake8 = [
7070
"flake8 == 7.1.1",
7171
"flake8-docstrings == 1.7.0",
7272
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
73-
"pydoclint == 0.5.9",
73+
"pydoclint == 0.5.14",
7474
"pydocstyle == 6.3.0",
7575
]
7676
dev-formatting = ["black == 24.10.0", "isort == 5.13.2"]
@@ -81,12 +81,12 @@ dev-mkdocs = [
8181
"mkdocs-gen-files == 0.5.0",
8282
"mkdocs-literate-nav == 0.6.1",
8383
"mkdocs-macros-plugin == 1.3.7",
84-
"mkdocs-material == 9.5.46",
84+
"mkdocs-material == 9.5.49",
8585
"mkdocstrings[python] == 0.27.0",
86-
"mkdocstrings-python == 1.12.2",
86+
"mkdocstrings-python == 1.13.0",
8787
]
8888
dev-mypy = [
89-
"mypy == 1.13.0",
89+
"mypy == 1.14.1",
9090
"types-setuptools >= 67.6.0, < 76", # Should match the build dependency
9191
"types-Markdown == 3.7.0.20241204",
9292
"types-PyYAML == 6.0.12.20240917",
@@ -103,10 +103,10 @@ dev-pylint = [
103103
"setuptools >= 67.6.0, < 76", # Should match the build dependency
104104
]
105105
dev-pytest = [
106-
"pytest == 8.3.3",
107-
"pylint == 3.3.1", # We need this to check for the examples
106+
"pytest == 8.3.4",
107+
"pylint == 3.3.3", # We need this to check for the examples
108108
"cookiecutter == 2.6.0", # For checking the cookiecutter scripts
109-
"jinja2 == 3.1.4", # For checking the cookiecutter scripts
109+
"jinja2 == 3.1.5", # For checking the cookiecutter scripts
110110
"sybil >= 6.1.1, < 10", # Should be consistent with the extra-lint-examples dependency
111111
]
112112
dev = [

0 commit comments

Comments
 (0)