Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump the required group with 9 updates (#15)
Updates the requirements on [frequenz-client-base](https://github.com/frequenz-floss/frequenz-client-base-python), [mike](https://github.com/jimporter/mike), [mkdocs-material](https://github.com/squidfunk/mkdocs-material), [mkdocstrings[python]](https://github.com/mkdocstrings/mkdocstrings), [frequenz-repo-config[lib]](https://github.com/frequenz-floss/frequenz-repo-config-python), [pylint](https://github.com/pylint-dev/pylint), [pytest](https://github.com/pytest-dev/pytest), [frequenz-repo-config[extra-lint-examples]](https://github.com/frequenz-floss/frequenz-repo-config-python) and [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) to permit the latest version. Updates `frequenz-client-base` to 0.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/frequenz-floss/frequenz-client-base-python/releases">frequenz-client-base's releases</a>.</em></p> <blockquote> <h2>v0.4.0</h2> <h1>Frequenz Client Base Library Release Notes</h1> <h2>Summary</h2> <!-- raw HTML omitted --> <h2>Upgrading</h2> <ul> <li>You should now install the dependency using <code>frequenz-client-base[grpcio]</code> (or <code>frequenz-client-base[grpclib]</code>) if you want to migrate to <code>grpclib</code>).</li> <li><code>GrpcStreamBroadcaster</code>'s <code>stream_method</code> callback now should return an <code>AsyncIterator</code> instead of a <code>grpc.aio.UnaryStreamCall</code>, this is so it is compatible with both <code>grpcio</code> and <code>grpclib</code>. Normally no changes should be needed, as a <code>grpc.aio.UnaryStreamCall</code> should be a <code>AsyncIterator</code>, but since <code>grpcio</code> doesn't have correct type hints, you might need to adjust the <code>cast()</code> if you are using one.</li> </ul> <h2>New Features</h2> <ul> <li><code>GrpcStreamBroadcaster</code> is now compatible with both <code>grpcio</code> and <code>grpclib</code> implementations of gRPC. Just install <code>frequenz-client-base[grpcio]</code> or <code>frequenz-client-base[grpclib]</code> to use the desired implementation and everything should work as expected.</li> <li>A new module <code>channel</code> with a function to parse URIs to create <code>grpclib</code> client <code>Channel</code> instances.</li> </ul> <h2>Bug Fixes</h2> <ul> <li>Fixed retrying for <code>GrpcStreamBroadcaster</code> when the retry interval is set to 0 (before it would stop retrying if the interval was set to 0).</li> </ul> <h2>What's Changed</h2> <ul> <li>Clear RELEASE_NOTES.md by <a href="https://github.com/shsms"><code>@shsms</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/36">frequenz-floss/frequenz-client-base-python#36</a></li> <li>Bump types-protobuf from 4.24.0.20240129 to 4.24.0.20240311 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/39">frequenz-floss/frequenz-client-base-python#39</a></li> <li>Bump nox from 2023.4.22 to 2024.3.2 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/38">frequenz-floss/frequenz-client-base-python#38</a></li> <li>Update protobuf requirement from <!-- raw HTML omitted -->=4.21.6,<6 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/40">frequenz-floss/frequenz-client-base-python#40</a></li> <li>Bump the optional group with 10 updates by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/43">frequenz-floss/frequenz-client-base-python#43</a></li> <li>Bump the required group with 7 updates by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/44">frequenz-floss/frequenz-client-base-python#44</a></li> <li>Bump types-protobuf from 4.24.0.20240311 to 5.26.0.20240422 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/45">frequenz-floss/frequenz-client-base-python#45</a></li> <li>Remove TODOs by <a href="https://github.com/llucax"><code>@llucax</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/46">frequenz-floss/frequenz-client-base-python#46</a></li> <li>Bump repo-config to v0.9.2 by <a href="https://github.com/llucax"><code>@llucax</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/47">frequenz-floss/frequenz-client-base-python#47</a></li> <li>Fix the condition to run the <code>nox-(cross-arch-)?all</code> jobs by <a href="https://github.com/llucax"><code>@llucax</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/48">frequenz-floss/frequenz-client-base-python#48</a></li> <li>ci: Fix pip cache post step by <a href="https://github.com/llucax"><code>@llucax</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/50">frequenz-floss/frequenz-client-base-python#50</a></li> <li>Make <code>GrpcStreamBroadcaster</code> compatible with both <code>grpcio</code> and <code>grpclib</code> by <a href="https://github.com/llucax"><code>@llucax</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/49">frequenz-floss/frequenz-client-base-python#49</a></li> <li>Fix <code>GrpcStreamBroadcaster</code> retry with a 0 interval by <a href="https://github.com/llucax"><code>@llucax</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/52">frequenz-floss/frequenz-client-base-python#52</a></li> <li>Add parsing of gRPC channel URIs by <a href="https://github.com/llucax"><code>@llucax</code></a> in <a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/pull/51">frequenz-floss/frequenz-client-base-python#51</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/frequenz-floss/frequenz-client-base-python/compare/v0.3.0...v0.4.0">https://github.com/frequenz-floss/frequenz-client-base-python/compare/v0.3.0...v0.4.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/frequenz-floss/frequenz-client-base-python/commit/63d05890c395585f720942288818bb95b2b2e283"><code>63d0589</code></a> Add parsing of gRPC channel URIs (<a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/issues/51">#51</a>)</li> <li><a href="https://github.com/frequenz-floss/frequenz-client-base-python/commit/e59417ba433f31aa32ab874cacaa419d36322ab0"><code>e59417b</code></a> Disable <code>no-member</code> check in <code>pylint</code></li> <li><a href="https://github.com/frequenz-floss/frequenz-client-base-python/commit/35c5571ff2b52c6ef18281f702bad8c6fbb53da8"><code>35c5571</code></a> Add a new module <code>channel</code> with a function to parse URIs</li> <li><a href="https://github.com/frequenz-floss/frequenz-client-base-python/commit/e43b075dbfd39004accd7050815d3a9b5e89c928"><code>e43b075</code></a> Fix <code>GrpcStreamBroadcaster</code> retry with a 0 interval (<a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/issues/52">#52</a>)</li> <li><a href="https://github.com/frequenz-floss/frequenz-client-base-python/commit/6cb97852a476b8a60398fdaf4b889f7d07f3d83a"><code>6cb9785</code></a> Fix <code>GrpcStreamBroadcaster</code> retry with a 0 interval</li> <li><a href="https://github.com/frequenz-floss/frequenz-client-base-python/commit/3148c60311dad3badabe5af42dae5ec54a76d04a"><code>3148c60</code></a> Make <code>GrpcStreamBroadcaster</code> compatible with both <code>grpcio</code> and <code>grpclib</code> (<a href="https://redirect.github.com/frequenz-floss/frequenz-client-base-python/issues/49">#49</a>)</li> <li><a href="https://github.com/frequenz-floss/frequenz-client-base-python/commit/66e87348c6b21c309b38747b69397354aa8fb389"><code>66e8734</code></a> Add release notes</li> <li><a href="https://github.com/frequenz-floss/frequenz-client-base-python/commit/b96b3aca1f0488742ba76cd6c8de14d2c7394fb5"><code>b96b3ac</code></a> Add tests for <code>GrpcStreamBroadcaster</code></li> <li><a href="https://github.com/frequenz-floss/frequenz-client-base-python/commit/df359cf7055bcefcf58485e61328b50287025f2d"><code>df359cf</code></a> Make <code>GrpcStreamBroadcaster</code> compatible with both <code>grpcio</code> and <code>grpclib</code></li> <li><a href="https://github.com/frequenz-floss/frequenz-client-base-python/commit/544e522a56e659f94209a112103dd570034d8235"><code>544e522</code></a> Add a module to deal with multiple grpc libraries</li> <li>Additional commits viewable in <a href="https://github.com/frequenz-floss/frequenz-client-base-python/compare/v0.1.0...v0.4.0">compare view</a></li> </ul> </details> <br /> Updates `mike` from 2.0.0 to 2.1.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jimporter/mike/releases">mike's releases</a>.</em></p> <blockquote> <h2>v2.1.1</h2> <h3>Bug fixes</h3> <ul> <li>Support using environment variables for <code>INHERIT</code> when injecting the <code>mike</code> plugin into <code>mkdocs.yml</code></li> </ul> <h2>v2.1.0</h2> <h3>New features</h3> <ul> <li>When calling <code>set-default</code>, you can now pass <code>--allow-undefined</code> to set the default to a version that doesn't exist yet</li> <li>Add global-level <code>-q</code> / <code>--quiet</code> option to suppress warning messages</li> <li>Add support for handling <code>!relative</code> in <code>mkdocs.yml</code></li> </ul> <h3>Bug fixes</h3> <ul> <li>When loading an MkDocs config, mike now runs the <code>startup</code> and <code>shutdown</code> events</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jimporter/mike/blob/master/CHANGES.md">mike's changelog</a>.</em></p> <blockquote> <h2>v2.1.1 (2024-05-03)</h2> <h3>Bug fixes</h3> <ul> <li>Support using environment variables for <code>INHERIT</code> when injecting the <code>mike</code> plugin into <code>mkdocs.yml</code></li> </ul> <hr /> <h2>v2.1.0 (2024-05-01)</h2> <h3>New features</h3> <ul> <li>When calling <code>set-default</code>, you can now pass <code>--allow-undefined</code> to set the default to a version that doesn't exist yet</li> <li>Add global-level <code>-q</code> / <code>--quiet</code> option to suppress warning messages</li> <li>Add support for handling <code>!relative</code> in <code>mkdocs.yml</code></li> </ul> <h3>Bug fixes</h3> <ul> <li>When loading an MkDocs config, mike now runs the <code>startup</code> and <code>shutdown</code> events</li> </ul> <hr /> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jimporter/mike/commit/0bdfe24c20fb0774652230a7abe8466b98098da4"><code>0bdfe24</code></a> Update version to 2.1.1</li> <li><a href="https://github.com/jimporter/mike/commit/3351d5feabff8ee107f4ad6d1f86055843c7dbf1"><code>3351d5f</code></a> Expand environment variables when injecting the mike plugin; resolves <a href="https://redirect.github.com/jimporter/mike/issues/217">#217</a></li> <li><a href="https://github.com/jimporter/mike/commit/e4d83eda046b1dea0493f91fcacbf86634c93db5"><code>e4d83ed</code></a> Update version to 2.2.0.dev0</li> <li><a href="https://github.com/jimporter/mike/commit/6e6cfbb9a3e78d2ab2a529b72b84e8918c101f6c"><code>6e6cfbb</code></a> Update version to 2.1.0</li> <li><a href="https://github.com/jimporter/mike/commit/5773be928d1a6e99e61755df0d73a8b2ce16660f"><code>5773be9</code></a> Fix CI</li> <li><a href="https://github.com/jimporter/mike/commit/7904925595827ccba3908775b2f9b5add3ae9030"><code>7904925</code></a> Further tests for deserializing Python objects during <code>inject_plugin</code></li> <li><a href="https://github.com/jimporter/mike/commit/01219bddfeea16f8d6dd6d65d0d84581cf183a3f"><code>01219bd</code></a> Allow arbitrary Python object in YAML config</li> <li><a href="https://github.com/jimporter/mike/commit/ac7b2403cacb0a16892ce915478bac70bd7faf39"><code>ac7b240</code></a> Handle <code>!relative</code> (and any future constructors) in mkdocs.yml; resolves <a href="https://redirect.github.com/jimporter/mike/issues/199">#199</a></li> <li><a href="https://github.com/jimporter/mike/commit/fdcc9126b5ded0a273f7d3be3dd1d698f53157ec"><code>fdcc912</code></a> Add <code>--quiet</code> option; resolves <a href="https://redirect.github.com/jimporter/mike/issues/210">#210</a></li> <li><a href="https://github.com/jimporter/mike/commit/a39ea731c810627341980f4e28b0b5afa55c1c08"><code>a39ea73</code></a> Add <code>set-default --allow-undefined</code>; see <a href="https://redirect.github.com/jimporter/mike/issues/210">#210</a></li> <li>Additional commits viewable in <a href="https://github.com/jimporter/mike/compare/v2.0.0...v2.1.1">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.20 to 9.5.25 <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.25</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7209">#7209</a>: Tags plugin crashing on numeric tags</li> </ul> <h2>mkdocs-material-9.5.24</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7187">#7187</a>: Version selector title rendering issue</li> </ul> <h2>mkdocs-material-9.5.23</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7183">#7183</a>: Edge case in anchor navigation when using instant navigation</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6436">#6436</a>: Version selector not showing version alias</li> </ul> <h2>mkdocs-material-9.5.22</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7170">#7170</a>: Copy button adds empty lines for line spans (9.5.18 regression)</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7160">#7160</a>: Version switching doesn't stay on page (9.5.5 regression)</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/5619">#5619</a>: Links in Mermaid.js diagrams not discernible</li> </ul> <h2>mkdocs-material-9.5.21</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7133">#7133</a>: Ensure latest version of Mermaid.js is used</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7125">#7125</a>: Added warning for dotfiles in info plugin</li> </ul> <p>Thanks to <a href="https://github.com/kamilkrzyskow"><code>@kamilkrzyskow</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.25+insiders-4.53.11 (2024-05-27)</p> <ul> <li>Fixed projects plugin crashing when serving before building subprojects</li> </ul> <p>mkdocs-material-9.5.25 (2024-05-27)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7209">#7209</a>: Tags plugin crashing on numeric tags</li> </ul> <p>mkdocs-material-9.5.24+insiders-4.53.10 (2024-05-20)</p> <ul> <li>Fixed projects plugin crashing in serve mode when disabled</li> <li>Fixed projects plugin crashing when building nested projects</li> </ul> <p>mkdocs-material-9.5.24+insiders-4.53.9 (2024-05-20)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7191">#7191</a>: Tags listings not rendering when toc_depth is changed</li> </ul> <p>mkdocs-material-9.5.24 (2024-05-20)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7187">#7187</a>: Version selector title rendering issue</li> </ul> <p>mkdocs-material-9.5.23 (2024-05-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7183">#7183</a>: Edge case in anchor navigation when using instant navigation</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/6436">#6436</a>: Version selector not showing version alias</li> </ul> <p>mkdocs-material-9.5.22 (2024-05-12)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7170">#7170</a>: Copy button adds empty lines for line spans (9.5.18 regression)</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7160">#7160</a>: Version switching doesn't stay on page (9.5.5 regression)</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/5619">#5619</a>: Links in Mermaid.js diagrams not discernible</li> </ul> <p>mkdocs-material-9.5.21 (2024-05-03)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7133">#7133</a>: Ensure latest version of Mermaid.js is used</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7125">#7125</a>: Added warning for dotfiles in info plugin</li> </ul> <p>mkdocs-material-9.5.20 (2024-04-29)</p> <ul> <li>Fixed deprecation warning in privacy plugin (9.5.19 regression)</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7119">#7119</a>: Tags plugin emits deprecation warning (9.5.19 regression)</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7118">#7118</a>: Social plugin crashes if fonts are disabled (9.5.19 regression)</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7085">#7085</a>: Social plugin crashes on Windows when downloading fonts</li> </ul> <p>mkdocs-material-9.5.19+insiders-4.53.8 (2024-04-26)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7052">#7052</a>: Preview extension automatically including all pages</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7051">#7051</a>: Instant previews mounting on footnote references</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/5165">#5165</a>: Improved tooltips not mounting in sidebar for typeset plugin</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/c8ee11ff2b5d71e65aafed187a868afd4eb7a3a2"><code>c8ee11f</code></a> Prepare 9.5.25 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0ee1110643420e9a6c7357408c2e61d23457746a"><code>0ee1110</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/09f817d1541bd20cd721dacf224547a44aebce2e"><code>09f817d</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/86d3729a629079a249320b5ecec27b5eee88ab7a"><code>86d3729</code></a> Created new and better Insiders documentation (<a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7210">#7210</a>)</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1b346eb57b2871eca8f5e78444cfc83d35ab2a2e"><code>1b346eb</code></a> Fixed tags plugin crashing on numeric tags</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/05af8988c871e97a4dcd3209e22de4d7901d1e50"><code>05af898</code></a> Added --force-reinstall to insiders upgrade instructions (<a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7203">#7203</a>)</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/7368c7f759e6163f7cce9af15d0b0d7bfc7a1d52"><code>7368c7f</code></a> Updated Insiders changelog</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/e8478d921a8521b17f82e9d7f9540588e5b5ef40"><code>e8478d9</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/d0be598532c4a559f26c09741d09d942fa3418e0"><code>d0be598</code></a> Updated Insiders changelog</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/721eefb076981600df21b47909618b644de34e3d"><code>721eefb</code></a> Updated Insiders changelog</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.20...9.5.25">compare view</a></li> </ul> </details> <br /> Updates `mkdocstrings[python]` from 0.25.0 to 0.25.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mkdocstrings/mkdocstrings/releases">mkdocstrings[python]'s releases</a>.</em></p> <blockquote> <h2>0.25.1</h2> <h2><a href="https://github.com/mkdocstrings/mkdocstrings/releases/tag/0.25.1">0.25.1</a> - 2024-05-05</h2> <p><!-- raw HTML omitted --><a href="https://github.com/mkdocstrings/mkdocstrings/compare/0.25.0...0.25.1">Compare with 0.25.0</a><!-- raw HTML omitted --></p> <h3>Bug Fixes</h3> <ul> <li>Always descend into sub-headings when re-applying their label (<a href="https://github.com/mkdocstrings/mkdocstrings/commit/cb86e08bbc5e8057393aa1cd7ca29bc2b40ab5eb">cb86e08</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/python/issues/158">Issue-mkdocstrings/python-158</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md">mkdocstrings[python]'s changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/mkdocstrings/mkdocstrings/releases/tag/0.25.1">0.25.1</a> - 2024-05-05</h2> <p><!-- raw HTML omitted --><a href="https://github.com/mkdocstrings/mkdocstrings/compare/0.25.0...0.25.1">Compare with 0.25.0</a><!-- raw HTML omitted --></p> <h3>Bug Fixes</h3> <ul> <li>Always descend into sub-headings when re-applying their label (<a href="https://github.com/mkdocstrings/mkdocstrings/commit/cb86e08bbc5e8057393aa1cd7ca29bc2b40ab5eb">cb86e08</a> by Timothée Mazzucotelli). <a href="https://redirect.github.com/mkdocstrings/python/issues/158">Issue-mkdocstrings/python-158</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mkdocstrings/mkdocstrings/commit/e135869681dc712a3721a7753c9825b8c040bb83"><code>e135869</code></a> chore: Prepare release 0.25.1</li> <li><a href="https://github.com/mkdocstrings/mkdocstrings/commit/cb86e08bbc5e8057393aa1cd7ca29bc2b40ab5eb"><code>cb86e08</code></a> fix: Always descend into sub-headings when re-applying their label</li> <li><a href="https://github.com/mkdocstrings/mkdocstrings/commit/a86ca7d24a57b1217ee9d21c96d133ef31dcbd62"><code>a86ca7d</code></a> docs: Customize parameters color in ToC</li> <li><a href="https://github.com/mkdocstrings/mkdocstrings/commit/bc25b6a00cb1515f0dc8c433ae595092fcddfba8"><code>bc25b6a</code></a> docs: Remove requirements link in readme</li> <li>See full diff in <a href="https://github.com/mkdocstrings/mkdocstrings/compare/0.25.0...0.25.1">compare view</a></li> </ul> </details> <br /> Updates `frequenz-repo-config[lib]` from 0.9.1 to 0.9.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/frequenz-floss/frequenz-repo-config-python/releases">frequenz-repo-config[lib]'s releases</a>.</em></p> <blockquote> <h2>v0.9.2</h2> <h1>Frequenz Repository Configuration Release Notes</h1> <h2>Bug Fixes</h2> <ul> <li> <p>Pin <code>sybil</code> to < 6.1</p> <p>Sybil 6.1.0 fixes a bug which we thought it was proper behavior, so upgrading to it would break our tests.</p> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/frequenz-floss/frequenz-repo-config-python/compare/v0.9.1...v0.9.2">https://github.com/frequenz-floss/frequenz-repo-config-python/compare/v0.9.1...v0.9.2</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/6648093a43df498c16dbb7494cf6e5a6d2f35a74"><code>6648093</code></a> Update release notes</li> <li><a href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/38a9dcc75b5801fa78c9a644ac3676cd99e4caaa"><code>38a9dcc</code></a> Pin sybil to < 6.1</li> <li><a href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/409ed646c3e7eb608c22d71bf83494b36857701c"><code>409ed64</code></a> Clear release notes</li> <li>See full diff in <a href="https://github.com/frequenz-floss/frequenz-repo-config-python/compare/v0.9.1...v0.9.2">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.1.0 to 3.2.2 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/769ffd20bbf321a6cf23f5e7221a0b8221f51482"><code>769ffd2</code></a> Bump pylint to 3.2.2, update changelog (<a href="https://redirect.github.com/pylint-dev/pylint/issues/9658">#9658</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/98c5af9bdf31a4b5291c65d3b0d5cdbb19a7f082"><code>98c5af9</code></a> Fix false-positive with contextmanager missing cleanup (<a href="https://redirect.github.com/pylint-dev/pylint/issues/9654">#9654</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/9657">#9657</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/9a9db8fa78d9523cff0f6ff0769ed4f7a4a85701"><code>9a9db8f</code></a> Update astroid to 3.2.2 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/9655">#9655</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/9656">#9656</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/9223172074c4ca2bb5bff3b2c5a40190cc527fcf"><code>9223172</code></a> Bump pylint to 3.2.1, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/926547bbbfcedd77886ec1f73ae1463daac2fa7f"><code>926547b</code></a> [trailing-comma-tuple] Fix enabling with message control locally when disable...</li> <li><a href="https://github.com/pylint-dev/pylint/commit/14986757c97862e59a43f787b72a1205d7f1dbf0"><code>1498675</code></a> Fix linterstats.get_module_message_count() (<a href="https://redirect.github.com/pylint-dev/pylint/issues/9146">#9146</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/9648">#9648</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/aed496ad99caf1a08dc32bd17eea0a7bac839a1b"><code>aed496a</code></a> Fix FP for <code>possibly-used-before-assignment</code> with <code>assert_never()</code> (<a href="https://redirect.github.com/pylint-dev/pylint/issues/9645">#9645</a>) (#...</li> <li><a href="https://github.com/pylint-dev/pylint/commit/9dae97544b1524c0a130435766b56c9bbd23ffe9"><code>9dae975</code></a> [Backport maintenance/3.2.x] Add <code>--prefer-stubs=y</code> option (<a href="https://redirect.github.com/pylint-dev/pylint/issues/9646">#9646</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/a03ceae2745439bd0c907cd894dac973fbfb8efe"><code>a03ceae</code></a> Add <code>--prefer-stubs=y</code> option (<a href="https://redirect.github.com/pylint-dev/pylint/issues/9632">#9632</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/b2ea3168a30fb269b6807fcd7d86f2ab0348f699"><code>b2ea316</code></a> [Backport maintenance/3.2.x] Don't emit incorrect-variance for type parameter...</li> <li>Additional commits viewable in <a href="https://github.com/pylint-dev/pylint/compare/v3.1.0...v3.2.2">compare view</a></li> </ul> </details> <br /> Updates `pytest` from 8.2.0 to 8.2.1 <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.2.1</h2> <h1>pytest 8.2.1 (2024-05-19)</h1> <h2>Improvements</h2> <ul> <li><a href="https://redirect.github.com/pytest-dev/pytest/issues/12334">#12334</a>: Support for Python 3.13 (beta1 at the time of writing).</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://redirect.github.com/pytest-dev/pytest/issues/12120">#12120</a>: Fix [PermissionError]{.title-ref} crashes arising from directories which are not selected on the command-line.</li> <li><a href="https://redirect.github.com/pytest-dev/pytest/issues/12191">#12191</a>: Keyboard interrupts and system exits are now properly handled during the test collection.</li> <li><a href="https://redirect.github.com/pytest-dev/pytest/issues/12300">#12300</a>: Fixed handling of 'Function not implemented' error under squashfuse_ll, which is a different way to say that the mountpoint is read-only.</li> <li><a href="https://redirect.github.com/pytest-dev/pytest/issues/12308">#12308</a>: Fix a regression in pytest 8.2.0 where the permissions of automatically-created <code>.pytest_cache</code> directories became <code>rwx------</code> instead of the expected <code>rwxr-xr-x</code>.</li> </ul> <h2>Trivial/Internal Changes</h2> <ul> <li><a href="https://redirect.github.com/pytest-dev/pytest/issues/12333">#12333</a>: pytest releases are now attested using the recent <a href="https://github.blog/2024-05-02-introducing-artifact-attestations-now-in-public-beta/">Artifact Attestation</a> support from GitHub, allowing users to verify the provenance of pytest's sdist and wheel artifacts.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest/commit/66ff8dffdf9eee9b3dd6686de34542c49ff80dcd"><code>66ff8df</code></a> Prepare release version 8.2.1</li> <li><a href="https://github.com/pytest-dev/pytest/commit/3ffcfd122cf4674ac45f6233d9b50be6c49abeea"><code>3ffcfd1</code></a> Merge pull request <a href="https://redirect.github.com/pytest-dev/pytest/issues/12340">#12340</a> from pytest-dev/backport-12334-to-8.2.x</li> <li><a href="https://github.com/pytest-dev/pytest/commit/0b28313b46a04de08bddc18896b3e61312a0c5b3"><code>0b28313</code></a> [8.2.x] Add Python 3.13 (beta) support</li> <li><a href="https://github.com/pytest-dev/pytest/commit/f3dd93ad8d62eb0a260d3090f31be82aafbcff13"><code>f3dd93a</code></a> [8.2.x] Attest package provenance (<a href="https://redirect.github.com/pytest-dev/pytest/issues/12335">#12335</a>)</li> <li><a href="https://github.com/pytest-dev/pytest/commit/bb5a1257b0aafe5932377fa8e9fd92ab39418ac7"><code>bb5a125</code></a> [8.2.x] Spelling (<a href="https://redirect.github.com/pytest-dev/pytest/issues/12331">#12331</a>)</li> <li><a href="https://github.com/pytest-dev/pytest/commit/f179bf252fe2c1d0afce64b4b4bab4449e366e84"><code>f179bf2</code></a> Merge pull request <a href="https://redirect.github.com/pytest-dev/pytest/issues/12327">#12327</a> from pytest-dev/backport-12325-to-8.2.x</li> <li><a href="https://github.com/pytest-dev/pytest/commit/2b671b5f9208650e8e42e07782d95477cc41f42a"><code>2b671b5</code></a> [8.2.x] cacheprovider: fix <code>.pytest_cache</code> not being world-readable</li> <li><a href="https://github.com/pytest-dev/pytest/commit/65ab7cb96c95f83e922f21bb4a8a44eda2b79707"><code>65ab7cb</code></a> Merge pull request <a href="https://redirect.github.com/pytest-dev/pytest/issues/12324">#12324</a> from pytest-dev/backport-12320-to-8.2.x</li> <li><a href="https://github.com/pytest-dev/pytest/commit/4d5fb7d71ccc069e2f882bee0e4253eaf484d2a9"><code>4d5fb7d</code></a> Merge pull request <a href="https://redirect.github.com/pytest-dev/pytest/issues/12319">#12319</a> from pytest-dev/backport-12311-to-8.2.x</li> <li><a href="https://github.com/pytest-dev/pytest/commit/cbe5996cc684b00397494d9590f3179de232c3ee"><code>cbe5996</code></a> [8.2.x] changelog: document unittest 8.2 change as breaking</li> <li>Additional commits viewable in <a href="https://github.com/pytest-dev/pytest/compare/8.2.0...8.2.1">compare view</a></li> </ul> </details> <br /> Updates `frequenz-repo-config[extra-lint-examples]` from 0.9.1 to 0.9.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/frequenz-floss/frequenz-repo-config-python/releases">frequenz-repo-config[extra-lint-examples]'s releases</a>.</em></p> <blockquote> <h2>v0.9.2</h2> <h1>Frequenz Repository Configuration Release Notes</h1> <h2>Bug Fixes</h2> <ul> <li> <p>Pin <code>sybil</code> to < 6.1</p> <p>Sybil 6.1.0 fixes a bug which we thought it was proper behavior, so upgrading to it would break our tests.</p> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/frequenz-floss/frequenz-repo-config-python/compare/v0.9.1...v0.9.2">https://github.com/frequenz-floss/frequenz-repo-config-python/compare/v0.9.1...v0.9.2</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/6648093a43df498c16dbb7494cf6e5a6d2f35a74"><code>6648093</code></a> Update release notes</li> <li><a href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/38a9dcc75b5801fa78c9a644ac3676cd99e4caaa"><code>38a9dcc</code></a> Pin sybil to < 6.1</li> <li><a href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/409ed646c3e7eb608c22d71bf83494b36857701c"><code>409ed64</code></a> Clear release notes</li> <li>See full diff in <a href="https://github.com/frequenz-floss/frequenz-repo-config-python/compare/v0.9.1...v0.9.2">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.23.6 to 0.23.7 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest-asyncio/releases">pytest-asyncio's releases</a>.</em></p> <blockquote> <h2>pytest-asyncio 0.23.7</h2> <h1>0.23.7 (2024-05-19)</h1> <ul> <li>Silence deprecation warnings about unclosed event loops that occurred with certain CPython patch releases <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/817">#817</a></li> </ul> <h2>Known issues</h2> <p>As of v0.23, pytest-asyncio attaches an asyncio event loop to each item of the test suite (i.e. session, packages, modules, classes, functions) and allows tests to be run in those loops when marked accordingly. Pytest-asyncio currently assumes that async fixture scope is correlated with the new event loop scope. This prevents fixtures from being evaluated independently from the event loop scope and breaks some existing test suites (see <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/706">#706</a>). For example, a test suite may require all fixtures and tests to run in the same event loop, but have async fixtures that are set up and torn down for each module. If you're affected by this issue, please continue using the v0.21 release, until it is resolved.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/eb63d5ad0ca21041726ada3d5c00211d36418a9b"><code>eb63d5a</code></a> docs: Prepared for release of v0.23.7.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/da04a7a645bdd46d0533c727e85cf2c0e13c7def"><code>da04a7a</code></a> Build(deps): Bump exceptiongroup in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/00c667ad80571fc8e937f4422267b135f55ec6e6"><code>00c667a</code></a> Build(deps): Bump pytest from 8.1.1 to 8.2.0 in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/3bd9cd885b5cc78ce4a73a03c878ac93e0a1840f"><code>3bd9cd8</code></a> [docs] Add changelog entry.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/15544f0ee29152086b14e63cb040836f33b0b416"><code>15544f0</code></a> Revert GitHub Actions and Tox changes.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/6316b285c1ee8f6d300916e531ff1d320bec8d6b"><code>6316b28</code></a> Deduplicate simplefilter snippet.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/3ffdfc5607a112a9a2cb933a6af044eaf47e0227"><code>3ffdfc5</code></a> asyncio.run(port_afinalizer())</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/0107fd7ae7e42d399b5be9af6f3ee4427e16ea7d"><code>0107fd7</code></a> Remove extra space.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/3bf700a80cb12354fbe0a9295be9fbd4317c8d8f"><code>3bf700a</code></a> Fix GH Action mapping.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/d15dc31f7459810af824b5e9e903f914140ceb2c"><code>d15dc31</code></a> Fix 3109/3108 typo.</li> <li>Additional commits viewable in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.23.6...v0.23.7">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>
- Loading branch information