-
Notifications
You must be signed in to change notification settings - Fork 24
Commit 41049c8
authored
Bump the pip-deps group across 1 directory with 8 updates (#498)
Bumps the pip-deps group with 8 updates in the / directory:
| Package | From | To |
| --- | --- | --- |
| [click](https://github.com/pallets/click) | `8.1.8` | `8.3.0` |
| [markupsafe](https://github.com/pallets/markupsafe) | `3.0.2` |
`3.0.3` |
| [pymongo](https://github.com/mongodb/mongo-python-driver) | `4.15.1` |
`4.15.2` |
| [pyyaml](https://github.com/yaml/pyyaml) | `6.0.2` | `6.0.3` |
| [cryptography](https://github.com/pyca/cryptography) | `46.0.1` |
`46.0.2` |
| [isort](https://github.com/PyCQA/isort) | `6.0.1` | `6.1.0` |
| [botocore](https://github.com/boto/botocore) | `1.40.36` | `1.40.46` |
| [boto3](https://github.com/boto/boto3) | `1.40.36` | `1.40.46` |
Updates `click` from 8.1.8 to 8.3.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pallets/click/releases">click's
releases</a>.</em></p>
<blockquote>
<h2>8.3.0</h2>
<p>This is the Click 8.3.0 feature release. A feature release may
include new features, remove previously deprecated code, add new
deprecation, or introduce potentially breaking changes.</p>
<p>We encourage everyone to upgrade. You can read more about our <a
href="https://palletsprojects.com/versions">Version Support Policy</a>
on our website.</p>
<p>PyPI: <a
href="https://pypi.org/project/click/8.3.0/">https://pypi.org/project/click/8.3.0/</a>
Changes: <a
href="https://click.palletsprojects.com/page/changes/#version-8-3-0">https://click.palletsprojects.com/page/changes/#version-8-3-0</a>
Milestone <a
href="https://github.com/pallets/click/milestone/27">https://github.com/pallets/click/milestone/27</a></p>
<ul>
<li>
<p><strong>Improved flag option handling</strong>: Reworked the
relationship between <code>flag_value</code>
and <code>default</code> parameters for better consistency:</p>
<ul>
<li>The <code>default</code> parameter value is now preserved as-is and
passed directly
to CLI functions (no more unexpected transformations)</li>
<li>Exception: flag options with <code>default=True</code> maintain
backward compatibility
by defaulting to their <code>flag_value</code></li>
<li>The <code>default</code> parameter can now be any type
(<code>bool</code>, <code>None</code>, etc.)</li>
<li>Fixes inconsistencies reported in: <a
href="https://redirect.github.com/pallets/click/issues/1992">#1992</a>
<a
href="https://redirect.github.com/pallets/click/issues/2514">#2514</a>
<a
href="https://redirect.github.com/pallets/click/issues/2610">#2610</a>
<a
href="https://redirect.github.com/pallets/click/issues/3024">#3024</a>
<a
href="https://redirect.github.com/pallets/click/issues/3030">#3030</a></li>
</ul>
</li>
<li>
<p>Allow <code>default</code> to be set on <code>Argument</code> for
<code>nargs = -1</code>. <a
href="https://redirect.github.com/pallets/click/issues/2164">#2164</a>
<a
href="https://redirect.github.com/pallets/click/issues/3030">#3030</a></p>
</li>
<li>
<p>Show correct auto complete value for <code>nargs</code> option in
combination with flag
option <a
href="https://redirect.github.com/pallets/click/issues/2813">#2813</a></p>
</li>
<li>
<p>Show correct auto complete value for nargs option in combination with
flag option <a
href="https://redirect.github.com/pallets/click/issues/2813">#2813</a></p>
</li>
<li>
<p>Fix handling of quoted and escaped parameters in Fish autocompletion.
<a
href="https://redirect.github.com/pallets/click/issues/2995">#2995</a>
<a
href="https://redirect.github.com/pallets/click/issues/3013">#3013</a></p>
</li>
<li>
<p>Lazily import <code>shutil</code>. <a
href="https://redirect.github.com/pallets/click/issues/3023">#3023</a></p>
</li>
<li>
<p>Properly forward exception information to resources registered with
<code>click.core.Context.with_resource()</code>. <a
href="https://redirect.github.com/pallets/click/issues/2447">#2447</a>
<a
href="https://redirect.github.com/pallets/click/issues/3058">#3058</a></p>
</li>
<li>
<p>Fix regression related to EOF handling in CliRunner. <a
href="https://redirect.github.com/pallets/click/issues/2939">#2939</a>
<a
href="https://redirect.github.com/pallets/click/issues/2940">#2940</a></p>
</li>
</ul>
<h2>8.2.2</h2>
<p>This is the Click 8.2.2 fix release, which fixes bugs but does not
otherwise change behavior and should not result in breaking changes
compared to the latest feature release.</p>
<p>PyPI: <a
href="https://pypi.org/project/click/8.2.2/">https://pypi.org/project/click/8.2.2/</a>
Changes: <a
href="https://click.palletsprojects.com/page/changes/#version-8-2-2">https://click.palletsprojects.com/page/changes/#version-8-2-2</a>
Milestone: <a
href="https://github.com/pallets/click/milestone/25">https://github.com/pallets/click/milestone/25</a></p>
<ul>
<li>Fix reconciliation of <code>default</code>, <code>flag_value</code>
and <code>type</code> parameters for
flag options, as well as parsing and normalization of environment
variables.
<a
href="https://redirect.github.com/pallets/click/issues/2952">#2952</a>
<a
href="https://redirect.github.com/pallets/click/issues/2956">#2956</a></li>
<li>Fix typing issue in <code>BadParameter</code> and
<code>MissingParameter</code> exceptions for the
parameter <code>param_hint</code> that did not allow for a sequence of
string where the
underlying functino <code>_join_param_hints</code> allows for it. <a
href="https://redirect.github.com/pallets/click/issues/2777">#2777</a>
<a
href="https://redirect.github.com/pallets/click/issues/2990">#2990</a></li>
<li>Use the value of <code>Enum</code> choices to render their default
value in help
screen. <a
href="https://redirect.github.com/pallets/click/issues/2911">#2911</a>
<a
href="https://redirect.github.com/pallets/click/issues/3004">#3004</a></li>
<li>Fix completion for the Z shell (<code>zsh</code>) for completion
items containing
colons. <a
href="https://redirect.github.com/pallets/click/issues/2703">#2703</a>
<a
href="https://redirect.github.com/pallets/click/issues/2846">#2846</a></li>
<li>Don't include envvar in error hint when not configured. <a
href="https://redirect.github.com/pallets/click/issues/2971">#2971</a>
<a
href="https://redirect.github.com/pallets/click/issues/2972">#2972</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pallets/click/blob/main/CHANGES.rst">click's
changelog</a>.</em></p>
<blockquote>
<h2>Version 8.3.0</h2>
<p>Released 2025-09-17</p>
<ul>
<li>
<p><strong>Improved flag option handling</strong>: Reworked the
relationship between <code>flag_value</code>
and <code>default</code> parameters for better consistency:</p>
<ul>
<li>The <code>default</code> parameter value is now preserved as-is and
passed directly
to CLI functions (no more unexpected transformations)</li>
<li>Exception: flag options with <code>default=True</code> maintain
backward compatibility
by defaulting to their <code>flag_value</code></li>
<li>The <code>default</code> parameter can now be any type
(<code>bool</code>, <code>None</code>, etc.)</li>
<li>Fixes inconsistencies reported in: :issue:<code>1992</code>
:issue:<code>2514</code> :issue:<code>2610</code>
:issue:<code>3024</code> :pr:<code>3030</code></li>
</ul>
</li>
<li>
<p>Allow <code>default</code> to be set on <code>Argument</code> for
<code>nargs = -1</code>. :issue:<code>2164</code>
:pr:<code>3030</code></p>
</li>
<li>
<p>Show correct auto complete value for <code>nargs</code> option in
combination with flag
option :issue:<code>2813</code></p>
</li>
<li>
<p>Fix handling of quoted and escaped parameters in Fish autocompletion.
:issue:<code>2995</code> :pr:<code>3013</code></p>
</li>
<li>
<p>Lazily import <code>shutil</code>. :pr:<code>3023</code></p>
</li>
<li>
<p>Properly forward exception information to resources registered with
<code>click.core.Context.with_resource()</code>.
:issue:<code>2447</code> :pr:<code>3058</code></p>
</li>
<li>
<p>Fix regression related to EOF handling in CliRunner.
:issue:<code>2939</code> :pr:<code>2940</code></p>
</li>
</ul>
<h2>Version 8.2.2</h2>
<p>Released 2025-07-31</p>
<ul>
<li>Fix reconciliation of <code>default</code>, <code>flag_value</code>
and <code>type</code> parameters for
flag options, as well as parsing and normalization of environment
variables.
:issue:<code>2952</code> :pr:<code>2956</code></li>
<li>Fix typing issue in <code>BadParameter</code> and
<code>MissingParameter</code> exceptions for the
parameter <code>param_hint</code> that did not allow for a sequence of
string where the
underlying function <code>_join_param_hints</code> allows for it.
:issue:<code>2777</code> :pr:<code>2990</code></li>
<li>Use the value of <code>Enum</code> choices to render their default
value in help
screen. Refs :issue:<code>2911</code> :pr:<code>3004</code></li>
<li>Fix completion for the Z shell (<code>zsh</code>) for completion
items containing
colons. :issue:<code>2703</code> :pr:<code>2846</code></li>
<li>Don't include envvar in error hint when not configured.
:issue:<code>2971</code> :pr:<code>2972</code></li>
<li>Fix a rare race in <code>click.testing.StreamMixer</code>'s
finalization that manifested
as a <code>ValueError</code> on close in a multi-threaded test session.
:issue:<code>2993</code> :pr:<code>2991</code></li>
</ul>
<h2>Version 8.2.1</h2>
<p>Released 2025-05-20</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pallets/click/commit/00fadb8904387158ce6e9aa1573be770446895c1"><code>00fadb8</code></a>
Release version 8.3.0</li>
<li><a
href="https://github.com/pallets/click/commit/2a0e3ba907927ade6951d5732b775f11b54cb766"><code>2a0e3ba</code></a>
testing/CliRunner: Fix regression related to EOF introduced in 262bdf0
(<a
href="https://redirect.github.com/pallets/click/issues/2940">#2940</a>)</li>
<li><a
href="https://github.com/pallets/click/commit/e11a1efc3395e998a1521a0dc35672a799e78d30"><code>e11a1ef</code></a>
Merge branch 'main' into fix-cli-runner-prompt-eof-handling</li>
<li><a
href="https://github.com/pallets/click/commit/36deba8a95a2585de1a2aa4475b7f054f52830ac"><code>36deba8</code></a>
Forward exception information to resources registered in a context (<a
href="https://redirect.github.com/pallets/click/issues/3058">#3058</a>)</li>
<li><a
href="https://github.com/pallets/click/commit/f2cae7ae997cd32311cab3dede4c2b89fe05e191"><code>f2cae7a</code></a>
<a
href="https://redirect.github.com/pallets/click/issues/2447">#2447</a>
Add summary of PR to changelog for 8.3.x</li>
<li><a
href="https://github.com/pallets/click/commit/7c7ec36354f49d1a092cb077fa4881ea4d70ba01"><code>7c7ec36</code></a>
<a
href="https://redirect.github.com/pallets/click/issues/2447">#2447</a>
Split resource exception handling tests in single and nested</li>
<li><a
href="https://github.com/pallets/click/commit/92129c552da88ac30b578132031efa4b003ecc46"><code>92129c5</code></a>
<a
href="https://redirect.github.com/pallets/click/issues/2447">#2447</a>
Added exception forwarding to context tests</li>
<li><a
href="https://github.com/pallets/click/commit/555fa9bb37770a6845a98be60b0c84876775552e"><code>555fa9b</code></a>
<a
href="https://redirect.github.com/pallets/click/issues/2447">#2447</a>
Forward exception data to exit stack when calling
<code>__exit__</code></li>
<li><a
href="https://github.com/pallets/click/commit/16fe802a3f96c4c8fa3cd382f1a7577fda0c5321"><code>16fe802</code></a>
Add more tests on <code>Enum</code> rendering (<a
href="https://redirect.github.com/pallets/click/issues/3053">#3053</a>)</li>
<li><a
href="https://github.com/pallets/click/commit/d36de6fc67882f23d7a7d61cd4c0e25e0f88b0ac"><code>d36de6f</code></a>
Add more tests on Enum rendering their item's names and not values</li>
<li>Additional commits viewable in <a
href="https://github.com/pallets/click/compare/8.1.8...8.3.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `markupsafe` from 3.0.2 to 3.0.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pallets/markupsafe/releases">markupsafe's
releases</a>.</em></p>
<blockquote>
<h2>3.0.3</h2>
<p>This is the MarkupSafe 3.0.3 fix release, which fixes bugs but does
not otherwise change behavior and should not result in breaking changes
compared to the latest feature release.</p>
<p>PyPI: <a
href="https://pypi.org/project/MarkupSafe/3.0.3/">https://pypi.org/project/MarkupSafe/3.0.3/</a>
Changes: <a
href="https://markupsafe.palletsprojects.com/page/changes/#version-3-0-3">https://markupsafe.palletsprojects.com/page/changes/#version-3-0-3</a>
Milestone: <a
href="https://github.com/pallets/markupsafe/milestone/15?closed=1">https://github.com/pallets/markupsafe/milestone/15?closed=1</a></p>
<ul>
<li><code>__version__</code> raises <code>DeprecationWarning</code>
instead of <code>UserWarning</code>. <a
href="https://redirect.github.com/pallets/markupsafe/issues/487">#487</a></li>
<li>Adopt multi-phase initialization PEP 489 for the C extension. <a
href="https://redirect.github.com/pallets/markupsafe/issues/494">#494</a></li>
<li>Build Windows ARM64 wheels. <a
href="https://redirect.github.com/pallets/markupsafe/issues/485">#485</a></li>
<li>Build Python 3.14 wheels. <a
href="https://redirect.github.com/pallets/markupsafe/issues/503">#503</a></li>
<li>Build riscv64 wheels. <a
href="https://redirect.github.com/pallets/markupsafe/issues/505">#505</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pallets/markupsafe/blob/main/CHANGES.rst">markupsafe's
changelog</a>.</em></p>
<blockquote>
<h2>Version 3.0.3</h2>
<p>Released 2025-09-27</p>
<ul>
<li><code>__version__</code> raises <code>DeprecationWarning</code>
instead of <code>UserWarning</code>.
:issue:<code>487</code></li>
<li>Adopt multi-phase initialisation (:pep:<code>489</code>) for the C
extension.
:issue:<code>494</code></li>
<li>Build Windows ARM64 wheels. :issue:<code>485</code></li>
<li>Build Python 3.14 wheels. :issue:<code>503</code></li>
<li>Build riscv64 wheels. :issue:<code>505</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pallets/markupsafe/commit/297fc8e356e6836a62087949245d09a28e9f1b13"><code>297fc8e</code></a>
release version 3.0.3</li>
<li><a
href="https://github.com/pallets/markupsafe/commit/7e4e6ce249107c5f27fa6fe890e29da7a8dc8f0c"><code>7e4e6ce</code></a>
Free-threading: run with pytest-run-paralell (<a
href="https://redirect.github.com/pallets/markupsafe/issues/507">#507</a>)</li>
<li><a
href="https://github.com/pallets/markupsafe/commit/6100b9c0d466495a08d55b33cb172d7b5d8e9aa1"><code>6100b9c</code></a>
enable riscv64 wheels (<a
href="https://redirect.github.com/pallets/markupsafe/issues/506">#506</a>)</li>
<li><a
href="https://github.com/pallets/markupsafe/commit/c9d5ecfc7eec6f611b19cdc8e1cde1aaa65cb8eb"><code>c9d5ecf</code></a>
enable riscv64 wheels</li>
<li><a
href="https://github.com/pallets/markupsafe/commit/2f9b33753052e7c6df1464a7c900787d04ae9daf"><code>2f9b337</code></a>
tox for 3.14</li>
<li><a
href="https://github.com/pallets/markupsafe/commit/78d951a9549dee9fc901c55fc79a74a5f01e96fc"><code>78d951a</code></a>
update dev dependencies</li>
<li><a
href="https://github.com/pallets/markupsafe/commit/bb6744e392e79611b110c5ba022238eb1b855cc2"><code>bb6744e</code></a>
add entry</li>
<li><a
href="https://github.com/pallets/markupsafe/commit/65c4134ab16a3faccbcac2cba90da0db2b799542"><code>65c4134</code></a>
upgrade cibuildwheel, add <code>cp314</code> wheels and test on CPython
3.14 (<a
href="https://redirect.github.com/pallets/markupsafe/issues/504">#504</a>)</li>
<li><a
href="https://github.com/pallets/markupsafe/commit/3a9bd88b84c9edba8b922bb12b84a59feed98788"><code>3a9bd88</code></a>
add cp314 wheels</li>
<li><a
href="https://github.com/pallets/markupsafe/commit/aafe44d87bd7974bc82af8c4010dea9938441edf"><code>aafe44d</code></a>
remove slsa provenance (<a
href="https://redirect.github.com/pallets/markupsafe/issues/501">#501</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pallets/markupsafe/compare/3.0.2...3.0.3">compare
view</a></li>
</ul>
</details>
<br />
Updates `pymongo` from 4.15.1 to 4.15.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mongodb/mongo-python-driver/releases">pymongo's
releases</a>.</em></p>
<blockquote>
<h2>PyMongo 4.15.2</h2>
<p>Community notes: <a
href="https://www.mongodb.com/community/forums/t/pymongo-4-15-2-released/329543">https://www.mongodb.com/community/forums/t/pymongo-4-15-2-released/329543</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/mongodb/mongo-python-driver/blob/master/doc/changelog.rst">pymongo's
changelog</a>.</em></p>
<blockquote>
<h2>Changes in Version 4.15.2 (2025/10/01)</h2>
<p>Version 4.15.2 is a bug fix release.</p>
<ul>
<li>Add wheels for Python 3.14 and 3.14t that were missing from 4.15.0
release. Drop the 3.13t wheel.</li>
</ul>
<p>Issues Resolved
...............</p>
<p>See the <code>PyMongo 4.15.2 release notes in JIRA</code>_ for the
list of resolved issues
in this release.</p>
<p>.. _PyMongo 4.15.2 release notes in JIRA: <a
href="https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=47186">https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=47186</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mongodb/mongo-python-driver/commit/eda41f3e872b0c777c1d8b83322ed4d05702cb82"><code>eda41f3</code></a>
final preparation for v4.15.2 release (<a
href="https://redirect.github.com/mongodb/mongo-python-driver/issues/2569">#2569</a>)</li>
<li><a
href="https://github.com/mongodb/mongo-python-driver/commit/f33e832beb436d2456138fad2a548cf730c3b5e1"><code>f33e832</code></a>
PYTHON-5584 Add wheels for Python 3.14 and 3.14t (<a
href="https://redirect.github.com/mongodb/mongo-python-driver/issues/2568">#2568</a>)</li>
<li><a
href="https://github.com/mongodb/mongo-python-driver/commit/e0b96544fb1fa33ccd1cb09d86b05d16a6e0f9d3"><code>e0b9654</code></a>
PYTHON-5544 [v4.15] Revert changes to base protocol layer (<a
href="https://redirect.github.com/mongodb/mongo-python-driver/issues/2538">#2538</a>)</li>
<li><a
href="https://github.com/mongodb/mongo-python-driver/commit/09fa287839e7930bb77c87b9d7d2075cce2de6d5"><code>09fa287</code></a>
PYTHON-5537 Update typing dependencies (<a
href="https://redirect.github.com/mongodb/mongo-python-driver/issues/2524">#2524</a>)
[v4.15] (<a
href="https://redirect.github.com/mongodb/mongo-python-driver/issues/2536">#2536</a>)</li>
<li><a
href="https://github.com/mongodb/mongo-python-driver/commit/7b2b221eec837ff49a6fe194379107eb8b9b224b"><code>7b2b221</code></a>
Prep 4.15.1 (<a
href="https://redirect.github.com/mongodb/mongo-python-driver/issues/2530">#2530</a>)</li>
<li><a
href="https://github.com/mongodb/mongo-python-driver/commit/ebe8bfb564c3c6f42d108ab1b4012a2bf38a7cd0"><code>ebe8bfb</code></a>
PYTHON-5542 Prepare for 4.15.1 Release (<a
href="https://redirect.github.com/mongodb/mongo-python-driver/issues/2527">#2527</a>)</li>
<li><a
href="https://github.com/mongodb/mongo-python-driver/commit/bc4ee39aac5b013cf1b392c4cb76639517d8e218"><code>bc4ee39</code></a>
PYTHON-5540 Fix usage of text_opts for older versions of pymongocrypt
(<a
href="https://redirect.github.com/mongodb/mongo-python-driver/issues/2525">#2525</a>)...</li>
<li><a
href="https://github.com/mongodb/mongo-python-driver/commit/e2107c22dd18d65dceb24f22541d59f0dad2c732"><code>e2107c2</code></a>
Prep branch v4.15</li>
<li>See full diff in <a
href="https://github.com/mongodb/mongo-python-driver/compare/4.15.1...4.15.2">compare
view</a></li>
</ul>
</details>
<br />
Updates `pyyaml` from 6.0.2 to 6.0.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/yaml/pyyaml/releases">pyyaml's
releases</a>.</em></p>
<blockquote>
<h2>6.0.3</h2>
<h2>What's Changed</h2>
<ul>
<li>Support for Python 3.14 and free-threading (experimental).</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/yaml/pyyaml/compare/6.0.2...6.0.3">https://github.com/yaml/pyyaml/compare/6.0.2...6.0.3</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/yaml/pyyaml/blob/6.0.3/CHANGES">pyyaml's
changelog</a>.</em></p>
<blockquote>
<p>6.0.3 (2025-09-25)</p>
<ul>
<li><a
href="https://redirect.github.com/yaml/pyyaml/pull/864">yaml/pyyaml#864</a>
-- Support for Python 3.14 and free-threading (experimental)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/yaml/pyyaml/commit/49790e73684bebad1df05ef8d828fa12f685bffb"><code>49790e7</code></a>
Release 6.0.3 (<a
href="https://redirect.github.com/yaml/pyyaml/issues/889">#889</a>)</li>
<li>See full diff in <a
href="https://github.com/yaml/pyyaml/compare/6.0.2...6.0.3">compare
view</a></li>
</ul>
</details>
<br />
Updates `cryptography` from 46.0.1 to 46.0.2
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's
changelog</a>.</em></p>
<blockquote>
<p>46.0.2 - 2025-09-30</p>
<pre><code>
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL
3.5.4.
<p>.. _v46-0-1:<br />
</code></pre></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pyca/cryptography/commit/99efe5ad150a56efadafacaffd0e3ee319373904"><code>99efe5a</code></a>
bump version for 46.0.2 (<a
href="https://redirect.github.com/pyca/cryptography/issues/13531">#13531</a>)</li>
<li>See full diff in <a
href="https://github.com/pyca/cryptography/compare/46.0.1...46.0.2">compare
view</a></li>
</ul>
</details>
<br />
Updates `isort` from 6.0.1 to 6.1.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/PyCQA/isort/releases">isort's
releases</a>.</em></p>
<blockquote>
<h2>6.1.0</h2>
<h2>Changes</h2>
<ul>
<li>Update docs discussions channel (<a
href="https://redirect.github.com/PyCQA/isort/issues/2410">#2410</a>) <a
href="https://github.com/staticdev"><code>@staticdev</code></a></li>
<li>Add python 3.14 classifier and badge (<a
href="https://redirect.github.com/PyCQA/isort/issues/2409">#2409</a>) <a
href="https://github.com/staticdev"><code>@staticdev</code></a></li>
<li>Drop use of non-standard pkg_resources API (<a
href="https://redirect.github.com/PyCQA/isort/issues/2405">#2405</a>) <a
href="https://github.com/dvarrazzo"><code>@dvarrazzo</code></a></li>
<li>Use working isort version in pre-commit example (<a
href="https://redirect.github.com/PyCQA/isort/issues/2402">#2402</a>) <a
href="https://github.com/iainelder"><code>@iainelder</code></a></li>
<li>fix typo in _get_files_from_dir_cached test (<a
href="https://redirect.github.com/PyCQA/isort/issues/2392">#2392</a>) <a
href="https://github.com/tiltingpenguin"><code>@tiltingpenguin</code></a></li>
<li>Resolve bandit warnings (<a
href="https://redirect.github.com/PyCQA/isort/issues/2379">#2379</a>) <a
href="https://github.com/kurtmckee"><code>@kurtmckee</code></a></li>
<li>Add tox for cross-platform, parallel test suite execution (<a
href="https://redirect.github.com/PyCQA/isort/issues/2378">#2378</a>) <a
href="https://github.com/kurtmckee"><code>@kurtmckee</code></a></li>
<li>Add Project URLs to PyPI Side Panel (<a
href="https://redirect.github.com/PyCQA/isort/issues/2387">#2387</a>) <a
href="https://github.com/guillermodotn"><code>@guillermodotn</code></a></li>
<li>Fix typos (<a
href="https://redirect.github.com/PyCQA/isort/issues/2376">#2376</a>) <a
href="https://github.com/co63oc"><code>@co63oc</code></a></li>
</ul>
<h2>:construction_worker: Continuous Integration</h2>
<ul>
<li>Add make bash scripts portable (<a
href="https://redirect.github.com/PyCQA/isort/issues/2377">#2377</a>) <a
href="https://github.com/staticdev"><code>@staticdev</code></a></li>
</ul>
<h2>:package: Dependencies</h2>
<ul>
<li>Bump actions/checkout from 4 to 5 in the github-actions group (<a
href="https://redirect.github.com/PyCQA/isort/issues/2406">#2406</a>)
@<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li>
<li>Bump astral-sh/setup-uv from 5 to 6 in the github-actions group (<a
href="https://redirect.github.com/PyCQA/isort/issues/2395">#2395</a>)
@<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/PyCQA/isort/blob/main/CHANGELOG.md">isort's
changelog</a>.</em></p>
<blockquote>
<h3>6.1.0 October 1 2025</h3>
<ul>
<li>Add python 3.14 classifier and badge (<a
href="https://redirect.github.com/PyCQA/isort/issues/2409">#2409</a>) <a
href="https://github.com/staticdev"><code>@staticdev</code></a></li>
<li>Drop use of non-standard pkg_resources API (<a
href="https://redirect.github.com/PyCQA/isort/issues/2405">#2405</a>) <a
href="https://github.com/dvarrazzo"><code>@dvarrazzo</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/PyCQA/isort/commit/ec0efaee4acfce198521e43caa3029b06cedd64a"><code>ec0efae</code></a>
Merge pull request <a
href="https://redirect.github.com/PyCQA/isort/issues/2410">#2410</a>
from PyCQA/docs/discussion</li>
<li><a
href="https://github.com/PyCQA/isort/commit/8af675ffcbb25dc5b5c2ff52863afc2923a818e2"><code>8af675f</code></a>
Update docs discussions channel</li>
<li><a
href="https://github.com/PyCQA/isort/commit/a03dae897f7e4a2b2eeb01d094b2c112b10ff0b7"><code>a03dae8</code></a>
Merge pull request <a
href="https://redirect.github.com/PyCQA/isort/issues/2409">#2409</a>
from PyCQA/build/py314-classifier</li>
<li><a
href="https://github.com/PyCQA/isort/commit/2232a26fd15d43ad0fca0e662d311ca4cf0d161e"><code>2232a26</code></a>
Add python 3.14 classifier and badge</li>
<li><a
href="https://github.com/PyCQA/isort/commit/ec48dd7c823bcebf6da93db5eb4921a7808e6bb3"><code>ec48dd7</code></a>
Merge pull request <a
href="https://redirect.github.com/PyCQA/isort/issues/2405">#2405</a>
from dvarrazzo/fix/drop-pkg-resources</li>
<li><a
href="https://github.com/PyCQA/isort/commit/be46cd476d1a61996a6a4469177edf0869df531e"><code>be46cd4</code></a>
refactor: make importlib metadata package import lazy</li>
<li><a
href="https://github.com/PyCQA/isort/commit/18ecd0c3bf0bc7d6eb9bb5b9a72297f172a57663"><code>18ecd0c</code></a>
chore: drop branch guarding unsupported Python versions</li>
<li><a
href="https://github.com/PyCQA/isort/commit/1d42e564d9bd1e026e8d635880336dd0528c2c29"><code>1d42e56</code></a>
fix: drop use of non-standard pkg_resources API</li>
<li><a
href="https://github.com/PyCQA/isort/commit/0c8fc82fdf1b60065d447f3f7307f01c51d44b01"><code>0c8fc82</code></a>
Merge pull request <a
href="https://redirect.github.com/PyCQA/isort/issues/2406">#2406</a>
from PyCQA/dependabot/github_actions/github-actions-...</li>
<li><a
href="https://github.com/PyCQA/isort/commit/3478763347707341e3ce729008acc9cf73a0ff35"><code>3478763</code></a>
Bump actions/checkout from 4 to 5 in the github-actions group</li>
<li>Additional commits viewable in <a
href="https://github.com/PyCQA/isort/compare/6.0.1...6.1.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `botocore` from 1.40.36 to 1.40.46
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/boto/botocore/commit/3784ddef365537a357cd61b061ee26890bf95760"><code>3784dde</code></a>
Merge branch 'release-1.40.46'</li>
<li><a
href="https://github.com/boto/botocore/commit/6acad21127aead6738de8b2b12919af51aa4adfd"><code>6acad21</code></a>
Bumping version to 1.40.46</li>
<li><a
href="https://github.com/boto/botocore/commit/774cb8d0a3df2f18dd8398c606c64e5fef407d18"><code>774cb8d</code></a>
Update to latest models</li>
<li><a
href="https://github.com/boto/botocore/commit/cd9652c39cd57e13f44e9aa6383c13eadc0c033e"><code>cd9652c</code></a>
Support default millisecond timestamp precision for custom services (<a
href="https://redirect.github.com/boto/botocore/issues/3568">#3568</a>)</li>
<li><a
href="https://github.com/boto/botocore/commit/5ce2bc53e904175b1edb6a33e269cf7a225bc5b3"><code>5ce2bc5</code></a>
Merge branch 'release-1.40.45'</li>
<li><a
href="https://github.com/boto/botocore/commit/c66574509ea88a21591dfd55ac523ca89206a1de"><code>c665745</code></a>
Merge branch 'release-1.40.45' into develop</li>
<li><a
href="https://github.com/boto/botocore/commit/5f04ccbcf538b26e70115bad4a0f9c763ff0012e"><code>5f04ccb</code></a>
Bumping version to 1.40.45</li>
<li><a
href="https://github.com/boto/botocore/commit/236880725d03aeb194b07df2178e30757727a30a"><code>2368807</code></a>
Update to latest models</li>
<li><a
href="https://github.com/boto/botocore/commit/426d4b327a6d721505f855178bc6143519d41340"><code>426d4b3</code></a>
Merge branch 'release-1.40.44'</li>
<li><a
href="https://github.com/boto/botocore/commit/4481cc612c61191f81a0baa47d3491c35b94e261"><code>4481cc6</code></a>
Merge branch 'release-1.40.44' into develop</li>
<li>Additional commits viewable in <a
href="https://github.com/boto/botocore/compare/1.40.36...1.40.46">compare
view</a></li>
</ul>
</details>
<br />
Updates `boto3` from 1.40.36 to 1.40.46
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/boto/boto3/commit/a6d47b26b10c47610d20fe3a9f202bd7b9ba3067"><code>a6d47b2</code></a>
Merge branch 'release-1.40.46'</li>
<li><a
href="https://github.com/boto/boto3/commit/56203e33046b5d5e89bf6a1ddb476c304286a469"><code>56203e3</code></a>
Bumping version to 1.40.46</li>
<li><a
href="https://github.com/boto/boto3/commit/9aa23eb52d6e2289598ed5d8c065fb1194d7b884"><code>9aa23eb</code></a>
Add changelog entries from botocore</li>
<li><a
href="https://github.com/boto/boto3/commit/4a131a0de21a114459db315cd3d85ce20bbabefe"><code>4a131a0</code></a>
Merge branch 'release-1.40.45'</li>
<li><a
href="https://github.com/boto/boto3/commit/081b0dd833367c009abffc192cf97db6fba0f676"><code>081b0dd</code></a>
Merge branch 'release-1.40.45' into develop</li>
<li><a
href="https://github.com/boto/boto3/commit/c572cac99a0d818b22c15660b10fe551f8f2084d"><code>c572cac</code></a>
Bumping version to 1.40.45</li>
<li><a
href="https://github.com/boto/boto3/commit/584a71bac86c7f52068032b5e4eea9c69e97f5bf"><code>584a71b</code></a>
Add changelog entries from botocore</li>
<li><a
href="https://github.com/boto/boto3/commit/61ee9341bc847c75124ff01a08755c6ff1abf597"><code>61ee934</code></a>
Merge branch 'release-1.40.44'</li>
<li><a
href="https://github.com/boto/boto3/commit/7b6ce2a5e22da7a92312e3b8ed638a6ee9e87afb"><code>7b6ce2a</code></a>
Merge branch 'release-1.40.44' into develop</li>
<li><a
href="https://github.com/boto/boto3/commit/01553e722faf66a82ff448776c331b5cdd07e31a"><code>01553e7</code></a>
Bumping version to 1.40.44</li>
<li>Additional commits viewable in <a
href="https://github.com/boto/boto3/compare/1.40.36...1.40.46">compare
view</a></li>
</ul>
</details>
<br />
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent a45b337 commit 41049c8Copy full SHA for 41049c8
File tree
Expand file treeCollapse file tree
1 file changed
+8
-8
lines changedOpen diff view settings
Filter options
Expand file treeCollapse file tree
1 file changed
+8
-8
lines changedOpen diff view settings
Collapse file
+8-8Lines changed: 8 additions & 8 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | | - | |
| 18 | + | |
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
| 30 | + | |
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
35 | | - | |
| 34 | + | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
0 commit comments