Deps: Bump the python-packages group across 1 directory with 11 updates
Bumps the python-packages group with 11 updates in the / directory:
| Package | From | To |
|---|---|---|
| packaging | 24.2 |
25.0 |
| pontos | 25.3.3 |
25.4.0 |
| autohooks | 25.3.0 |
25.4.1 |
| certifi | 2025.1.31 |
2025.4.26 |
| exceptiongroup | 1.2.2 |
1.3.0 |
| httpcore | 0.13.2 |
1.0.9 |
| httpx | 0.25.1 |
0.28.1 |
| lxml | 5.3.2 |
5.4.0 |
| mypy-extensions | 1.0.0 |
1.1.0 |
| platformdirs | 4.3.7 |
4.3.8 |
| ruff | 0.11.5 |
0.11.9 |
Updates packaging from 24.2 to 25.0
Release notes
Sourced from packaging's releases.
25.0
What's Changed
- Re-add a test for Unicode file name parsing by
@Siddhesh-Agarwalin pypa/packaging#863- Upgrade to ruff 0.9.1 by
@DimitriPapadopoulosin pypa/packaging#865- Add support for PEP 738 Android tags by
@mhsmithin pypa/packaging#880- feat(markers): support 'extras' and 'dependency_groups' markers by
@frostmingin pypa/packaging#888New Contributors
@Siddhesh-Agarwalmade their first contribution in pypa/packaging#863@mhsmithmade their first contribution in pypa/packaging#880@frostmingmade their first contribution in pypa/packaging#888Full Changelog: https://github.com/pypa/packaging/compare/24.2...25.0
Changelog
Sourced from packaging's changelog.
25.0 - 2025-04-19
* PEP 751: Add support for ``extras`` and ``dependency_groups`` markers. (:issue:`885`) * PEP 738: Add support for Android platform tags. (:issue:`880`)
Commits
f585376Bump for release600eceaAdd changelog entries3910129support 'extras' and 'dependency_groups' markers (#888)8e49b43Add support for PEP 738 Android tags (#880)e624d8eBump the github-actions group with 3 updates (#886)71f38d8Bump the github-actions group with 2 updates (#878)9b4922dBump the github-actions group with 3 updates (#870)8510bd9Upgrade to ruff 0.9.1 (#865)9375ec2Re-add tests for Unicode file name parsing (#863)2256ed4Bump the github-actions group across 1 directory with 2 updates (#864)- Additional commits viewable in compare view
Updates pontos from 25.3.3 to 25.4.0
Release notes
Sourced from pontos's releases.
pontos 25.4.0
25.4.0 - 2025-04-28
Dependencies
- Bump the python-packages group across 1 directory with 8 updates 58a0889
- Bump the python-packages group with 5 updates d090af5
- Bump the python-packages group with 8 updates f8a9b52
- Bump the python-packages group across 1 directory with 5 updates 8d12c14
- Bump actions/upload-artifact in the actions group 0242859
Commits
d4ab71cAutomatic release to 25.4.058a0889Deps: Bump the python-packages group across 1 directory with 8 updatesd090af5Deps: Bump the python-packages group with 5 updatesf8a9b52Deps: Bump the python-packages group with 8 updates8d12c14Deps: Bump the python-packages group across 1 directory with 5 updates0242859Deps: Bump actions/upload-artifact in the actions group2605224Automatic adjustments after release [skip ci]- See full diff in compare view
Updates autohooks from 25.3.0 to 25.4.1
Release notes
Sourced from autohooks's releases.
autohooks 25.4.1
25.4.1 - 2025-04-25
Dependencies
- Update deps - fix h11 bcd7773
autohooks 25.4.0
25.4.0 - 2025-04-23
Dependencies
Commits
c3bda42Automatic release to 25.4.1bcd7773Deps: Update deps - fix h119bfa624Automatic adjustments after release [skip ci]65b53e5Automatic release to 25.4.00c35d6bDeps: Bump the dependencies group with 4 updatesf2ef4edDeps: Bump the dependencies group with 5 updates1fb3b60Deps: Bump the dependencies group with 3 updatesc22bddbDeps: Bump the dependencies group with 3 updates4fe804bDeps: Bump the dependencies group with 3 updates607cc08Automatic adjustments after release [skip ci]- See full diff in compare view
Updates certifi from 2025.1.31 to 2025.4.26
Commits
275c9eb2025.04.26 (#347)3788331Bump actions/setup-python from 5.4.0 to 5.5.0 (#346)9d1f1b7Bump actions/download-artifact from 4.1.9 to 4.2.1 (#344)96b97a5Bump actions/upload-artifact from 4.6.1 to 4.6.2 (#343)c054ed3Bump peter-evans/create-pull-request from 7.0.7 to 7.0.8 (#342)44547fcBump actions/download-artifact from 4.1.8 to 4.1.9 (#341)5ea5124Bump actions/upload-artifact from 4.6.0 to 4.6.1 (#340)2f142b7Bump peter-evans/create-pull-request from 7.0.6 to 7.0.7 (#339)80d2ebdBump actions/setup-python from 5.3.0 to 5.4.0 (#337)- See full diff in compare view
Updates exceptiongroup from 1.2.2 to 1.3.0
Release notes
Sourced from exceptiongroup's releases.
1.3.0
- Added
**kwargsto function and method signatures as appropriate to match the signatures in the standard library- In line with the stdlib typings in typeshed, updated
(Base)ExceptionGroupgeneric types to define defaults for their generic arguments (defaulting toBaseExceptionGroup[BaseException]andExceptionGroup[Exception]) (PR by@mikenerone)- Changed
BaseExceptionGroup.__init__()to directly callBaseException.__init__()instead of the superclass__init__()in order to emulate the CPython behavior (broken or not) (PR by@cfbolz)- Changed the
exceptionsattribute to always return the same tuple of exceptions, created from the original exceptions sequence passed toBaseExceptionGroupto match CPython behavior (#143)
Changelog
Sourced from exceptiongroup's changelog.
Version history
This library adheres to
Semantic Versioning 2.0 <http://semver.org/>_.1.3.0
- Added
**kwargsto function and method signatures as appropriate to match the signatures in the standard library- In line with the stdlib typings in typeshed, updated
(Base)ExceptionGroupgeneric types to define defaults for their generic arguments (defaulting toBaseExceptionGroup[BaseException]andExceptionGroup[Exception]) (PR by@mikenerone)- Changed
BaseExceptionGroup.__init__()to directly callBaseException.__init__()instead of the superclass__init__()in order to emulate the CPython behavior (broken or not) (PR by@cfbolz)- Changed the
exceptionsattribute to always return the same tuple of exceptions, created from the original exceptions sequence passed toBaseExceptionGroupto match CPython behavior ([#143](https://github.com/agronholm/exceptiongroup/issues/143) <https://github.com/agronholm/exceptiongroup/issues/143>_)1.2.2
- Removed an
assertinexceptiongroup._formattingthat caused compatibility issues with Sentry ([#123](https://github.com/agronholm/exceptiongroup/issues/123) <https://github.com/agronholm/exceptiongroup/issues/123>_)1.2.1
- Updated the copying of
__notes__to match CPython behavior (PR by CF Bolz-Tereick)- Corrected the type annotation of the exception handler callback to accept a
BaseExceptionGroupinstead ofBaseException- Fixed type errors on Python < 3.10 and the type annotation of
suppress()(PR by John Litborn)1.2.0
- Added special monkeypatching if
Apport <https://github.com/canonical/apport>_ has overriddensys.excepthookso it will format exception groups correctly (PR by John Litborn)- Added a backport of
contextlib.suppress()from Python 3.12.1 which also handles suppressing exceptions inside exception groups- Fixed bare
raisein a handler reraising the original naked exception rather than an exception group which is what is raised when you do araisein anexcept*handler1.1.3
catch()now raises aTypeErrorif passed an async exception handler instead of just giving aRuntimeWarningabout the coroutine never being awaited. (#66, PR by John Litborn)
... (truncated)
Commits
77fba8aAdded the release version5e153aaRevert "Migrated test dependencies to dependency groups"5000bfeMigrated tox configuration to native TOML427220dUpdated pytest options4ca264fMigrated test dependencies to dependency groups163c3a8Marked test_exceptions_mutate_original_sequence as xfail on pypy3.11a176574Always create the exceptions tuple at init and return it from the exceptions ...550b796Added BaseExceptionGroup.init, following CPython (#142)2a84dfdAdded typevar defaults to (Base)ExceptionGroup (#147)fb9133b[pre-commit.ci] pre-commit autoupdate (#145)- Additional commits viewable in compare view
Updates httpcore from 0.13.2 to 1.0.9
Release notes
Sourced from httpcore's releases.
Version 1.0.9 (April 24th, 2025)
- Resolve https://github.com/advisories/GHSA-vqfr-h8mv-ghfj with h11 dependency update. (#1008)
Version 1.0.8 (April 11th, 2025)
- Fix
AttributeErrorwhen importing on Python 3.14. (#1005)Version 1.0.7 (November 15th, 2024)
- Support
proxy=…configuration onConnectionPool(). (#974)Version 1.0.6 (October 1st, 2024)
- Relax
triodependency pinning. (#956)- Handle
trioraisingNotImplementedErroron unsupported platforms. (#955)- Handle mapping
ssl.SSLErrortohttpcore.ConnectError. (#918)Version 1.0.5
1.0.5 (March 27th, 2024)
- Handle
EndOfStreamfor anyio backend. (encode/httpcore#899)- Allow trio
0.25.*series in package dependancies. (encode/httpcore#903)Version 1.0.4
1.0.4 (February 21st, 2024)
- Add
targetrequest extension. (#888)- Fix support for connection
UpgradeandCONNECTwhen some data in the stream has been read. (#882)Version 1.0.3
1.0.3 (February 13th, 2024)
- Fix support for async cancellations. (#880)
- Fix trace extension when used with socks proxy. (#849)
- Fix SSL context for connections using the "wss" scheme (#869)
Version 1.0.2
1.0.2 (November 10th, 2023)
- Fix
float("inf")timeouts inEvent.waitfunction. (#846)Version 1.0.1
1.0.1 (November 3rd, 2023)
- Fix pool timeout to account for the total time spent retrying. (#823)
- Raise a neater RuntimeError when the correct async deps are not installed. (#826)
- Add support for synchronous TLS-in-TLS streams. (#840)
Version 1.0.0
... (truncated)
Changelog
Sourced from httpcore's changelog.
Version 1.0.9 (April 24th, 2025)
- Resolve https://github.com/advisories/GHSA-vqfr-h8mv-ghfj with h11 dependency update. (#1008)
Version 1.0.8 (April 11th, 2025)
- Fix
AttributeErrorwhen importing on Python 3.14. (#1005)Version 1.0.7 (November 15th, 2024)
- Support
proxy=…configuration onConnectionPool(). (#974)Version 1.0.6 (October 1st, 2024)
- Relax
triodependency pinning. (#956)- Handle
trioraisingNotImplementedErroron unsupported platforms. (#955)- Handle mapping
ssl.SSLErrortohttpcore.ConnectError. (#918)1.0.5 (March 27th, 2024)
- Handle
EndOfStreamexception for anyio backend. (#899)- Allow trio
0.25.*series in package dependancies. (#903)1.0.4 (February 21st, 2024)
- Add
targetrequest extension. (#888)- Fix support for connection
UpgradeandCONNECTwhen some data in the stream has been read. (#882)1.0.3 (February 13th, 2024)
- Fix support for async cancellations. (#880)
- Fix trace extension when used with socks proxy. (#849)
- Fix SSL context for connections using the "wss" scheme (#869)
1.0.2 (November 10th, 2023)
- Fix
float("inf")timeouts inEvent.waitfunction. (#846)1.0.1 (November 3rd, 2023)
- Fix pool timeout to account for the total time spent retrying. (#823)
- Raise a neater RuntimeError when the correct async deps are not installed. (#826)
- Add support for synchronous TLS-in-TLS streams. (#840)
1.0.0 (October 6th, 2023)
From version 1.0 our async support is now optional, as the package has minimal dependencies by default.
For async support use either
pip install 'httpcore[asyncio]'orpip install 'httpcore[trio]'.
... (truncated)
Commits
9820975Version 1.0.9 (#1011)d1e17c5Update h11 dependency, resolving security fix. (#1008)ae46dfbVersion 1.0.8 (#1006)b2a796cFixAttributeErrorwhen importing on Python 3.14 (#1005)38f277cRevert "Use AnyIO fast_acquire (#953)" (#1002)973cbddUse AnyIO fast_acquire (#953)8b8ab18fix ci (#999)a173552Version 1.0.7 (#977)13e281dAdd proxy configuration to ConnectionPool. (#974)0bfcee4default port for the socks5h scheme (#972)- Additional commits viewable in compare view
Updates httpx from 0.25.1 to 0.28.1
Release notes
Sourced from httpx's releases.
Version 0.28.1
0.28.1 (6th December, 2024)
- Fix SSL case where
verify=Falsetogether with client side certificates.Version 0.28.0
0.28.0 (28th November, 2024)
The 0.28 release includes a limited set of deprecations.
Deprecations:
We are working towards a simplified SSL configuration API.
For users of the standard
verify=Trueorverify=Falsecases, orverify=<ssl_context>case this should require no changes. The following cases have been deprecated...
- The
verifyargument as a string argument is now deprecated and will raise warnings.- The
certargument is now deprecated and will raise warnings.Our revised SSL documentation covers how to implement the same behaviour with a more constrained API.
The following changes are also included:
- The deprecated
proxiesargument has now been removed.- The deprecated
appargument has now been removed.- JSON request bodies use a compact representation. (#3363)
- Review URL percent escape sets, based on WHATWG spec. (#3371, #3373)
- Ensure
certifiandhttpcoreare only imported if required. (#3377)- Treat
socks5has a valid proxy scheme. (#3178)- Cleanup
Request()method signature in line withclient.request()andhttpx.request(). (#3378)- Bugfix: When passing
params={}, always strictly update rather than merge with an existing querystring. (#3364)Version 0.27.2
0.27.2 (27th August, 2024)
Fixed
- Reintroduced supposedly-private
URLTypesshortcut. (#2673)Version 0.27.1
0.27.1 (27th August, 2024)
Added
- Support for
zstdcontent decoding using the pythonzstandardpackage is added. Installable usinghttpx[zstd]. (#3139)Fixed
... (truncated)
Changelog
Sourced from httpx's changelog.
0.28.1 (6th December, 2024)
- Fix SSL case where
verify=Falsetogether with client side certificates.0.28.0 (28th November, 2024)
Be aware that the default JSON request bodies now use a more compact representation. This is generally considered a prefered style, tho may require updates to test suites.
The 0.28 release includes a limited set of deprecations...
Deprecations:
We are working towards a simplified SSL configuration API.
For users of the standard
verify=Trueorverify=Falsecases, orverify=<ssl_context>case this should require no changes. The following cases have been deprecated...
- The
verifyargument as a string argument is now deprecated and will raise warnings.- The
certargument is now deprecated and will raise warnings.Our revised SSL documentation covers how to implement the same behaviour with a more constrained API.
The following changes are also included:
- The deprecated
proxiesargument has now been removed.- The deprecated
appargument has now been removed.- JSON request bodies use a compact representation. (#3363)
- Review URL percent escape sets, based on WHATWG spec. (#3371, #3373)
- Ensure
certifiandhttpcoreare only imported if required. (#3377)- Treat
socks5has a valid proxy scheme. (#3178)- Cleanup
Request()method signature in line withclient.request()andhttpx.request(). (#3378)- Bugfix: When passing
params={}, always strictly update rather than merge with an existing querystring. (#3364)0.27.2 (27th August, 2024)
Fixed
- Reintroduced supposedly-private
URLTypesshortcut. (#2673)0.27.1 (27th August, 2024)
Added
- Support for
zstdcontent decoding using the pythonzstandardpackage is added. Installable usinghttpx[zstd]. (#3139)Fixed
- Improved error messaging for
InvalidURLexceptions. (#3250)- Fix
apptype signature inASGITransport. (#3109)0.27.0 (21st February, 2024)
... (truncated)
Commits
26d48e0Version 0.28.1 (#3445)89599a9Fixverify=False,cert=...case. (#3442)8ecb86fAdd test for request params behavior changes (#3364) (#3440)0cb7e5aBump the python-packages group with 11 updates (#3434)15e21e9Updating deprecated docstring Client() class (#3426)80960faVersion 0.28.0. (#3419)a33c878Fixextensionstype annotation. (#3380)ce7e14dError on verify as str. (#3418)47f4a96Handle empty zstd responses (#3412)189fc4bUpdate CHANGELOG.md, fix typo(s) (#3406)- Additional commits viewable in compare view
Updates lxml from 5.3.2 to 5.4.0
Release notes
Sourced from lxml's releases.
lxml-5.4.0
5.4.0 (2025-04-22)
Bugs fixed
- LP#2107279: Binary wheels use libxml2 2.13.8 and libxslt 1.1.43 to resolve several CVEs. (Binary wheels for Windows continue to use a patched libxml2 2.11.9 and libxslt 1.1.39.) Issue found by Anatoly Katyushin, see https://bugs.launchpad.net/lxml/+bug/2107279
Changelog
Sourced from lxml's changelog.
5.4.0 (2025-04-22)
Bugs fixed
- LP#2107279: Binary wheels use libxml2 2.13.8 and libxslt 1.1.43 to resolve several CVEs. (Binary wheels for Windows continue to use a patched libxml2 2.11.9 and libxslt 1.1.39.) Issue found by Anatoly Katyushin.
Commits
6e76d57Build: Exclude slow Py3.9 wheel builds for s390/ppc and Py3.7 for ARM64.ee10c02Prepare release of lxml 5.4.0.0e4f3c3Prepare release of lxml 5.3.3.b4703fcUpdate changelog.db723bbBuild: Use libxslt 1.1.43 instead of 1.1.42 to resolve some CVEs.a664877Build: Use libxml2 2.13.8 instead of 2.12.x to resolve some CVEs.df4633eRemove appveyor usage.- See full diff in compare view
Updates mypy-extensions from 1.0.0 to 1.1.0
Commits
70d9435remove dev from version8d272bbSwitch build-backend to flit_core + use License-Expression for project metada...1b46102Bump dev version to 1.1.0-dev (#57)400534fDeprecate mypy_extensions.NoReturn (#56)23fbfa5Update flake8 to 7.1.1 (#54)9ddbb08Cleanup tests (#55)6d9c7b7Move metadata to pyproject + drop Python 3.7 (#53)812066c[pre-commit.ci] pre-commit autoupdate (#49)9dd6d98Add support for Python 3.12 (#48)e0c6670Deprecatemypy_extensions.TypedDict(#47)- Additional commits viewable in compare view
Updates platformdirs from 4.3.7 to 4.3.8
Release notes
Sourced from platformdirs's releases.
4.3.8
What's Changed
- Add missing examples and fix order of examples in README by
@gene1woodin tox-dev/platformdirs#355New Contributors
@gene1woodmade their first contribution in tox-dev/platformdirs#355Full Changelog: https://github.com/tox-dev/platformdirs/compare/4.3.7...4.3.8
Commits
22089f1Add missing examples and fix order of examples in README (#355)29398b1[pre-commit.ci] pre-commit autoupdate (#354)70114b0[pre-commit.ci] pre-commit autoupdate (#353)4891611[pre-commit.ci] pre-commit autoupdate (#351)707be6fBump astral-sh/setup-uv from 5 to 6 in the all group (#352)5519a4f[pre-commit.ci] pre-commit autoupdate (#349)063275e[pre-commit.ci] pre-commit autoupdate (#346)39fc384[pre-commit.ci] pre-commit autoupdate (#345)- See full diff in compare view
Updates ruff from 0.11.5 to 0.11.9
Release notes
Sourced from ruff's releases.
0.11.9
Release Notes
Preview features
- Default to latest supported Python version for version-related syntax errors (#17529)
- Implement deferred annotations for Python 3.14 (#17658)
- [
airflow] FixSQLTableCheckOperatortypo (AIR302) (#17946)- [
airflow] Removeairflow.utils.dag_parsing_context.get_parsing_context(AIR301) (#17852)- [
airflow] Skip attribute check in try catch block (AIR301) (#17790)- [
flake8-bandit] Mark tuples of string literals as trusted input inS603(#17801)- [
isort] Check full module path against project root(s) when categorizing first-party imports (#16565)- [
ruff] Add new rulein-empty-collection(RUF060) (#16480)Bug fixes
- Fix missing
combinecall forlint.typing-extensionssetting (#17823)- [
flake8-async] Fix module name inASYNC110,ASYNC115, andASYNC116fixes (#17774)- [
pyupgrade] Add spaces between tokens as necessary to avoid syntax errors inUP018autofix (#17648)- [
refurb] Fix false positive for float and complex numbers inFURB116(#17661)- [parser] Flag single unparenthesized generator expr with trailing comma in arguments. (#17893)
Documentation
- Add instructions on how to upgrade to a newer Rust version (#17928)
- Update code of conduct email address (#17875)
- Add fix safety sections to
PLC2801,PLR1722, andRUF013(#17825, #17826, #17759)- Add link to
check-typed-exceptionfromS110andS112(#17786)Other changes
- Allow passing a virtual environment to
ruff analyze graph(#17743)Contributors
... (truncated)
Changelog
Sourced from ruff's changelog.
0.11.9
Preview features
- Default to latest supported Python version for version-related syntax errors (#17529)
- Implement deferred annotations for Python 3.14 (#17658)
- [
airflow] FixSQLTableCheckOperatortypo (AIR302) (#17946)- [
airflow] Removeairflow.utils.dag_parsing_context.get_parsing_context(AIR301) (#17852)- [
airflow] Skip attribute check in try catch block (AIR301) (#17790)- [
flake8-bandit] Mark tuples of string literals as trusted input inS603(#17801)- [
isort] Check full module path against project root(s) when categorizing first-party imports (#16565)- [
ruff] Add new rulein-empty-collection(RUF060) (#16480)Bug fixes
- Fix missing
combinecall forlint.typing-extensionssetting (#17823)- [
flake8-async] Fix module name inASYNC110,ASYNC115, andASYNC116fixes (#17774)- [
pyupgrade] Add spaces between tokens as necessary to avoid syntax errors inUP018autofix (#17648)- [
refurb] Fix false positive for float and complex numbers inFURB116(#17661)- [parser] Flag single unparenthesized generator expr with trailing comma in arguments. (#17893)
Documentation
- Add instructions on how to upgrade to a newer Rust version (#17928)
- Update code of conduct email address (#17875)
- Add fix safety sections to
PLC2801,PLR1722, andRUF013(#17825, #17826, #17759)- Add link to
check-typed-exceptionfromS110andS112(#17786)Other changes
- Allow passing a virtual environment to
ruff analyze graph(#17743)0.11.8
Preview features
- [
airflow] Apply auto fixes to cases where the names have changed in Airflow 3 (AIR302,AIR311) (#17553, #17570, #17571)- [
airflow] ExtendAIR301rule (#17598)- [
airflow] Update existingAIR302rules with better suggestions (#17542)- [
refurb] Mark fix as safe forreadlines-in-for(FURB129) (#17644)- [syntax-errors]
nonlocaldeclaration at module level (#17559)- [syntax-errors] Detect single starred expression assignment
x = *y(#17624)Bug fixes
- [
flake8-pyi] EnsureLiteral[None,] | Literal[None,]is not autofixed toNone | None(PYI061) (#17659)- [
flake8-use-pathlib] Avoid suggestingPath.iterdir()foros.listdirwith file descriptor (PTH208) (#17715)- [
flake8-use-pathlib] FixPTH104false positive whenrenameis passed a file descriptor (#17712)- [
flake8-use-pathlib] FixPTH116false positive whenstatis passed a file descriptor (#17709)- [
flake8-use-pathlib] FixPTH123false positive whenopenis passed a file descriptor from a function call (#17705)
... (truncated)
Commits
2370297Bump 0.11.9 (#17986)a137cb1[ty] Display "All checks passed!" message in green (#17982)03a4d56[ty] Change range ofrevealed-typediagnostic to be the range of the argume...642eac4[ty] Recursive protocols (#17929)c1b8757[ty] CLI reference (#17978)6cd8a49[ty] Update salsa (#17964)12ce445[ty] Document configuration schema (#17950)f46ed8d[ty] Add --config CLI arg (#17697)6c177e2[ty] primer updates (#17903)3d2485e[ty] fix more ecosystem/fuzzer panics with fixpoint (#17758)- Additional commits viewable in compare view
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