Skip to content

chore(deps-dev): bump the minor-and-patch group in /libs/cli with 4 updates#6

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/libs/cli/minor-and-patch-fd8ab12f6b
Open

chore(deps-dev): bump the minor-and-patch group in /libs/cli with 4 updates#6
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/libs/cli/minor-and-patch-fd8ab12f6b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 17, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group in /libs/cli with 4 updates: ruff, codespell, ty and hatch.

Updates ruff from 0.15.20 to 0.15.22

Release notes

Sourced from ruff's releases.

0.15.22

Release Notes

Released on 2026-07-16.

Preview features

  • [pycodestyle] Add an autofix for E402 (#22212)
  • [refurb] Allow subclassing builtins in stub files (FURB189) (#26812)
  • [ruff] Add rule to replace noqa comments with ruff:ignore (RUF105) (#26423)
  • [ruff] Add rule to use human-readable names in ruff:ignore comments (RUF106) (#26682)
  • [ruff] Add rule to use human-readable names in configuration selectors (RUF201) (#26772)

Bug fixes

  • [flake8-pyi] Fix false positive in __all__ (PYI053) (#26872)

Rule changes

  • [pylint] Ignore mutable type updates in redefined-loop-name (PLW2901) (#25733)

Performance

  • Avoid redundant lexer token bookkeeping (#26765)
  • Avoid redundant pending-indentation writes (#26774)
  • Avoid unnecessary identifier lookahead (#26525)
  • Reuse parser scratch buffers (#26798)

Documentation

  • Document argfile support (#26803)
  • [flake8-datetimez] Clarify naming guidance for datetime.today (DTZ002) (#26658)
  • [pycodestyle] Document E731 fix safety (#26847)
  • [ruff] Clarify intentional async contexts for unused-async (RUF029) (#26641)

Contributors

Install ruff 0.15.22

Install prebuilt binaries via shell script

</tr></table> 

... (truncated)

Changelog

Sourced from ruff's changelog.

0.15.22

Released on 2026-07-16.

Preview features

  • [pycodestyle] Add an autofix for E402 (#22212)
  • [refurb] Allow subclassing builtins in stub files (FURB189) (#26812)
  • [ruff] Add rule to replace noqa comments with ruff:ignore (RUF105) (#26423)
  • [ruff] Add rule to use human-readable names in ruff:ignore comments (RUF106) (#26682)
  • [ruff] Add rule to use human-readable names in configuration selectors (RUF201) (#26772)

Bug fixes

  • [flake8-pyi] Fix false positive in __all__ (PYI053) (#26872)

Rule changes

  • [pylint] Ignore mutable type updates in redefined-loop-name (PLW2901) (#25733)

Performance

  • Avoid redundant lexer token bookkeeping (#26765)
  • Avoid redundant pending-indentation writes (#26774)
  • Avoid unnecessary identifier lookahead (#26525)
  • Reuse parser scratch buffers (#26798)

Documentation

  • Document argfile support (#26803)
  • [flake8-datetimez] Clarify naming guidance for datetime.today (DTZ002) (#26658)
  • [pycodestyle] Document E731 fix safety (#26847)
  • [ruff] Clarify intentional async contexts for unused-async (RUF029) (#26641)

Contributors

0.15.21

Released on 2026-07-09.

Preview features

... (truncated)

Commits

Updates codespell from 2.4.2 to 2.4.3

Release notes

Sourced from codespell's releases.

v2.4.3

What's Changed

... (truncated)

Commits
  • 57b2140 Read only [tool.codespell] from TOML config (#3975)
  • 23b8d94 [pre-commit.ci] pre-commit autoupdate
  • 926c4d6 [pre-commit.ci] pre-commit autoupdate
  • 820a301 Merge pull request #3967 from codespell-project/peternewman-patch-1
  • 9fe42c9 Add common misspellings for reseeve->reserve to dictionary
  • 725173c [pre-commit.ci] pre-commit autoupdate
  • 86c13ee [pre-commit.ci] pre-commit autoupdate
  • 7b9f36c Bump actions/checkout from 6 to 7
  • bcc1b80 Add spelling corrections for simpe and variants.
  • 89584cc [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates ty from 0.0.55 to 0.0.60

Release notes

Sourced from ty's releases.

0.0.60

Release Notes

Released on 2026-07-15.

Bug fixes

  • Expand transparent callable workaround with overloads and Awaitable[T] (#26761)
  • Separate type-mapping caches by transformation mode (#26857)
  • Avoid recursive protocol union redundancy checks (#26689)
  • Handle recursive protocols in redundant-cast checks (#26708)

LSP server

  • Prevent type that is written with a code span from being incorrectly re-wrapped during docstring Markdown rendering (#26723)

Library support

  • Pydantic: Support populate_by_name and custom initializers (#26764)
  • Pydantic: Warn about immediately discarded extra arguments (#26762)

Diagnostics

  • Narrow TypeGuard keyword arguments and remove invalid-type-guard-call (#26809)
  • Support own-line suppression comments (#26785)

Core type checking

  • Derive descriptor setter domains for protocols (#26683)
  • Handle cycles in derived constraint relations (#26814)
  • Implement unified generic call inference (#26141)
  • Preserve constraints from bound receivers (#26776)
  • Project exact-length narrowing through TypeVars (#26852)
  • Resolve PEP 695 aliases in type[...] annotations (#26842)
  • Retain sequence pattern narrowing in successful match cases (#26807)
  • Support class and static protocol methods (#26574)
  • Support class objects satisfying instance-method protocols (#26789)
  • Support type[Protocol] (#26649)
  • Sync vendored typeshed stubs (#26840). Typeshed diff
  • Treat transparent callable decorators consistently in class assignments (#26720)

Performance

  • Compare overloaded protocol method returns pairwise (#26684)
  • Extend PathBounds fast-path to support both upper and lower bounds (#26782)
  • Skip Self type scans for non-generic instances (#26703)

Contributors

... (truncated)

Changelog

Sourced from ty's changelog.

0.0.60

Released on 2026-07-15.

Bug fixes

  • Expand transparent callable workaround with overloads and Awaitable[T] (#26761)
  • Separate type-mapping caches by transformation mode (#26857)
  • Avoid recursive protocol union redundancy checks (#26689)
  • Handle recursive protocols in redundant-cast checks (#26708)

LSP server

  • Prevent type that is written with a code span from being incorrectly re-wrapped during docstring Markdown rendering (#26723)

Library support

  • Pydantic: Support populate_by_name and custom initializers (#26764)
  • Pydantic: Warn about immediately discarded extra arguments (#26762)

Diagnostics

  • Narrow TypeGuard keyword arguments and remove invalid-type-guard-call (#26809)
  • Support own-line suppression comments (#26785)

Core type checking

  • Derive descriptor setter domains for protocols (#26683)
  • Handle cycles in derived constraint relations (#26814)
  • Implement unified generic call inference (#26141)
  • Preserve constraints from bound receivers (#26776)
  • Project exact-length narrowing through TypeVars (#26852)
  • Resolve PEP 695 aliases in type[...] annotations (#26842)
  • Retain sequence pattern narrowing in successful match cases (#26807)
  • Support class and static protocol methods (#26574)
  • Support class objects satisfying instance-method protocols (#26789)
  • Support type[Protocol] (#26649)
  • Sync vendored typeshed stubs (#26840). Typeshed diff
  • Treat transparent callable decorators consistently in class assignments (#26720)

Performance

  • Compare overloaded protocol method returns pairwise (#26684)
  • Extend PathBounds fast-path to support both upper and lower bounds (#26782)
  • Skip Self type scans for non-generic instances (#26703)

Contributors

... (truncated)

Commits

Updates hatch from 1.17.0 to 1.17.1

Release notes

Sourced from hatch's releases.

Hatchling v1.17.1

Fixed:

  • Fix dev mode when the project has symlinks and file inclusion is defined with the packages or only-include options
  • Change the name of generated PTH files for dev mode so they come first lexicographically and therefore load first

Hatch v1.17.1

Fixed

  • Use TemporaryDirectory and pylock*.toml for temporary lock files.
  • Skip injection of ruff extend if a key already exists in ruff.toml.
  • Pass --no-header to uv pip compile in the uv locker so that generated lockfiles are deterministic.
  • Fix env-dependency extras being dropped when a metadata hook is configured and resolve workspace-member extras from the member's own metadata.
Commits
  • 5dae059 release Hatch v1.17.1
  • 4b3fd7d release Hatchling v1.31.0
  • 19ced89 Fix env-dependency extras being dropped when a metadata hook is configured (#...
  • 3b45c75 Prepare hatchling for release 1.31.0 (#2330)
  • e3d9b95 Addresses bug where blank lines are dropped when there is no shebang (#2328)
  • 9bc573c Prepare for 1.17.1 hatch release (#2329)
  • bbb12bb Pass --no-header to uv pip compile for deterministic lockfiles (#2327)
  • 8c06373 Fix uv lock check header comparison (#2317)
  • 5cfbb54 fix: skip extend injection if already present in ruff config (#2305)
  • cf85971 fix: use TemporaryDirectory + pylock*.toml for temp lock files (#2303)
  • 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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @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

Bumps the minor-and-patch group in /libs/cli with 4 updates: [ruff](https://github.com/astral-sh/ruff), [codespell](https://github.com/codespell-project/codespell), [ty](https://github.com/astral-sh/ty) and [hatch](https://github.com/pypa/hatch).


Updates `ruff` from 0.15.20 to 0.15.22
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.15.20...0.15.22)

Updates `codespell` from 2.4.2 to 2.4.3
- [Release notes](https://github.com/codespell-project/codespell/releases)
- [Commits](codespell-project/codespell@v2.4.2...v2.4.3)

Updates `ty` from 0.0.55 to 0.0.60
- [Release notes](https://github.com/astral-sh/ty/releases)
- [Changelog](https://github.com/astral-sh/ty/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ty@0.0.55...0.0.60)

Updates `hatch` from 1.17.0 to 1.17.1
- [Release notes](https://github.com/pypa/hatch/releases)
- [Commits](pypa/hatch@hatch-v1.17.0...hatch-v1.17.1)

---
updated-dependencies:
- dependency-name: ruff
  dependency-version: 0.15.22
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: codespell
  dependency-version: 2.4.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: ty
  dependency-version: 0.0.60
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: hatch
  dependency-version: 1.17.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jul 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants