← Back to issue list

chore(deps): update patch updates

View original Github issue

Metadata

Project
craft-archives
Number
#30
Type
pull request
State
merged
Author
renovate[bot]
Labels
Created
Updated
Closed

Current evaluation

Merged automated patch updates for coverage, pytest, and ruff via Renovate. Versions advanced to 7.2.1, 7.2.2, and 0.0.254. Changes passed CI and review before merging into main.

Suggested action:

No scores available.

Issue body

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [coverage](https://togithub.com/nedbat/coveragepy) | `==7.2.0` -> `==7.2.1` | [![age](https://badges.renovateapi.com/packages/pypi/coverage/7.2.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/coverage/7.2.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/coverage/7.2.1/compatibility-slim/7.2.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/coverage/7.2.1/confidence-slim/7.2.0)](https://docs.renovatebot.com/merge-confidence/) | | [pytest](https://docs.pytest.org/en/latest/) ([source](https://togithub.com/pytest-dev/pytest), [changelog](https://docs.pytest.org/en/stable/changelog.html)) | `==7.2.1` -> `==7.2.2` | [![age](https://badges.renovateapi.com/packages/pypi/pytest/7.2.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/pytest/7.2.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/pytest/7.2.2/compatibility-slim/7.2.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/pytest/7.2.2/confidence-slim/7.2.1)](https://docs.renovatebot.com/merge-confidence/) | | [ruff](https://togithub.com/charliermarsh/ruff) | `==0.0.252` -> `==0.0.254` | [![age](https://badges.renovateapi.com/packages/pypi/ruff/0.0.254/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/ruff/0.0.254/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/ruff/0.0.254/compatibility-slim/0.0.252)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/ruff/0.0.254/confidence-slim/0.0.252)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>nedbat/coveragepy</summary> ### [`v7.2.1`](https://togithub.com/nedbat/coveragepy/blob/HEAD/CHANGES.rst#Version-721--2023-02-26) [Compare Source](https://togithub.com/nedbat/coveragepy/compare/7.2.0...7.2.1) - Fix: the PyPI page had broken links to documentation pages, but no longer does, closing `issue 1566`\_. - Fix: public members of the coverage module are now properly indicated so that mypy will find them, fixing `issue 1564`\_. .. \_issue 1564:[https://github.com/nedbat/coveragepy/issues/1564](https://togithub.com/nedbat/coveragepy/issues/1564)4 .. \_issue 1566[https://github.com/nedbat/coveragepy/issues/1566](https://togithub.com/nedbat/coveragepy/issues/1566)66 .. \_changes\_7-2-0: </details> <details> <summary>pytest-dev/pytest</summary> ### [`v7.2.2`](https://togithub.com/pytest-dev/pytest/releases/tag/7.2.2) [Compare Source](https://togithub.com/pytest-dev/pytest/compare/7.2.1...7.2.2) # pytest 7.2.2 (2023-03-03) ## Bug Fixes - [#&#8203;10533](https://togithub.com/pytest-dev/pytest/issues/10533): Fixed `pytest.approx`{.interpreted-text role="func"} handling of dictionaries containing one or more values of \[0.0]{.title-ref}. - [#&#8203;10592](https://togithub.com/pytest-dev/pytest/issues/10592): Fixed crash if \[--cache-show]{.title-ref} and \[--help]{.title-ref} are passed at the same time. - [#&#8203;10597](https://togithub.com/pytest-dev/pytest/issues/10597): Fixed bug where a fixture method named `teardown` would be called as part of `nose` teardown stage. - [#&#8203;10626](https://togithub.com/pytest-dev/pytest/issues/10626): Fixed crash if `--fixtures` and `--help` are passed at the same time. - [#&#8203;10660](https://togithub.com/pytest-dev/pytest/issues/10660): Fixed :py`pytest.raises`{.interpreted-text role="func"} to return a 'ContextManager' so that type-checkers could narrow `pytest.raises(...) if ... else nullcontext()` down to 'ContextManager' rather than 'object'. ## Improved Documentation - [#&#8203;10690](https://togithub.com/pytest-dev/pytest/issues/10690): Added \[CI]{.title-ref} and \[BUILD_NUMBER]{.title-ref} environment variables to the documentation. - [#&#8203;10721](https://togithub.com/pytest-dev/pytest/issues/10721): Fixed entry-points declaration in the documentation example using Hatch. - [#&#8203;10753](https://togithub.com/pytest-dev/pytest/issues/10753): Changed wording of the module level skip to be very explicit about not collecting tests and not executing the rest of the module. </details> <details> <summary>charliermarsh/ruff</summary> ### [`v0.0.254`](https://togithub.com/charliermarsh/ruff/releases/tag/v0.0.254) [Compare Source](https://togithub.com/charliermarsh/ruff/compare/v0.0.253...v0.0.254) <!-- Release notes generated using configuration in .github/release.yml at main --> #### What's Changed ##### Rules - \[`pyupgrade`] Replace tuples with type union in isinstance or issubclass calls by [@&#8203;martinlehoux](https://togithub.com/martinlehoux) in [https://github.com/charliermarsh/ruff/pull/3280](https://togithub.com/charliermarsh/ruff/pull/3280) - \[`flake8-pyi`] Add flake-pyi PYI033 "Do not use type comments in stubs" by [@&#8203;konstin](https://togithub.com/konstin) in [https://github.com/charliermarsh/ruff/pull/3302](https://togithub.com/charliermarsh/ruff/pull/3302) - \[`flake8-pyi`] PYI006 bad version info comparison by [@&#8203;konstin](https://togithub.com/konstin) in [https://github.com/charliermarsh/ruff/pull/3291](https://togithub.com/charliermarsh/ruff/pull/3291) - \[`pycodestyle`] feat(E251,E252): add rules by [@&#8203;carlosmiei](https://togithub.com/carlosmiei) in [https://github.com/charliermarsh/ruff/pull/3274](https://togithub.com/charliermarsh/ruff/pull/3274) - \[`pycodestyle`] feat(E211): add rule + autofix by [@&#8203;carlosmiei](https://togithub.com/carlosmiei) in [https://github.com/charliermarsh/ruff/pull/3313](https://togithub.com/charliermarsh/ruff/pull/3313) - \[`pycodestyle`] feat(e225,226,227,228): add rules by [@&#8203;carlosmiei](https://togithub.com/carlosmiei) in [https://github.com/charliermarsh/ruff/pull/3300](https://togithub.com/charliermarsh/ruff/pull/3300) - \[`pycodestyle`] feat(W191): add indentation_contains_tabs by [@&#8203;carlosmiei](https://togithub.com/carlosmiei) in [https://github.com/charliermarsh/ruff/pull/3249](https://togithub.com/charliermarsh/ruff/pull/3249) - Redirect `RUF004` to `B026` by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3293](https://togithub.com/charliermarsh/ruff/pull/3293) ##### CLI - Add a `--ignore-noqa` CLI flag to force-ignore noqa directives by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3296](https://togithub.com/charliermarsh/ruff/pull/3296) ##### Settings - Implement `property-decorators` configuration option for pydocstyle by [@&#8203;staticssleever668](https://togithub.com/staticssleever668) in [https://github.com/charliermarsh/ruff/pull/3311](https://togithub.com/charliermarsh/ruff/pull/3311) - Always include `@classmethod` and `@staticmethod` in decorator lists by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3314](https://togithub.com/charliermarsh/ruff/pull/3314) - Detect quote style ignoring docstrings by [@&#8203;bz2](https://togithub.com/bz2) in [https://github.com/charliermarsh/ruff/pull/3306](https://togithub.com/charliermarsh/ruff/pull/3306) ##### Bug Fixes - Deduplicate SIM116 errors by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3260](https://togithub.com/charliermarsh/ruff/pull/3260) - Don't flag keyword-based logging format strings by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3261](https://togithub.com/charliermarsh/ruff/pull/3261) - Avoid raising TRY200 violations within new scopes by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3275](https://togithub.com/charliermarsh/ruff/pull/3275) - Use expression span for yoda-conditions fixes by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3276](https://togithub.com/charliermarsh/ruff/pull/3276) - Avoid PEP 585 rewrites when builtins are shadowed by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3286](https://togithub.com/charliermarsh/ruff/pull/3286) - Ignore unused imports in ModuleNotFoundError blocks by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3288](https://togithub.com/charliermarsh/ruff/pull/3288) - Treat function type annotations within classes as runtime-required by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3312](https://togithub.com/charliermarsh/ruff/pull/3312) - Extend `RET503` autofixes to "end of statement", including comments by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3324](https://togithub.com/charliermarsh/ruff/pull/3324) - Handle empty NamedTuple and TypedDict conversions by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3251](https://togithub.com/charliermarsh/ruff/pull/3251) - Use `identifier_range` for a few more rules by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3254](https://togithub.com/charliermarsh/ruff/pull/3254) - Match non-lowercase with S105 again by [@&#8203;scop](https://togithub.com/scop) in [https://github.com/charliermarsh/ruff/pull/3258](https://togithub.com/charliermarsh/ruff/pull/3258) - Abort when unable to fix relative imports past module root by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3319](https://togithub.com/charliermarsh/ruff/pull/3319) - Use presence of convention-specific sections during docstring inference by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3325](https://togithub.com/charliermarsh/ruff/pull/3325) - Treat callables within type definitions as default-non-types by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3329](https://togithub.com/charliermarsh/ruff/pull/3329) - Explicitly put `Path(...)` in Pathlib violations by [@&#8203;evanrittenhouse](https://togithub.com/evanrittenhouse) in [https://github.com/charliermarsh/ruff/pull/3333](https://togithub.com/charliermarsh/ruff/pull/3333) #### New Contributors - [@&#8203;rouge8](https://togithub.com/rouge8) made their first contribution in [https://github.com/charliermarsh/ruff/pull/3277](https://togithub.com/charliermarsh/ruff/pull/3277) - [@&#8203;staticssleever668](https://togithub.com/staticssleever668) made their first contribution in [https://github.com/charliermarsh/ruff/pull/3311](https://togithub.com/charliermarsh/ruff/pull/3311) - [@&#8203;bz2](https://togithub.com/bz2) made their first contribution in [https://github.com/charliermarsh/ruff/pull/3306](https://togithub.com/charliermarsh/ruff/pull/3306) - [@&#8203;evanrittenhouse](https://togithub.com/evanrittenhouse) made their first contribution in [https://github.com/charliermarsh/ruff/pull/3333](https://togithub.com/charliermarsh/ruff/pull/3333) **Full Changelog**: https://github.com/charliermarsh/ruff/compare/v0.0.253...v0.0.254 ### [`v0.0.253`](https://togithub.com/charliermarsh/ruff/releases/tag/v0.0.253) [Compare Source](https://togithub.com/charliermarsh/ruff/compare/v0.0.252...v0.0.253) <!-- Release notes generated using configuration in .github/release.yml at 386ca7c9a1bb7ebeb1457b605695c6a09e67092b --> #### What's Changed ##### Rules - \[`pyupgrade`] Avoid rewriting any PEP 604 runtime annotations by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3217](https://togithub.com/charliermarsh/ruff/pull/3217) - \[`pycodestyle`] Missing whitespace after keyword by [@&#8203;carlosmiei](https://togithub.com/carlosmiei) in [https://github.com/charliermarsh/ruff/pull/3225](https://togithub.com/charliermarsh/ruff/pull/3225) - \[`pycodestyle`] trailing-whitespace, blank-line-contains-whitespace (W291, W293) by [@&#8203;mknaw](https://togithub.com/mknaw) in [https://github.com/charliermarsh/ruff/pull/3122](https://togithub.com/charliermarsh/ruff/pull/3122) - \[`flake8-pyi`]: PYI009, PYI010, PYI021 by [@&#8203;sbdchd](https://togithub.com/sbdchd) in [https://github.com/charliermarsh/ruff/pull/3230](https://togithub.com/charliermarsh/ruff/pull/3230) - \[`flake8-pyi`]: PYI011, PYI014 by [@&#8203;sbdchd](https://togithub.com/sbdchd) in [https://github.com/charliermarsh/ruff/pull/3238](https://togithub.com/charliermarsh/ruff/pull/3238) - \[`flake8-django`] DJ003, DJ006, DJ007 by [@&#8203;lkh42t](https://togithub.com/lkh42t) in [https://github.com/charliermarsh/ruff/pull/3236](https://togithub.com/charliermarsh/ruff/pull/3236) - \[`pylint`] Implement pylint's `else-if-used` rule (`PLR5501`) by [@&#8203;chanman3388](https://togithub.com/chanman3388) in [https://github.com/charliermarsh/ruff/pull/3231](https://togithub.com/charliermarsh/ruff/pull/3231) - \[`pylint`] W0603: global-statement by [@&#8203;igozali](https://togithub.com/igozali) in [https://github.com/charliermarsh/ruff/pull/3227](https://togithub.com/charliermarsh/ruff/pull/3227) - \[`flake8-pie`] Unnecessary list comprehension, with autofix (PIE802) by [@&#8203;matthewlloyd](https://togithub.com/matthewlloyd) in [https://github.com/charliermarsh/ruff/pull/3149](https://togithub.com/charliermarsh/ruff/pull/3149) ##### Settings - Allow ruff.toml file to be dot-prefixed (as .ruff.toml) by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3221](https://togithub.com/charliermarsh/ruff/pull/3221) - \[`pydocstyle`]: Implement `ignore-decorators` by [@&#8203;edgarrmondragon](https://togithub.com/edgarrmondragon) in [https://github.com/charliermarsh/ruff/pull/3229](https://togithub.com/charliermarsh/ruff/pull/3229) ##### Bug Fixes - Avoid suggesting 'is' for constant literals by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3146](https://togithub.com/charliermarsh/ruff/pull/3146) - Omit non-.py\[i] files from module naming rules by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3153](https://togithub.com/charliermarsh/ruff/pull/3153) - Bind star patterns in match statements by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3169](https://togithub.com/charliermarsh/ruff/pull/3169) - Update RustPython to support \*tuple annotations by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3178](https://togithub.com/charliermarsh/ruff/pull/3178) - Use `writeln` with --show-settings by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3180](https://togithub.com/charliermarsh/ruff/pull/3180) - Avoid boolean-trap rules for ConfigParser get() methods by [@&#8203;monosans](https://togithub.com/monosans) in [https://github.com/charliermarsh/ruff/pull/3209](https://togithub.com/charliermarsh/ruff/pull/3209) - Avoid flagging logging-too-few-args with no arguments by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3220](https://togithub.com/charliermarsh/ruff/pull/3220) - Expand the range of the COM812 autofix to include the preceding token by [@&#8203;matthewlloyd](https://togithub.com/matthewlloyd) in [https://github.com/charliermarsh/ruff/pull/3241](https://togithub.com/charliermarsh/ruff/pull/3241) - Avoid flagging Pylint logging rules with starred arguments by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3244](https://togithub.com/charliermarsh/ruff/pull/3244) - Avoid flagging unfixable `TypedDict` and `NamedTuple` definitions by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3148](https://togithub.com/charliermarsh/ruff/pull/3148) - Fix ExceptionGroup F821 false positive by [@&#8203;JonathanPlasse](https://togithub.com/JonathanPlasse) in [https://github.com/charliermarsh/ruff/pull/3167](https://togithub.com/charliermarsh/ruff/pull/3167) - Avoid autofixing some PT violations when comments are present by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3198](https://togithub.com/charliermarsh/ruff/pull/3198) - Exclude globsets for --show-settings by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3201](https://togithub.com/charliermarsh/ruff/pull/3201) - \[`flake8-tidy-imports`] fix autofix for relative imports by [@&#8203;sciyoshi](https://togithub.com/sciyoshi) in [https://github.com/charliermarsh/ruff/pull/3197](https://togithub.com/charliermarsh/ruff/pull/3197) - Fix Markdown errors in docs by [@&#8203;JonathanPlasse](https://togithub.com/JonathanPlasse) in [https://github.com/charliermarsh/ruff/pull/3187](https://togithub.com/charliermarsh/ruff/pull/3187) - Normalize treatment of aliased and unaliased imports by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3216](https://togithub.com/charliermarsh/ruff/pull/3216) - Avoid EXE001 and EXE002 errors from stdin input by [@&#8203;charliermarsh](https://togithub.com/charliermarsh) in [https://github.com/charliermarsh/ruff/pull/3218](https://togithub.com/charliermarsh/ruff/pull/3218) - \[bandit]: Do not treat "passed" as "password" for `S105`/`S106`/`S107` by [@&#8203;edgarrmondragon](https://togithub.com/edgarrmondragon) in [https://github.com/charliermarsh/ruff/pull/3222](https://togithub.com/charliermarsh/ruff/pull/3222) #### New Contributors - [@&#8203;mknaw](https://togithub.com/mknaw) made their first contribution in [https://github.com/charliermarsh/ruff/pull/3122](https://togithub.com/charliermarsh/ruff/pull/3122) - [@&#8203;monosans](https://togithub.com/monosans) made their first contribution in [https://github.com/charliermarsh/ruff/pull/3209](https://togithub.com/charliermarsh/ruff/pull/3209) - [@&#8203;lkh42t](https://togithub.com/lkh42t) made their first contribution in [https://github.com/charliermarsh/ruff/pull/3236](https://togithub.com/charliermarsh/ruff/pull/3236) - [@&#8203;igozali](https://togithub.com/igozali) made their first contribution in [https://github.com/charliermarsh/ruff/pull/3227](https://togithub.com/charliermarsh/ruff/pull/3227) **Full Changelog**: https://github.com/charliermarsh/ruff/compare/v0.0.252...v0.0.253 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "every weekend" in timezone Etc/UTC, Automerge - "after 1 am and before 7 am" in timezone Etc/UTC. 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/canonical/craft-archives). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNTQuNyIsInVwZGF0ZWRJblZlciI6IjM0LjE1Ny4xIn0=-->

Evaluation history

Date Model Scores Action Summary
qwen/qwen3.6-35b-a3b Merged automated patch updates for coverage, pytest, and ruff via Renovate. Versions advanced to 7.2.1, 7.2.2, and 0.0.254. Changes passed CI and review before merging into main.
qwen3.6-35b-a3b-mtp-q6 Merged automated patch updates for coverage, pytest, and ruff via Renovate bot. Changes were auto-merged with no impact on test coverage.

Update history

No update history recorded yet.

Related issues

Issue Project State Summary Similarity
#45 chore(deps): update patch updates starbase merged Merged automated patch updates for codespell, coverage, pytest, ruff, and tox via Renovate bot. The change modified 2 files with minimal line adjustments, approved and merged automatically per scheduled policy.
89%
#987 chore(deps): update patch updates charmcraft merged Merged automated patch updates for pytest, pytz, and requests via Renovate. Approved by one reviewer, passed CI checks, and automatically merged per repository configuration.
87%
#40 chore(deps): update patch updates starbase merged Merged automated dependency updates via Renovate. Updated ruff to 0.0.252 and tox to 4.4.6. Approved, passed CI, and auto-merged per schedule.
86%
#25 chore(deps): update patch updates starbase merged Merged automated patch updates for ruff (0.0.239 to 0.0.240) and tox (4.4.2 to 4.4.4) via Renovate bot. Changes were approved, passed CI checks, and auto-merged with minimal code modifications.
86%
#26 chore(deps): update patch updates craft-archives merged Automatically merged patch updates for ruff to 0.0.252 and tox to 4.4.6. The change passed CI checks, received approval, and was merged into main by the Renovate bot.
86%
#198 chore(deps): update bugfixes craft-store merged Merged automated dependency updates for coverage, mypy, pyright, and pytest to latest patch versions. Approved by two reviewers, passed CI, and auto-merged via Renovate bot configuration.
84%
#174 chore(deps): update development dependencies (non-major) starbase merged Merged automated dependency updates for coverage, pytest, black, ruff, and mypy via Renovate. CI passed, coverage remained at 100%, and changes were approved and merged without conflicts.
84%
#24 chore(deps): update patch updates craft-archives merged Merged automated patch updates for mypy to 1.0.1 and ruff to 0.0.247. Approved by reviewers, passed CI checks, and merged automatically via Renovate bot configuration.
84%
#265 chore(deps): update development dependencies (non-major) craft-application merged Merged automated dependency updates via Renovate. Updated coverage to 7.4.3, pytest to 8.1.1, and types/mypy to 1.9.0. The PR passed CI checks, received three approvals, and was auto-merged.
83%
#1183 chore(deps): update patch updates charmcraft merged Merged automated patch dependency updates via Renovate. Updated PyYAML, click, codespell, distlib, jsonschema, ruff, types-Deprecated, types-PyYAML, and zipp to latest patch versions. CI passed and changes were automerged.
83%