Deps: Bump the python-packages group with 7 updates
Bumps the python-packages group with 7 updates:
| Package | From | To |
|---|---|---|
| coverage | 7.6.3 |
7.6.4 |
| anyio | 4.6.2 |
4.6.2.post1 |
| cryptography | 43.0.1 |
43.0.3 |
| markupsafe | 3.0.1 |
3.0.2 |
| ruff | 0.6.9 |
0.7.0 |
| starlette | 0.40.0 |
0.41.0 |
| uvicorn | 0.31.1 |
0.32.0 |
Updates coverage from 7.6.3 to 7.6.4
Changelog
Sourced from coverage's changelog.
Version 7.6.4 — 2024-10-20
- fix: multi-line
withstatements could cause contained branches to be incorrectly marked as missing (issue 1880_). This is now fixed... _issue 1880: nedbat/coveragepy#1880
.. _changes_7-6-3:
Commits
f24f76bdocs: sample HTML for 7.6.496e10f7docs: prep for 7.6.4b8c236afix: multi-line with-statements exit correctly. #188064b7a45docs: another discord reference68d7427docs: Python Discord43adceabuild: include 3.14 in the usual Pythonsfb2b49fbuild: github_releases can update older releases, and pauses to get the sorti...ca550ca3.0b2 wasn't correctly titleddebcc77build: bump version- See full diff in compare view
Updates anyio from 4.6.2 to 4.6.2.post1
Commits
- See full diff in compare view
Updates cryptography from 43.0.1 to 43.0.3
Changelog
Sourced from cryptography's changelog.
43.0.3 - 2024-10-18
* Fixed release metadata for ``cryptography-vectors``.. _v43-0-2:
43.0.2 - 2024-10-18
- Fixed compilation when using LibreSSL 4.0.0.
.. _v43-0-1:
Commits
c2afb4fBackport metadata fix for vectors (#11797)9a3cdb543.0.2 release: fix libressl 4.0.0 (#11796)- See full diff in compare view
Updates markupsafe from 3.0.1 to 3.0.2
Release notes
Sourced from markupsafe's releases.
3.0.2
This is the MarkupSafe 3.0.2 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes.
PyPI: https://pypi.org/project/MarkupSafe/3.0.2/ Changes: https://markupsafe.palletsprojects.com/page/changes/#version-3-0-2 Milestone: https://github.com/pallets/markupsafe/milestone/14?closed=1
Changelog
Sourced from markupsafe's changelog.
Version 3.0.2
Released 2024-10-18
- Fix compatibility when
__str__returns astrsubclass. :issue:472- Build requires setuptools >= 70.1. :issue:
475
Commits
28ace20release version 3.0.26b51fd8build requires at least setuptools 70.1 (#478)99dda9fbuild requires at least setuptools 70.13d8fd8cfix version1933c4bfix versione85aff4relax speedups str check (#477)8cb1691relax speedups str check4dafb7cstart version 3.1.09c44ecfupdate docs build275c769Merge branch '2.1.x' into 3.0.x- Additional commits viewable in compare view
Updates ruff from 0.6.9 to 0.7.0
Release notes
Sourced from ruff's releases.
0.7.0
Release Notes
Check out the blog post for a migration guide and overview of the changes!
Breaking changes
- The pytest rules
PT001andPT023now default to omitting the decorator parentheses when there are no arguments (#12838, #13292). This was a change that we attempted to make in Ruff v0.6.0, but only partially made due to an error on our part. See the blog post for more details.- The
useless-try-exceptrule (in ourtryceratopscategory) has been recoded fromTRY302toTRY203(#13502). This ensures Ruff's code is consistent with the same rule in thetryceratopslinter.- The
lint.allow-unused-importssetting has been removed (#13677). Uselint.pyflakes.allow-unused-importsinstead.Formatter preview style
- Normalize implicit concatenated f-string quotes per part (#13539)
Preview linter features
- [
refurb] implementhardcoded-string-charset(FURB156) (#13530)- [
refurb] Count codepoints not bytes forslice-to-remove-prefix-or-suffix (FURB188)(#13631)Rule changes
- [
pylint] MarkPLE1141fix as unsafe (#13629)- [
flake8-async] Consider async generators to be "checkpoints" forcancel-scope-no-checkpoint(ASYNC100) (#13639)- [
flake8-bugbear] Do not suggest setting parameterstrict=toFalseinB905diagnostic message (#13656)- [
flake8-todos] Only flag the word "TODO", not words starting with "todo" (TD006) (#13640)- [
pycodestyle] Fix whitespace-related false positives and false negatives inside type-parameter lists (E231,E251) (#13704)- [
flake8-simplify] Stabilize preview behavior forSIM115so that the rule can detect files being opened from a wider range of standard-library functions (#12959).CLI
- Add explanation of fixable in
--statisticscommand (#13774)Bug fixes
- [
pyflakes] Allowipytestcell magic (F401) (#13745)- [
flake8-use-pathlib] FixPTH123false positive whenopenis passed a file descriptor (#13616)- [
flake8-bandit] Detect patterns from multi line SQL statements (S608) (#13574)- [
flake8-pyi] - Fix dropped expressions inPYI030autofix (#13727)Contributors
... (truncated)
Changelog
Sourced from ruff's changelog.
0.7.0
Check out the blog post for a migration guide and overview of the changes!
Breaking changes
- The pytest rules
PT001andPT023now default to omitting the decorator parentheses when there are no arguments (#12838, #13292). This was a change that we attempted to make in Ruff v0.6.0, but only partially made due to an error on our part. See the blog post for more details.- The
useless-try-exceptrule (in ourtryceratopscategory) has been recoded fromTRY302toTRY203(#13502). This ensures Ruff's code is consistent with the same rule in thetryceratopslinter.- The
lint.allow-unused-importssetting has been removed (#13677). Uselint.pyflakes.allow-unused-importsinstead.Formatter preview style
- Normalize implicit concatenated f-string quotes per part (#13539)
Preview linter features
- [
refurb] implementhardcoded-string-charset(FURB156) (#13530)- [
refurb] Count codepoints not bytes forslice-to-remove-prefix-or-suffix (FURB188)(#13631)Rule changes
- [
pylint] MarkPLE1141fix as unsafe (#13629)- [
flake8-async] Consider async generators to be "checkpoints" forcancel-scope-no-checkpoint(ASYNC100) (#13639)- [
flake8-bugbear] Do not suggest setting parameterstrict=toFalseinB905diagnostic message (#13656)- [
flake8-todos] Only flag the word "TODO", not words starting with "todo" (TD006) (#13640)- [
pycodestyle] Fix whitespace-related false positives and false negatives inside type-parameter lists (E231,E251) (#13704)- [
flake8-simplify] Stabilize preview behavior forSIM115so that the rule can detect files being opened from a wider range of standard-library functions (#12959).CLI
- Add explanation of fixable in
--statisticscommand (#13774)Bug fixes
Commits
5e6de4eChangelog for Ruff v0.7 (#13794)70e5c4aRecodeTRY302toTRY203(#13502)9218d6bRemoveallow-unused-importssetting from the common lint options (#13677)1b79ae9[ruff-0.7] Stabilise the expansion ofopen-file-with-context-handlerto wor...2b87587[flake8-pytest-style] Fix defaults whenlint.flake8-pytest-styleconfig s...d1e15f6Remove tab-size setting (#12835)89a8215Remove error messages for removed CLI aliases (#12833)202c6a6Removeoutput-format=textsetting (#12836)5c3c0c4[red-knot] Inference for comparison of union types (#13781)6b7a738Add explanation of fixable in--statisticscommand (#13774)- Additional commits viewable in compare view
Updates starlette from 0.40.0 to 0.41.0
Release notes
Sourced from starlette's releases.
Version 0.41.0
Added
- Allow to raise
HTTPExceptionbeforewebsocket.accept()encode/starlette#2725
Changelog
Sourced from starlette's changelog.
0.41.0 (October 15, 2024)
Added
- Allow to raise
HTTPExceptionbeforewebsocket.accept()#2725.
Commits
46131a1Version 0.41.0 (#2729)99b6938Allow to raiseHTTPExceptionbeforewebsocket.accept()(#2725)- See full diff in compare view
Updates uvicorn from 0.31.1 to 0.32.0
Release notes
Sourced from uvicorn's releases.
Version 0.32.0
Added
Full Changelog: https://github.com/encode/uvicorn/compare/0.31.1...0.32.0
Commits
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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Conventional Commits Report
| Type | Number |
|---|---|
| Dependencies | 1 |
:rocket: Conventional commits found.
Looks like these dependencies are updatable in another way, so this is no longer needed.