Skip to content

Commit

Permalink
build(deps): bump the python group with 12 updates (#659)
Browse files Browse the repository at this point in the history
Bumps the python group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [fastapi](https://github.com/fastapi/fastapi) | `0.111.1` | `0.112.0`
|
| [uvicorn](https://github.com/encode/uvicorn) | `0.30.3` | `0.30.5` |
| [redis](https://github.com/redis/redis-py) | `5.0.7` | `5.0.8` |
|
[google-cloud-compute](https://github.com/googleapis/google-cloud-python)
| `1.19.1` | `1.19.2` |
| [boto3](https://github.com/boto/boto3) | `1.34.146` | `1.34.150` |
| [botocore](https://github.com/boto/botocore) | `1.34.150` | `1.34.154`
|
| [boto3-stubs](https://github.com/youtype/mypy_boto3_builder) |
`1.34.150` | `1.34.154` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) |
`9.5.30` | `9.5.31` |
| [hypothesis](https://github.com/HypothesisWorks/hypothesis) |
`6.108.5` | `6.108.9` |
| [pyright](https://github.com/RobertCraigie/pyright-python) | `1.1.373`
| `1.1.374` |
| [black](https://github.com/psf/black) | `24.4.2` | `24.8.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.5.5` | `0.5.6` |

Updates `fastapi` from 0.111.1 to 0.112.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/fastapi/fastapi/releases">fastapi's
releases</a>.</em></p>
<blockquote>
<h2>0.112.0</h2>
<h3>Breaking Changes</h3>
<ul>
<li>♻️ Add support for <code>pip install
&quot;fastapi[standard]&quot;</code> with standard dependencies and
<code>python -m fastapi</code>. PR <a
href="https://redirect.github.com/fastapi/fastapi/pull/11935">#11935</a>
by <a
href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li>
</ul>
<h4>Summary</h4>
<p>Install with:</p>
<pre lang="bash"><code>pip install &quot;fastapi[standard]&quot;
</code></pre>
<h4>Other Changes</h4>
<ul>
<li>This adds support for calling the CLI as:</li>
</ul>
<pre lang="bash"><code>python -m python
</code></pre>
<ul>
<li>And it upgrades <code>fastapi-cli[standard] &gt;=0.0.5</code>.</li>
</ul>
<h4>Technical Details</h4>
<p>Before this, <code>fastapi</code> would include the standard
dependencies, with Uvicorn and the <code>fastapi-cli</code>, etc.</p>
<p>And <code>fastapi-slim</code> would not include those standard
dependencies.</p>
<p>Now <code>fastapi</code> doesn't include those standard dependencies
unless you install with <code>pip install
&quot;fastapi[standard]&quot;</code>.</p>
<p>Before, you would install <code>pip install fastapi</code>, now you
should include the <code>standard</code> optional dependencies (unless
you want to exclude one of those): <code>pip install
&quot;fastapi[standard]&quot;</code>.</p>
<p>This change is because having the standard optional dependencies
installed by default was being inconvenient to several users, and having
to install instead <code>fastapi-slim</code> was not being a feasible
solution.</p>
<p>Discussed here: <a
href="https://redirect.github.com/fastapi/fastapi/pull/11522">#11522</a>
and here: <a
href="https://github.com/fastapi/fastapi/discussions/11525">#11525</a></p>
<h3>Docs</h3>
<ul>
<li>✏️ Fix typos in docs. PR <a
href="https://redirect.github.com/fastapi/fastapi/pull/11926">#11926</a>
by <a
href="https://github.com/jianghuyiyuan"><code>@​jianghuyiyuan</code></a>.</li>
<li>📝 Tweak management docs. PR <a
href="https://redirect.github.com/fastapi/fastapi/pull/11918">#11918</a>
by <a
href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li>
<li>🚚 Rename GitHub links from tiangolo/fastapi to fastapi/fastapi. PR
<a
href="https://redirect.github.com/fastapi/fastapi/pull/11913">#11913</a>
by <a
href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li>
<li>📝 Add docs about FastAPI team and project management. PR <a
href="https://redirect.github.com/tiangolo/fastapi/pull/11908">#11908</a>
by <a
href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li>
<li>📝 Re-structure docs main menu. PR <a
href="https://redirect.github.com/tiangolo/fastapi/pull/11904">#11904</a>
by <a
href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li>
<li>📝 Update Speakeasy URL. PR <a
href="https://redirect.github.com/tiangolo/fastapi/pull/11871">#11871</a>
by <a
href="https://github.com/ndimares"><code>@​ndimares</code></a>.</li>
</ul>
<h3>Translations</h3>
<ul>
<li>🌐 Update Portuguese translation for
<code>docs/pt/docs/alternatives.md</code>. PR <a
href="https://redirect.github.com/fastapi/fastapi/pull/11931">#11931</a>
by <a href="https://github.com/ceb10n"><code>@​ceb10n</code></a>.</li>
<li>🌐 Add Russian translation for
<code>docs/ru/docs/tutorial/dependencies/sub-dependencies.md</code>. PR
<a
href="https://redirect.github.com/tiangolo/fastapi/pull/10515">#10515</a>
by <a
href="https://github.com/AlertRED"><code>@​AlertRED</code></a>.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/fastapi/fastapi/commit/b2e233867cdd255ac7cb86878d643d953c78f418"><code>b2e2338</code></a>
🔖 Release version 0.112.0</li>
<li><a
href="https://github.com/fastapi/fastapi/commit/003d45428f4da83f730c736b24082a34e0fc7403"><code>003d454</code></a>
📝 Update release notes</li>
<li><a
href="https://github.com/fastapi/fastapi/commit/450bff65f48a342473809336c1ddd2299838c702"><code>450bff6</code></a>
📝 Update release notes</li>
<li><a
href="https://github.com/fastapi/fastapi/commit/a25c92ceb9ab5be49901443d7184c149797192df"><code>a25c92c</code></a>
♻️ Add support for <code>pip install
&quot;fastapi[standard]&quot;</code> with standard dependenci...</li>
<li><a
href="https://github.com/fastapi/fastapi/commit/3990a0a510004c3ed72e9669c0623a9d50f703ed"><code>3990a0a</code></a>
📝 Update release notes</li>
<li><a
href="https://github.com/fastapi/fastapi/commit/1f7dcc58defe54aa2b391a6837c1e9f2ca2e30d4"><code>1f7dcc5</code></a>
🌐 Update Portuguese translation for
<code>docs/pt/docs/alternatives.md</code> (<a
href="https://redirect.github.com/fastapi/fastapi/issues/11931">#11931</a>)</li>
<li><a
href="https://github.com/fastapi/fastapi/commit/12a4476c3d1cd9500d350850ec4d68366a8d73a9"><code>12a4476</code></a>
📝 Update release notes</li>
<li><a
href="https://github.com/fastapi/fastapi/commit/efb4a077bebf5e8cd27d1d2de076f64fac26b31f"><code>efb4a07</code></a>
🔧 Update sponsors: add liblab (<a
href="https://redirect.github.com/fastapi/fastapi/issues/11934">#11934</a>)</li>
<li><a
href="https://github.com/fastapi/fastapi/commit/9d41d6e8a82affdb7e40ce16800f41eec61397ff"><code>9d41d6e</code></a>
📝 Update release notes</li>
<li><a
href="https://github.com/fastapi/fastapi/commit/643a87cc848d9daf0d44b460708f42a202c29652"><code>643a87c</code></a>
👷 Update GitHub Action label-approved permissions (<a
href="https://redirect.github.com/fastapi/fastapi/issues/11933">#11933</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/fastapi/fastapi/compare/0.111.1...0.112.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `uvicorn` from 0.30.3 to 0.30.5
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/encode/uvicorn/releases">uvicorn's
releases</a>.</em></p>
<blockquote>
<h2>Version 0.30.5</h2>
<h3>Fixed</h3>
<ul>
<li>Don't close connection before receiving body on H11 (<a
href="https://redirect.github.com/encode/uvicorn/issues/2408">#2408</a>)</li>
</ul>
<hr />
<p><strong>Full Changelog</strong>: <a
href="https://github.com/encode/uvicorn/compare/0.30.4...0.30.5">https://github.com/encode/uvicorn/compare/0.30.4...0.30.5</a></p>
<h2>Version 0.30.4</h2>
<h3>Fixed</h3>
<ul>
<li>Close connection when <code>h11</code> sets client state to
<code>MUST_CLOSE</code> <a
href="https://redirect.github.com/encode/uvicorn/pull/2375">#2375</a></li>
</ul>
<hr />
<p><strong>Full Changelog</strong>: <a
href="https://github.com/encode/uvicorn/compare/0.30.3...0.30.4">https://github.com/encode/uvicorn/compare/0.30.3...0.30.4</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/encode/uvicorn/blob/master/CHANGELOG.md">uvicorn's
changelog</a>.</em></p>
<blockquote>
<h2>0.30.5 (2024-08-02)</h2>
<h3>Fixed</h3>
<ul>
<li>Don't close connection before receiving body on H11 (<a
href="https://redirect.github.com/encode/uvicorn/issues/2408">#2408</a>)</li>
</ul>
<h2>0.30.4 (2024-07-31)</h2>
<h3>Fixed</h3>
<ul>
<li>Close connection when <code>h11</code> sets client state to
<code>MUST_CLOSE</code> (<a
href="https://redirect.github.com/encode/uvicorn/issues/2375">#2375</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/encode/uvicorn/commit/ff54b029b15adc5259cfbbfa2749778179c48d37"><code>ff54b02</code></a>
Version 0.30.5 (<a
href="https://redirect.github.com/encode/uvicorn/issues/2409">#2409</a>)</li>
<li><a
href="https://github.com/encode/uvicorn/commit/2f25107af2a1bd87180009f98c7186d49ca5152e"><code>2f25107</code></a>
Fix 0.30.4 issue with connection close header (<a
href="https://redirect.github.com/encode/uvicorn/issues/2408">#2408</a>)</li>
<li><a
href="https://github.com/encode/uvicorn/commit/8efa41c7da41f26c893204ff3fd65c0d06aa74ce"><code>8efa41c</code></a>
Version 0.30.4 (<a
href="https://redirect.github.com/encode/uvicorn/issues/2403">#2403</a>)</li>
<li><a
href="https://github.com/encode/uvicorn/commit/b492349d269920acff49b8c04ace392425599729"><code>b492349</code></a>
Add <code>pragma: full coverage</code> to <code>Process.is_alive</code>
(<a
href="https://redirect.github.com/encode/uvicorn/issues/2402">#2402</a>)</li>
<li><a
href="https://github.com/encode/uvicorn/commit/ce999aa6346787de0852f760ce4c665f539e1c10"><code>ce999aa</code></a>
close request connection if h11 sets client state as MUST_CLOSE (<a
href="https://redirect.github.com/encode/uvicorn/issues/2375">#2375</a>)</li>
<li><a
href="https://github.com/encode/uvicorn/commit/d277c2587999bb84840e6d3296ed0e249471318e"><code>d277c25</code></a>
Add Marcelo Trylesinski as maintainer (<a
href="https://redirect.github.com/encode/uvicorn/issues/2398">#2398</a>)</li>
<li>See full diff in <a
href="https://github.com/encode/uvicorn/compare/0.30.3...0.30.5">compare
view</a></li>
</ul>
</details>
<br />

Updates `redis` from 5.0.7 to 5.0.8
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/redis/redis-py/releases">redis's
releases</a>.</em></p>
<blockquote>
<h2>5.0.8</h2>
<h1>Changes</h1>
<ul>
<li>Resolve some docs warnings (<a
href="https://redirect.github.com/redis/redis-py/issues/3322">#3322</a>)</li>
<li>Add missing type hints for retry.py (<a
href="https://redirect.github.com/redis/redis-py/issues/3250">#3250</a>)</li>
</ul>
<h2>🔥 Breaking Changes</h2>
<ul>
<li>Timeseries insertion filters for close samples (<a
href="https://redirect.github.com/redis/redis-py/issues/3228">#3228</a>)</li>
</ul>
<h2>🚀 New Features</h2>
<ul>
<li>Hash field expiration commands (<a
href="https://redirect.github.com/redis/redis-py/issues/3218">#3218</a>)</li>
<li>Support the MAXAGE option for CLIENT KILL (<a
href="https://redirect.github.com/redis/redis-py/issues/3187">#3187</a>)</li>
<li>Support NOVALUES parameter for HSCAN (<a
href="https://redirect.github.com/redis/redis-py/issues/3157">#3157</a>)</li>
<li>Document XREAD of last message (+) (<a
href="https://redirect.github.com/redis/redis-py/issues/3187">#3187</a>)</li>
<li>Support missing/empty values in search (<a
href="https://redirect.github.com/redis/redis-py/issues/3231">#3231</a>)</li>
<li>Timeseries insertion filters for close samples (<a
href="https://redirect.github.com/redis/redis-py/issues/3228">#3228</a>)</li>
</ul>
<h2>🧰 Maintenance</h2>
<ul>
<li>Add extra tests for GEO search (<a
href="https://redirect.github.com/redis/redis-py/issues/3244">#3244</a>)</li>
<li>Test special characters escaping in search (<a
href="https://redirect.github.com/redis/redis-py/issues/3276">#3276</a>)</li>
</ul>
<h2>🐛 Bug Fixes</h2>
<ul>
<li>Decode search results at field level (<a
href="https://redirect.github.com/redis/redis-py/issues/3309">#3309</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/redis/redis-py/commit/6a2a6368e6a76d0ab2eb7236d4a69ce13730d119"><code>6a2a636</code></a>
Decode search results at field level (<a
href="https://redirect.github.com/redis/redis-py/issues/3309">#3309</a>)</li>
<li><a
href="https://github.com/redis/redis-py/commit/e7ef54a0aeb55accc14b72f4faef5fc2e4c9a780"><code>e7ef54a</code></a>
Fix bug: client side caching causes unexpected disconnections (async
version)...</li>
<li><a
href="https://github.com/redis/redis-py/commit/0cd0c5dd43cbf0e53fdeae54a6dfa74642c5d1de"><code>0cd0c5d</code></a>
Format connection errors in the same way everywhere (<a
href="https://redirect.github.com/redis/redis-py/issues/3305">#3305</a>)</li>
<li><a
href="https://github.com/redis/redis-py/commit/6fedfefb7d22f90ab91a859aee328493192e4deb"><code>6fedfef</code></a>
Prepare for Redis 7.4 RC2 (<a
href="https://redirect.github.com/redis/redis-py/issues/3303">#3303</a>)</li>
<li><a
href="https://github.com/redis/redis-py/commit/ed1680ff42f7f6099c9fb2f478e551638a303985"><code>ed1680f</code></a>
Add details to the asyncio connection error message (<a
href="https://redirect.github.com/redis/redis-py/issues/3211">#3211</a>)</li>
<li><a
href="https://github.com/redis/redis-py/commit/511fda08ad22b87883500ad85bf18b0ab46844e4"><code>511fda0</code></a>
Add missing type hints for <code>retry.py</code> (<a
href="https://redirect.github.com/redis/redis-py/issues/3250">#3250</a>)</li>
<li><a
href="https://github.com/redis/redis-py/commit/c1a6ff7d60a424e0166741a084bdc41237671acd"><code>c1a6ff7</code></a>
Bump rojopolis/spellcheck-github-actions from 0.37.0 to 0.38.0 (<a
href="https://redirect.github.com/redis/redis-py/issues/3301">#3301</a>)</li>
<li><a
href="https://github.com/redis/redis-py/commit/338cbfdeb8d9638c7d6d2b70ded08dce35413601"><code>338cbfd</code></a>
Re-enable Graph tests (<a
href="https://redirect.github.com/redis/redis-py/issues/3287">#3287</a>)</li>
<li><a
href="https://github.com/redis/redis-py/commit/532bc022d36459a87c5d12084201e031745a4164"><code>532bc02</code></a>
Do not restrict pytest dependencies versions (<a
href="https://redirect.github.com/redis/redis-py/issues/3286">#3286</a>)</li>
<li><a
href="https://github.com/redis/redis-py/commit/b6a0f962b2d663a7b62d69b3d956b855689c8cc5"><code>b6a0f96</code></a>
Add CODECOV token to CI (<a
href="https://redirect.github.com/redis/redis-py/issues/3285">#3285</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/redis/redis-py/compare/v5.0.7...v5.0.8">compare
view</a></li>
</ul>
</details>
<br />

Updates `google-cloud-compute` from 1.19.1 to 1.19.2
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/googleapis/google-cloud-python/commit/c4bedbfc360c0e2d0689012b856422f68f7935ec"><code>c4bedbf</code></a>
chore: release main (<a
href="https://redirect.github.com/googleapis/google-cloud-python/issues/12962">#12962</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-python/commit/52db52ea05c6883b07956d323fdd1d3029806374"><code>52db52e</code></a>
chore: [Many APIs] Update gapic-generator-python to v1.18.4 (<a
href="https://redirect.github.com/googleapis/google-cloud-python/issues/12958">#12958</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-python/commit/4adddf4d90634e454ee006774bfc631fc12c1700"><code>4adddf4</code></a>
chore: [Many APIs] Update gapic-generator-python to v1.18.4 (<a
href="https://redirect.github.com/googleapis/google-cloud-python/issues/12956">#12956</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-python/commit/5feea7ea9a5c20c13f57c5d51b4e0cedeeffa709"><code>5feea7e</code></a>
feat: [grafeas] A new field <code>version</code> is added to message
`.grafeas.v1.Compli...</li>
<li><a
href="https://github.com/googleapis/google-cloud-python/commit/895cbec764f18fd5b775e0544d1eb0ac9506acab"><code>895cbec</code></a>
docs: [google-maps-fleetengine-delivery] document that
delivery_vehicle.type ...</li>
<li><a
href="https://github.com/googleapis/google-cloud-python/commit/11c06293cef3391f5fb433d5de26c066943082d0"><code>11c0629</code></a>
chore: [Many APIs] Update gapic-generator-python to v1.18.4 (<a
href="https://redirect.github.com/googleapis/google-cloud-python/issues/12957">#12957</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-python/commit/9cdac77b20a8c9720aa668639e3ca6d1e759a2de"><code>9cdac77</code></a>
chore: [Many APIs] Update gapic-generator-python to v1.18.4 (<a
href="https://redirect.github.com/googleapis/google-cloud-python/issues/12955">#12955</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-python/commit/42c4d04ee1362ba0ed0f1b6a134ac8e409875b63"><code>42c4d04</code></a>
chore: [Many APIs] Update gapic-generator-python to v1.18.4 (<a
href="https://redirect.github.com/googleapis/google-cloud-python/issues/12954">#12954</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-python/commit/d95af77248f0935a5fe3dba1fccc75124c8b1451"><code>d95af77</code></a>
chore: [Many APIs] Update gapic-generator-python to v1.18.4 (<a
href="https://redirect.github.com/googleapis/google-cloud-python/issues/12953">#12953</a>)</li>
<li><a
href="https://github.com/googleapis/google-cloud-python/commit/189922a0fbe969dedc7b0f78a62ccb2e5d3f29a9"><code>189922a</code></a>
chore: [Many APIs] Update gapic-generator-python to v1.18.4 (<a
href="https://redirect.github.com/googleapis/google-cloud-python/issues/12952">#12952</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/googleapis/google-cloud-python/compare/google-cloud-compute-v1.19.1...google-cloud-compute-v1.19.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `boto3` from 1.34.146 to 1.34.150
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/boto/boto3/commit/0f53991aac7e0ced8544082a4b7478050d8db6f5"><code>0f53991</code></a>
Merge branch 'release-1.34.150'</li>
<li><a
href="https://github.com/boto/boto3/commit/a1cbd942803130350807f31aaf87242846c0957e"><code>a1cbd94</code></a>
Bumping version to 1.34.150</li>
<li><a
href="https://github.com/boto/boto3/commit/ceb433591959c4d7358a4ca42a6410e457ba7a8f"><code>ceb4335</code></a>
Add changelog entries from botocore</li>
<li><a
href="https://github.com/boto/boto3/commit/12bdc6e5134f3d6fc9161c5d5854c144cb1b08f6"><code>12bdc6e</code></a>
Update setuptools (<a
href="https://redirect.github.com/boto/boto3/issues/4219">#4219</a>)</li>
<li><a
href="https://github.com/boto/boto3/commit/9dc3e487408c28482395e4c141ede87554509fbb"><code>9dc3e48</code></a>
Merge branch 'release-1.34.149'</li>
<li><a
href="https://github.com/boto/boto3/commit/330532cc44fe28ad614cbed66d14a153f1163e2d"><code>330532c</code></a>
Merge branch 'release-1.34.149' into develop</li>
<li><a
href="https://github.com/boto/boto3/commit/2448ec2731548b19563627a50e6393d30f81392d"><code>2448ec2</code></a>
Bumping version to 1.34.149</li>
<li><a
href="https://github.com/boto/boto3/commit/2a65fa9426d96e5e408e4f6c29b97efb393333fe"><code>2a65fa9</code></a>
Add changelog entries from botocore</li>
<li><a
href="https://github.com/boto/boto3/commit/4c0c448bf248e0db2bd974b6685c188d786436d4"><code>4c0c448</code></a>
Merge branch 'release-1.34.148'</li>
<li><a
href="https://github.com/boto/boto3/commit/88841838e5c7b1ff774a23acff52cc250ffec5c8"><code>8884183</code></a>
Merge branch 'release-1.34.148' into develop</li>
<li>Additional commits viewable in <a
href="https://github.com/boto/boto3/compare/1.34.146...1.34.150">compare
view</a></li>
</ul>
</details>
<br />

Updates `botocore` from 1.34.150 to 1.34.154
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/boto/botocore/blob/develop/CHANGELOG.rst">botocore's
changelog</a>.</em></p>
<blockquote>
<h1>1.34.154</h1>
<ul>
<li>api-change:<code>datazone</code>: This releases Data Product
feature. Data Products allow grouping data assets into cohesive,
self-contained units for ease of publishing for data producers, and ease
of finding and accessing for data consumers.</li>
<li>api-change:<code>ecr</code>: Released two new APIs along with
documentation updates. The GetAccountSetting API is used to view the
current basic scan type version setting for your registry, while the
PutAccountSetting API is used to update the basic scan type version for
your registry.</li>
<li>api-change:<code>kinesis-video-webrtc-storage</code>: Add
JoinStorageSessionAsViewer API</li>
<li>api-change:<code>pi</code>: Added a description for the Dimension
db.sql.tokenized_id on the DimensionGroup data type page.</li>
</ul>
<h1>1.34.153</h1>
<ul>
<li>api-change:<code>cloudwatch</code>: Add v2 smoke tests and smithy
smokeTests trait for SDK testing.</li>
<li>api-change:<code>kinesis</code>: Add v2 smoke tests and smithy
smokeTests trait for SDK testing.</li>
<li>api-change:<code>resiliencehub</code>: Customers are presented with
the grouping recommendations and can determine if the recommendations
are accurate and apply to their case. This feature simplifies onboarding
by organizing resources into appropriate AppComponents.</li>
<li>api-change:<code>route53</code>: Add v2 smoke tests and smithy
smokeTests trait for SDK testing.</li>
<li>api-change:<code>waf-regional</code>: Add v2 smoke tests and smithy
smokeTests trait for SDK testing.</li>
</ul>
<h1>1.34.152</h1>
<ul>
<li>api-change:<code>bedrock</code>: API and Documentation for Bedrock
Model Copy feature. This feature lets you share and copy a custom model
from one region to another or one account to another.</li>
<li>api-change:<code>controlcatalog</code>: AWS Control Tower provides
two new public APIs controlcatalog:ListControls and
controlcatalog:GetControl under controlcatalog service namespace, which
enable customers to programmatically retrieve control metadata of
available controls.</li>
<li>api-change:<code>controltower</code>: Updated Control Tower service
documentation for controlcatalog control ARN support with existing
Control Tower public APIs</li>
<li>api-change:<code>iam</code>: Add v2 smoke tests and smithy
smokeTests trait for SDK testing.</li>
<li>api-change:<code>memorydb</code>: Doc only update for changes to
deletion API.</li>
<li>api-change:<code>rds</code>: This release adds support for
specifying optional MinACU parameter in CreateDBShardGroup and
ModifyDBShardGroup API. DBShardGroup response will contain MinACU if
specified.</li>
<li>api-change:<code>sagemaker</code>: This release adds support for
Amazon EMR Serverless applications in SageMaker Studio for running data
processing jobs.</li>
<li>api-change:<code>ssm-quicksetup</code>: This release adds API
support for the QuickSetup feature of AWS Systems Manager</li>
<li>api-change:<code>support</code>: Doc only updates to
CaseDetails</li>
</ul>
<h1>1.34.151</h1>
<ul>
<li>api-change:<code>appstream</code>: Added support for Red Hat
Enterprise Linux 8 on Amazon AppStream 2.0</li>
<li>api-change:<code>autoscaling</code>: Increase the length limit for
VPCZoneIdentifier from 2047 to 5000</li>
<li>api-change:<code>codepipeline</code>: AWS CodePipeline V2 type
pipelines now support stage level conditions to enable development teams
to safely release changes that meet quality and compliance
requirements.</li>
<li>api-change:<code>elasticache</code>: Doc only update for changes to
deletion API.</li>
<li>api-change:<code>elb</code>: Add v2 smoke tests and smithy
smokeTests trait for SDK testing.</li>
<li>api-change:<code>events</code>: Add v2 smoke tests and smithy
smokeTests trait for SDK testing.</li>
<li>api-change:<code>lexv2-models</code>: This release adds new
capabilities to the AMAZON.QnAIntent: Custom prompting, Guardrails
integration and ExactResponse support for Bedrock Knowledge Base.</li>
<li>api-change:<code>logs</code>: Add v2 smoke tests and smithy
smokeTests trait for SDK testing.</li>
<li>api-change:<code>rolesanywhere</code>: IAM RolesAnywhere now
supports custom role session name on the CreateSession. This release
adds the acceptRoleSessionName option to a profile to control whether a
role session name will be accepted in a session request with a given
profile.</li>
<li>api-change:<code>tnb</code>: This release adds Network Service
Update, through which customers will be able to update their
instantiated networks to a new network package. See the documentation
for limitations. The release also enhances the Get network operation API
to return parameter overrides used during the operation.</li>
<li>api-change:<code>workspaces</code>: Removing multi-session as it
isn't supported for pools</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/boto/botocore/commit/94ce27efb72c6ed48e2275f88f258e9316ba6ab3"><code>94ce27e</code></a>
Merge branch 'release-1.34.154'</li>
<li><a
href="https://github.com/boto/botocore/commit/fa530df383a077d09b232368840b1174d703922f"><code>fa530df</code></a>
Bumping version to 1.34.154</li>
<li><a
href="https://github.com/boto/botocore/commit/5affdb7eb2162f830b651d28ed661980100b8bff"><code>5affdb7</code></a>
Update endpoints model</li>
<li><a
href="https://github.com/boto/botocore/commit/73e1d40480d80c56cf327e8be6f5bcc7f55965a7"><code>73e1d40</code></a>
Update to latest models</li>
<li><a
href="https://github.com/boto/botocore/commit/dae6c6adb5649f6221826c1e495438bceb4eeeff"><code>dae6c6a</code></a>
Merge branch 'release-1.34.153'</li>
<li><a
href="https://github.com/boto/botocore/commit/e538b86b1e3a6534e2ce292ff34c869816a004d4"><code>e538b86</code></a>
Merge branch 'release-1.34.153' into develop</li>
<li><a
href="https://github.com/boto/botocore/commit/7c016e1ef20c033604d1808f0f5901ee5fd5fb57"><code>7c016e1</code></a>
Bumping version to 1.34.153</li>
<li><a
href="https://github.com/boto/botocore/commit/eeee2ad9ecf5dfd0ce8cc72455f3dfd99cb5897f"><code>eeee2ad</code></a>
Update to latest models</li>
<li><a
href="https://github.com/boto/botocore/commit/19ce2f58608601c6dce3311045fec0461d7e484d"><code>19ce2f5</code></a>
Merge branch 'release-1.34.152'</li>
<li><a
href="https://github.com/boto/botocore/commit/e5b059e33f59aaccf5b1e8f0ada7cdb978beb3f6"><code>e5b059e</code></a>
Merge branch 'release-1.34.152' into develop</li>
<li>Additional commits viewable in <a
href="https://github.com/boto/botocore/compare/1.34.150...1.34.154">compare
view</a></li>
</ul>
</details>
<br />

Updates `boto3-stubs` from 1.34.150 to 1.34.154
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/youtype/mypy_boto3_builder/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `mkdocs-material` from 9.5.30 to 9.5.31
<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.31</h2>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7405">#7405</a>:
DockerHub missing images &gt; 9.5.27 due to change in Alpine/APK</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG">mkdocs-material's
changelog</a>.</em></p>
<blockquote>
<p>mkdocs-material-9.5.31+insiders-4.53.12 (2024-08-02)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7410">#7410</a>:
Instant previews jump on content tabs with anchor links</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7408">#7408</a>:
Instant previews jump on content tabs</li>
</ul>
<p>mkdocs-material-9.5.31 (2024-08-02)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7405">#7405</a>:
DockerHub missing images &gt; 9.5.27 due to change in Alpine/APK</li>
</ul>
<p>mkdocs-material-9.5.30 (2024-07-23)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7380">#7380</a>:
Navigation icons disappearing on hover in Safari</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7367">#7367</a>:
Blog readtime computation includes SVG text content</li>
</ul>
<p>mkdocs-material-9.5.29 (2024-07-14)</p>
<ul>
<li>Updated Galician translations</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7362">#7362</a>:
Annotations in figure captions rendering incorrectly</li>
</ul>
<p>mkdocs-material-9.5.28 (2024-07-02)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7313">#7313</a>:
Improved tooltips mounted in sidebar when feature is disabled</li>
</ul>
<p>mkdocs-material-9.5.27 (2024-06-16)</p>
<ul>
<li>Updated Estonian translations</li>
</ul>
<p>mkdocs-material-9.5.26 (2024-06-06)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7232">#7232</a>:
Tab switches on scroll when linking tabs (9.5.19 regression)</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7230">#7230</a>:
Blog author avatar broken when referring to local file</li>
</ul>
<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>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/a5438a6dc23396023bbe9d73592fccd562ee4174"><code>a5438a6</code></a>
Prepare 9.5.31 release</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/0e2195d82111b4ef99feb5d024d078e5d096e420"><code>0e2195d</code></a>
Updated dependencies</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/32cf9ebcae04e8ebaad66137146b08fabb89c09d"><code>32cf9eb</code></a>
Updated dependencies</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/627eb88b3db88a6443d0972873756dd207fcb1dd"><code>627eb88</code></a>
Fixed Docker build on arm/v7</li>
<li>See full diff in <a
href="https://github.com/squidfunk/mkdocs-material/compare/9.5.30...9.5.31">compare
view</a></li>
</ul>
</details>
<br />

Updates `hypothesis` from 6.108.5 to 6.108.9
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/e3e33f877431ad4c0a74fbf5457120b4395d6b4b"><code>e3e33f8</code></a>
Bump hypothesis-python version to 6.108.9 and update changelog</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/e8af20288e6b698ada4780ad9f8126e89dfb18bc"><code>e8af202</code></a>
Merge pull request <a
href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4068">#4068</a>
from tybug/truncate-novel-prefix</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/040f43626950eb8c342e84a6dee31fb7b02589ce"><code>040f436</code></a>
truncate novel prefixes</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/3c15b34ece30825ed153a0b350f5847efb30dd79"><code>3c15b34</code></a>
Bump hypothesis-python version to 6.108.8 and update changelog</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/c3e2fcabf12be83525c573daec778c3dbbc71a7d"><code>c3e2fca</code></a>
Merge pull request <a
href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4064">#4064</a>
from tybug/ir-fast-cache</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/6a963440234f492f1f97e6252c3a9744cb48e235"><code>6a96344</code></a>
use a more performant LRUCache for ir kwargs caches</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/8c75b9efc2d376f0f3a159cf3320896f994196dd"><code>8c75b9e</code></a>
Bump hypothesis-python version to 6.108.7 and update changelog</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/5221dbdfda225a44fc47a2125250f0408f1a4c68"><code>5221dbd</code></a>
Merge pull request <a
href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4065">#4065</a>
from Zac-HD/numeric-pprinter</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/c50ffd487024cea9fc44617f5295bb5fa87ce450"><code>c50ffd4</code></a>
Improve numeric pprinting</li>
<li><a
href="https://github.com/HypothesisWorks/hypothesis/commit/b5975425969eff5b80b5713a4d392686a30fd663"><code>b597542</code></a>
Require latest crosshair</li>
<li>Additional commits viewable in <a
href="https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.108.5...hypothesis-python-6.108.9">compare
view</a></li>
</ul>
</details>
<br />

Updates `pyright` from 1.1.373 to 1.1.374
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/RobertCraigie/pyright-python/commit/c35c2ee91b70d8746ef15927a0055feb0156264d"><code>c35c2ee</code></a>
[pyright updated to 1.1.374] Update Version (<a
href="https://redirect.github.com/RobertCraigie/pyright-python/issues/286">#286</a>)</li>
<li>See full diff in <a
href="https://github.com/RobertCraigie/pyright-python/compare/v1.1.373...v1.1.374">compare
view</a></li>
</ul>
</details>
<br />

Updates `black` from 24.4.2 to 24.8.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/psf/black/releases">black's
releases</a>.</em></p>
<blockquote>
<h2>24.8.0</h2>
<h3>Stable style</h3>
<ul>
<li>Fix crash when <code># fmt: off</code> is used before a closing
parenthesis or bracket. (<a
href="https://redirect.github.com/psf/black/issues/4363">#4363</a>)</li>
</ul>
<h3>Packaging</h3>
<ul>
<li>Packaging metadata updated: docs are explictly linked, the issue
tracker is now also
linked. This improves the PyPI listing for Black. (<a
href="https://redirect.github.com/psf/black/issues/4345">#4345</a>)</li>
</ul>
<h3>Parser</h3>
<ul>
<li>Fix regression where Black failed to parse a multiline f-string
containing another
multiline string (<a
href="https://redirect.github.com/psf/black/issues/4339">#4339</a>)</li>
<li>Fix regression where Black failed to parse an escaped single quote
inside an f-string
(<a
href="https://redirect.github.com/psf/black/issues/4401">#4401</a>)</li>
<li>Fix bug with Black incorrectly parsing empty lines with a backslash
(<a
href="https://redirect.github.com/psf/black/issues/4343">#4343</a>)</li>
<li>Fix bugs with Black's tokenizer not handling <code>\{</code> inside
f-strings very well (<a
href="https://redirect.github.com/psf/black/issues/4422">#4422</a>)</li>
<li>Fix incorrect line numbers in the tokenizer for certain tokens
within f-strings
(<a
href="https://redirect.github.com/psf/black/issues/4423">#4423</a>)</li>
</ul>
<h3>Performance</h3>
<ul>
<li>Improve performance when a large directory is listed in
<code>.gitignore</code> (<a
href="https://redirect.github.com/psf/black/issues/4415">#4415</a>)</li>
</ul>
<h3><em>Blackd</em></h3>
<ul>
<li>Fix blackd (and all extras installs) for docker container (<a
href="https://redirect.github.com/psf/black/issues/4357">#4357</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/psf/black/blob/main/CHANGES.md">black's
changelog</a>.</em></p>
<blockquote>
<h2>24.8.0</h2>
<h3>Stable style</h3>
<ul>
<li>Fix crash when <code># fmt: off</code> is used before a closing
parenthesis or bracket. (<a
href="https://redirect.github.com/psf/black/issues/4363">#4363</a>)</li>
</ul>
<h3>Packaging</h3>
<ul>
<li>Packaging metadata updated: docs are explictly linked, the issue
tracker is now also
linked. This improves the PyPI listing for Black. (<a
href="https://redirect.github.com/psf/black/issues/4345">#4345</a>)</li>
</ul>
<h3>Parser</h3>
<ul>
<li>Fix regression where Black failed to parse a multiline f-string
containing another
multiline string (<a
href="https://redirect.github.com/psf/black/issues/4339">#4339</a>)</li>
<li>Fix regression where Black failed to parse an escaped single quote
inside an f-string
(<a
href="https://redirect.github.com/psf/black/issues/4401">#4401</a>)</li>
<li>Fix bug with Black incorrectly parsing empty lines with a backslash
(<a
href="https://redirect.github.com/psf/black/issues/4343">#4343</a>)</li>
<li>Fix bugs with Black's tokenizer not handling <code>\{</code> inside
f-strings very well (<a
href="https://redirect.github.com/psf/black/issues/4422">#4422</a>)</li>
<li>Fix incorrect line numbers in the tokenizer for certain tokens
within f-strings
(<a
href="https://redirect.github.com/psf/black/issues/4423">#4423</a>)</li>
</ul>
<h3>Performance</h3>
<ul>
<li>Improve performance when a large directory is listed in
<code>.gitignore</code> (<a
href="https://redirect.github.com/psf/black/issues/4415">#4415</a>)</li>
</ul>
<h3><em>Blackd</em></h3>
<ul>
<li>Fix blackd (and all extras installs) for docker container (<a
href="https://redirect.github.com/psf/black/issues/4357">#4357</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/psf/black/commit/b965c2a5026f8ba399283ba3e01898b012853c79"><code>b965c2a</code></a>
Prepare release 24.8.0 (<a
href="https://redirect.github.com/psf/black/issues/4426">#4426</a>)</li>
<li><a
href="https://github.com/psf/black/commit/9ccf279a17ff19cc51f62c60fc88ba46e615d202"><code>9ccf279</code></a>
Document <code>find_project_root</code> ignoring
<code>pyproject.toml</code> without <code>[tool.black]</code>...</li>
<li><a
href="https://github.com/psf/black/commit/14b6e619704e6d81749f0a23060750ee0a5fcc40"><code>14b6e61</code></a>
fix: Enhace black efficiently to skip directories listed in .gitignore
(<a
href="https://redirect.github.com/psf/black/issues/4415">#4415</a>)</li>
<li><a
href="https://github.com/psf/black/commit/b1c4dd96d769cb3ac3c8fc057e8dc60907b84c17"><code>b1c4dd9</code></a>
fix: respect braces better in f-string parsing (<a
href="https://redirect.github.com/psf/black/issues/4422">#4422</a>)</li>
<li><a
href="https://github.com/psf/black/commit/4b4ae43e8b66a2eab2d41a73364745c2a4570287"><code>4b4ae43</code></a>
Fix incorrect linenos on fstring tokens with escaped newlines (<a
href="https://redirect.github.com/psf/black/issues/4423">#4423</a>)</li>
<li><a
href="https://github.com/psf/black/commit/7fa1faf83af513e09c44e029da573c6b0b2bd570"><code>7fa1faf</code></a>
docs: fix the installation command of extra for blackd (<a
href="https://redirect.github.com/psf/black/issues/4413">#4413</a>)</li>
<li><a
href="https://github.com/psf/black/commit/8827accf560c7be418000962565f1fd6fa7b01cb"><code>8827acc</code></a>
Bump sphinx from 7.3.7 to 7.4.0 in /docs (<a
href="https://redirect.github.com/psf/black/issues/4404">#4404</a>)</li>
<li><a
href="https://github.com/psf/black/commit/b0da11d370adb5730fd45594cc89b1dc816786ea"><code>b0da11d</code></a>
Bump furo from 2024.5.6 to 2024.7.18 in /docs (<a
href="https://redirect.github.com/psf/black/issues/4409">#4409</a>)</li>
<li><a
href="https://github.com/psf/black/commit/721dff549362f54930ecc038218dcc40e599a875"><code>721dff5</code></a>
fix: avoid formatting backslash strings inside f-strings (<a
href="https://redirect.github.com/psf/black/issues/4401">#4401</a>)</li>
<li><a
href="https://github.com/psf/black/commit/7e2afc9bfdc4ec4bc3297aaa16a62d575249a5e0"><code>7e2afc9</code></a>
Update <code>actions/checkout</code> to v4 to stop node deprecation
warnings (<a
href="https://redirect.github.com/psf/black/issues/4379">#4379</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/psf/black/compare/24.4.2...24.8.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `ruff` from 0.5.5 to 0.5.6
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/astral-sh/ruff/releases">ruff's
releases</a>.</em></p>
<blockquote>
<h2>0.5.6</h2>
<h2>Release Notes</h2>
<p>Ruff 0.5.6 automatically enables linting and formatting of notebooks
in <em>preview mode</em>.
You can opt-out of this behavior by adding <code>*.ipynb</code> to the
<code>extend-exclude</code> setting.</p>
<pre lang="toml"><code>[tool.ruff]
extend-exclude = [&quot;*.ipynb&quot;]
</code></pre>
<h3>Preview features</h3>
<ul>
<li>Enable notebooks by default in preview mode (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12621">#12621</a>)</li>
<li>[<code>flake8-builtins</code>] Implement import, lambda, and module
shadowing (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12546">#12546</a>)</li>
<li>[<code>pydoclint</code>] Add <code>docstring-missing-returns</code>
(<code>DOC201</code>) and <code>docstring-extraneous-returns</code>
(<code>DOC202</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12485">#12485</a>)</li>
</ul>
<h3>Rule changes</h3>
<ul>
<li>[<code>flake8-return</code>] Exempt cached properties and other
property-like decorators from explicit return rule (<code>RET501</code>)
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/12563">#12563</a>)</li>
</ul>
<h3>Server</h3>
<ul>
<li>Make server panic hook more error resilient (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12610">#12610</a>)</li>
<li>Use <code>$/logTrace</code> for server trace logs in Zed and VS Code
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/12564">#12564</a>)</li>
<li>Keep track of deleted cells for reorder change request (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12575">#12575</a>)</li>
</ul>
<h3>Configuration</h3>
<ul>
<li>[<code>flake8-implicit-str-concat</code>] Always allow explicit
multi-line concatenations when implicit concatenations are banned (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12532">#12532</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>[<code>flake8-async</code>] Avoid flagging
<code>asyncio.timeout</code>s as unused when the context manager
includes <code>asyncio.TaskGroup</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12605">#12605</a>)</li>
<li>[<code>flake8-slots</code>] Avoid recommending
<code>__slots__</code> for classes that inherit from more than
<code>namedtuple</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12531">#12531</a>)</li>
<li>[<code>isort</code>] Avoid marking required imports as unused (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12537">#12537</a>)</li>
<li>[<code>isort</code>] Preserve trailing inline comments on
import-from statements (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12498">#12498</a>)</li>
<li>[<code>pycodestyle</code>] Add newlines before comments
(<code>E305</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12606">#12606</a>)</li>
<li>[<code>pycodestyle</code>] Don't attach comments with mismatched
indents (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12604">#12604</a>)</li>
<li>[<code>pyflakes</code>] Fix preview-mode bugs in <code>F401</code>
when attempting to autofix unused first-party submodule imports in an
<code>__init__.py</code> file (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12569">#12569</a>)</li>
<li>[<code>pylint</code>] Respect start index in
<code>unnecessary-list-index-lookup</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12603">#12603</a>)</li>
<li>[<code>pyupgrade</code>] Avoid recommending no-argument super in
<code>slots=True</code> dataclasses (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12530">#12530</a>)</li>
<li>[<code>pyupgrade</code>] Use colon rather than dot formatting for
integer-only types (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12534">#12534</a>)</li>
<li>Fix NFKC normalization bug when removing unused imports (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12571">#12571</a>)</li>
</ul>
<h3>Other changes</h3>
<ul>
<li>Consider more stdlib decorators to be property-like (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12583">#12583</a>)</li>
<li>Improve handling of metaclasses in various linter rules (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12579">#12579</a>)</li>
<li>Improve consistency between linter rules in determining whether a
function is property (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12581">#12581</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md">ruff's
changelog</a>.</em></p>
<blockquote>
<h2>0.5.6</h2>
<p>Ruff 0.5.6 automatically enables linting and formatting of notebooks
in <em>preview mode</em>.
You can opt-out of this behavior by adding <code>*.ipynb</code> to the
<code>extend-exclude</code> setting.</p>
<pre lang="toml"><code>[tool.ruff]
extend-exclude = [&quot;*.ipynb&quot;]
</code></pre>
<h3>Preview features</h3>
<ul>
<li>Enable notebooks by default in preview mode (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12621">#12621</a>)</li>
<li>[<code>flake8-builtins</code>] Implement import, lambda, and module
shadowing (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12546">#12546</a>)</li>
<li>[<code>pydoclint</code>] Add <code>docstring-missing-returns</code>
(<code>DOC201</code>) and <code>docstring-extraneous-returns</code>
(<code>DOC202</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12485">#12485</a>)</li>
</ul>
<h3>Rule changes</h3>
<ul>
<li>[<code>flake8-return</code>] Exempt cached properties and other
property-like decorators from explicit return rule (<code>RET501</code>)
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/12563">#12563</a>)</li>
</ul>
<h3>Server</h3>
<ul>
<li>Make server panic hook more error resilient (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12610">#12610</a>)</li>
<li>Use <code>$/logTrace</code> for server trace logs in Zed and VS Code
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/12564">#12564</a>)</li>
<li>Keep track of deleted cells for reorder change request (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12575">#12575</a>)</li>
</ul>
<h3>Configuration</h3>
<ul>
<li>[<code>flake8-implicit-str-concat</code>] Always allow explicit
multi-line concatenations when implicit concatenations are banned (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12532">#12532</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>[<code>flake8-async</code>] Avoid flagging
<code>asyncio.timeout</code>s as unused when the context manager
includes <code>asyncio.TaskGroup</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12605">#12605</a>)</li>
<li>[<code>flake8-slots</code>] Avoid recommending
<code>__slots__</code> for classes that inherit from more than
<code>namedtuple</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12531">#12531</a>)</li>
<li>[<code>isort</code>] Avoid marking required imports as unused (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12537">#12537</a>)</li>
<li>[<code>isort</code>] Preserve trailing inline comments on
import-from statements (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12498">#12498</a>)</li>
<li>[<code>pycodestyle</code>] Add newlines before comments
(<code>E305</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12606">#12606</a>)</li>
<li>[<code>pycodestyle</code>] Don't attach comments with mismatched
indents (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12604">#12604</a>)</li>
<li>[<code>pyflakes</code>] Fix preview-mode bugs in <code>F401</code>
when attempting to autofix unused first-party submodule imports in an
<code>__init__.py</code> file (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12569">#12569</a>)</li>
<li>[<code>pylint</code>] Respect start index in
<code>unnecessary-list-index-lookup</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12603">#12603</a>)</li>
<li>[<code>pyupgrade</code>] Avoid recommending no-argument super in
<code>slots=True</code> dataclasses (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12530">#12530</a>)</li>
<li>[<code>pyupgrade</code>] Use colon rather than dot formatting for
integer-only types (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12534">#12534</a>)</li>
<li>Fix NFKC normalization bug when removing unused imports (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12571">#12571</a>)</li>
</ul>
<h3>Other changes</h3>
<ul>
<li>Consider more stdlib decorators to be property-like (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12583">#12583</a>)</li>
<li>Improve handling of metaclasses in various linter rules (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12579">#12579</a>)</li>
<li>Improve consistency between linter rules in determining whether a
function is property (<a
href="https://redirect.github.com/astral-sh/ruff/pull/12581">#12581</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/astral-sh/ruff/commit/da824ba316bd11de349479aaab06b6ab06560d38"><code>da824ba</code></a>
Release Ruff 0.5.6 (<a
href="https://redirect.github.com/astral-sh/ruff/issues/12629">#12629</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/012198a1b0f4870902992218c04aac3f07ee76c8"><code>012198a</code></a>
Enable notebooks by default in preview mode (<a
href="https://redirect.github.com/astral-sh/ruff/issues/12621">#12621</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/fbab04fbe1ea9ab08540c4e6a0b3ab7b9e19d637"><code>fbab04f</code></a>
[red-knot] Allow multiple <code>site-packages</code> search paths (<a
href="https://redirect.github.com/astral-sh/ruff/issues/12609">#12609</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/9aa43d5f911f5f46b77bf4d9b72b52ad2d4b9e11"><code>9aa43d5</code></a>
Separate <code>red_knot</code> into CLI and
<code>red_knot_workspace</code> crates (<a
href="https://redirect.github.com/astral-sh/ruff/issues/12623">#12623</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/966563c79b2810371728c302fef2e97569ba5ba0"><code>966563c</code></a>
Add tests for hard and soft links (<a
href="https://redirect.github.com/astral-sh/ruff/issues/12590">#12590</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/27edadec2953d8816a742f32c41695d1b03534c6"><code>27edade</code></a>
Make server panic hook more error resilient (<a
href="https://redirect.github.com/astral-sh/ruff/issues/12610">#12610</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/2e2b1b460f4de25e630cde69b4b49577bc5134b4"><code>2e2b1b4</code></a>
Fix a typo in <code>docs/editors/settings.md</code> (<a
href="https://redirect.github.com/astral-sh/ruff/issues/12614">#12614</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/a3e67abf4ce7b519152c03ff441424c18e4c18ee"><code>a3e67ab</code></a>
Add newlines before comments in E305 (<a
href="https://redirect.github.com/astral-sh/ruff/issues/12606">#12606</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/ee0518e8f71cb0bc4d5cc3afc28a54a0bbc78247"><code>ee0518e</code></a>
[red-knot] implement attribute of union (<a
href="https://redirect.github.com/astral-sh/ruff/issues/12601">#12601</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/d774a3bd48bbf8b697190b7d68251195cdc6c64b"><code>d774a3b</code></a>
Avoid unused async when context manager includes <code>TaskGroup</code>
(<a
href="https://redirect.github.com/astral-sh/ruff/issues/12605">#12605</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/astral-sh/ruff/compare/0.5.5...0.5.6">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
eve-ci-cd[bot] authored Aug 5, 2024
2 parents a51a40e + f37d6dd commit c71b2fd
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 231 deletions.
Loading

0 comments on commit c71b2fd

Please sign in to comment.