Skip to content

chore(deps): Bump the development-dependencies group across 1 directory with 2 updates - #11

Closed
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/uv/development-dependencies-e6a96063f8
Closed

dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/uv/development-dependencies-e6a96063f8

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 12, 2026

Copy link
Copy Markdown

Bumps the development-dependencies group with 2 updates in the / directory: mypy and ruff.

Updates mypy from 2.3.0 to 2.3.1

Changelog

Sourced from mypy's changelog.

Mypy 2.3.1

  • Fix mypyc crash on double yielding Iterators (Daniël van Noord, PR 21826)
  • Fix mypyc default_factory for inherited dataclass (Daniël van Noord, PR 21785)
  • Clear mypyc coroutine env on coroutine completion (Piotr Sawicki, PR 21734)
  • Fix crash when unpacking return value from overload (Shantanu, PR 21830)

Acknowledgements

Thanks to all mypy contributors who contributed to this release:

  • Agriya Khetarpal
  • Ethan Sarp
  • Ivan Levkivskyi
  • Jingchen Ye
  • Jukka Lehtosalo
  • Piotr Sawicki
  • Shantanu
  • Tom Bannink
  • Viktor Szépe
  • ygale

I'd also like to thank my employer, Dropbox, for supporting mypy development.

Mypy 2.2

We've just uploaded mypy 2.2.0 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Support for Closed TypedDicts (PEP 728)

Mypy now supports closed TypedDicts as specified in PEP 728. A closed TypedDict cannot have extra keys beyond those explicitly defined. This allows the type checker to determine that certain operations are safe when they otherwise wouldn't be due to the potential presence of unknown keys.

You can use the closed keyword argument with TypedDict:

HasName = TypedDict("HasName", {"name": str})
HasOnlyName = TypedDict("HasOnlyName", {"name": str}, closed=True)
Movie = TypedDict("Movie", {"name": str, "year": int})
movie: Movie = {"name": "Nimona", "year": 2023}
has_name: HasName = movie  # OK: HasName is open (default)
has_only_name: HasOnlyName = movie  # Error: HasOnlyName is closed and Movie has extra "year" key
</tr></table>

... (truncated)

Commits

Updates ruff from 0.15.21 to 0.16.7

Release notes

Sourced from ruff's releases.

0.16.7

Release Notes

Released on 2026-09-10.

Preview features

  • [ruff] Add rule for default values on method receivers (RUF077) (#26700)
  • [ruff] Recognize re.prefixmatch (RUF039, RUF055) (#28311)

Bug fixes

  • Alternate nested quotes inside format spec interpolations (#28259)
  • [flake8-implicit-str-concat] Mark fix unsafe when it creates a docstring (ISC003) (#27981)
  • [flake8-tidy-imports] Skip fixes for multi-member imports (TID254) (#26584)
  • [pylint] Gate ImportCycleError on Python 3.15 (PLW0133) (#28310)

Rule changes

  • Correct D211 and D203 rule conflict diagnostic (#28444)
  • Recognize slice and frozendict generics (#28477)
  • Stop defining __cached__ for Python 3.15 (#28476)
  • [pyupgrade] Stop recommending removed typing.no_type_check_decorator (UP035) (#28475)

Performance

  • Reuse parser name lookups when interning (#28399)
  • Speed up inherited configuration resolution (#28299)

Documentation

  • Fix line-length path in --config example (#28392)
  • Remove the "Who’s Using Ruff?" list (#28455)

Other changes

  • Embed archive checksums in the shell installer (#28281)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.16.7

Released on 2026-09-10.

Preview features

  • [ruff] Add rule for default values on method receivers (RUF077) (#26700)
  • [ruff] Recognize re.prefixmatch (RUF039, RUF055) (#28311)

Bug fixes

  • Alternate nested quotes inside format spec interpolations (#28259)
  • [flake8-implicit-str-concat] Mark fix unsafe when it creates a docstring (ISC003) (#27981)
  • [flake8-tidy-imports] Skip fixes for multi-member imports (TID254) (#26584)
  • [pylint] Gate ImportCycleError on Python 3.15 (PLW0133) (#28310)

Rule changes

  • Correct D211 and D203 rule conflict diagnostic (#28444)
  • Recognize slice and frozendict generics (#28477)
  • Stop defining __cached__ for Python 3.15 (#28476)
  • [pyupgrade] Stop recommending removed typing.no_type_check_decorator (UP035) (#28475)

Performance

  • Reuse parser name lookups when interning (#28399)
  • Speed up inherited configuration resolution (#28299)

Documentation

  • Fix line-length path in --config example (#28392)
  • Remove the "Who’s Using Ruff?" list (#28455)

Other changes

  • Embed archive checksums in the shell installer (#28281)

Contributors

... (truncated)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Sep 12, 2026
@dependabot dependabot Bot changed the title chore(deps): Bump the development-dependencies group with 2 updates chore(deps): Bump the development-dependencies group across 1 directory with 2 updates Sep 12, 2026
@dependabot
dependabot Bot force-pushed the dependabot/uv/development-dependencies-e6a96063f8 branch from d98c2ba to a8ca91c Compare September 12, 2026 13:44
@dependabot
dependabot Bot changed the base branch from main to develop September 13, 2026 19:38
@dependabot
dependabot Bot requested a review from L4XB as a code owner September 13, 2026 19:38
@dependabot
dependabot Bot force-pushed the dependabot/uv/development-dependencies-e6a96063f8 branch from a8ca91c to bd13111 Compare September 13, 2026 19:38
…ry with 2 updates

Bumps the development-dependencies group with 2 updates in the / directory: [mypy](https://github.com/python/mypy) and [ruff](https://github.com/astral-sh/ruff).


Updates `mypy` from 2.3.0 to 2.3.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v2.3.0...v2.3.1)

Updates `ruff` from 0.15.21 to 0.16.7
- [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.21...0.16.7)

---
updated-dependencies:
- dependency-name: mypy
  dependency-version: 2.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: ruff
  dependency-version: 0.16.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/uv/development-dependencies-e6a96063f8 branch from bd13111 to b8bb87a Compare September 14, 2026 03:22
@L4XB
L4XB enabled auto-merge (squash) September 14, 2026 07:42
@L4XB

L4XB commented Sep 14, 2026

Copy link
Copy Markdown
Member

Landed in #99 together with the other three safe updates.

Merging these one at a time is not possible in practice: both branches require
status checks to be up to date, so each merge invalidates the next and every one
needs a fresh full CI cycle. #99 carries all four.

This one specifically needed more than the bump: the engine and services/api pin
pydantic separately while the API depends on the engine by path, so raising only
one side makes the API's resolution unsatisfiable. Both pins moved, services/api
was relocked, and the export manifest was rehashed.

@L4XB L4XB closed this Sep 14, 2026
auto-merge was automatically disabled September 14, 2026 12:26

Pull request was closed

@dependabot @github

dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown
Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@L4XB
L4XB deleted the dependabot/uv/development-dependencies-e6a96063f8 branch September 14, 2026 12:26
@L4XB

L4XB commented Sep 14, 2026

Copy link
Copy Markdown
Member

Correction to the comment above: the last paragraph describes #50, not this pull request. This one was a straightforward bump and is included in #99 unchanged.

L4XB added a commit that referenced this pull request Sep 14, 2026
… decision

Landed: duckdb 1.5.4 -> 1.5.5 and pydantic 2.13.4 -> 2.13.5 (#50), mypy
2.3.0 -> 2.3.1 and ruff 0.15.21 -> 0.16.7 (#11), hatchling 1.27.0 -> 1.32.0
(#12), and the thirteen web minor/patch updates including React 19.2.4 ->
19.3.0 (#54).

#50 could not have merged on its own. The engine pins pydantic and
services/api pins it separately while depending on the engine by path, so
raising one side alone makes the API's resolution unsatisfiable. Both pins
move here, services/api is relocked, and the export manifest is rehashed
for the two files that changed.

Held, with the reason recorded in dependabot.yml so the same pull request
does not return every Monday:

- anthropic major -> #77. httpx2 would put a second HTTP stack and a second
  TLS trust store beside the 21 call sites behind the SSRF guard.
- node major and @types/node major -> #97. The Node version lives in
  ci.yml, engines, the Dockerfile and the types; moving one publishes an
  image on a runtime no test exercises.
- react-pdf major -> #98. Suspense by default across three viewers, and
  PDF.js 6 can move the text-layer DOM that review-pdf.tsx selects on.

Signed-off-by: L4XB <L4XB@users.noreply.github.com>
(cherry picked from commit 319d1bd796d3bc1d5c36459a142212119da0d782)
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.

1 participant