Skip to content

chore(deps): bump the python-minor-and-patch group across 1 directory with 4 updates - #167

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-minor-and-patch-15ace189cc
Open

chore(deps): bump the python-minor-and-patch group across 1 directory with 4 updates#167
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-minor-and-patch-15ace189cc

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the python-minor-and-patch group with 4 updates in the / directory: pydantic, polars, ruff and pyright.

Updates pydantic from 2.13.3 to 2.13.4

Release notes

Sourced from pydantic's releases.

v2.13.4 2026-05-06

v2.13.4 (2026-05-06)

What's Changed

Packaging

Fixes

Full Changelog: pydantic/pydantic@v2.13.3...v2.13.4

Changelog

Sourced from pydantic's changelog.

v2.13.4 (2026-05-06)

GitHub release

What's Changed

Packaging

Fixes

Commits
  • cf67d4b Fix linting
  • f0d8a21 Prepare release v2.13.4
  • 5e3fe1d Check for pydantic tag pattern in CI
  • 7f9edcc Document tagging conventions
  • b46a0c9 Adapt pydantic-core linker flags on macOS
  • 50629c8 Update to PyPy 7.3.22
  • 8522ebb Preserve RootModel core metadata
  • a37f3af Adapt MISSING sentinel test to work with unreleased typing_extensions ver...
  • 909259a Remove Logfire example in documentation
  • 2c4174c Bump libc from 0.2.155 to 0.2.185
  • See full diff in compare view

Updates polars from 1.41.2 to 1.42.1

Release notes

Sourced from polars's releases.

Python Polars 1.42.1

⚠️ Deprecations

  • Deprecate strict parameter of pl.concat, replace with new how='horizontal_extend' (#27965)

🚀 Performance improvements

  • Add a sampled resolve mode for multi-file parquet metadata (#28111)
  • Speed up small dtype series sums with a upcast sum kernel (#27958)
  • Don't block on path expansion (#28073)

✨ Enhancements

  • Close ResourceWarning leaks in database tests (#28066)

🐞 Bug fixes

  • Incorrect sorted fast-path returning nan for grouped max (#28129)
  • Fix panic on scan_parquet filter of fixed-size binary column (#28122)
  • Fix decimal dynamic float cast (#28126)
  • Fix pyiceberg key dot HDFS prefix filter (#28109)
  • Fix projection pushdown panic on select(len()) after groupby (#28108)
  • Fully resolve remaining ResourceWarning leaks in database/iceberg tests (#28107)
  • Expiry time loading for AWS DeferredRefreshableCredentials (#28099)
  • Close ResourceWarning leaks in database tests (#28066)
  • Avoid panic on temporal extraction for datetime columns with nulls (#28054)
  • Prevent panic in replace when old/new contain Expr or object dtype values (#27433)

📖 Documentation

  • Fix dataset regression in the examples (#28131)
  • Emphasize to generally not ever write Rust tests (#28082)
  • Mention Polars skill in User Guide's LLM section (#28113)

🛠️ Other improvements

  • Disallow usage of tokio::spawn in clippy (#28123)
  • Improve Makefile with respect to venv robustness (#28110)
  • Remove legacy prelude glob imports from leaf files (#28114)
  • Skip pandas 3.0.4 due to pd.TimeDelta segfault (#28125)
  • Update mypy to the new 2.x release (#28116)
  • Ensure pyrefly checks run as part of make pre-commit (#28095)
  • Fix test_select_explode_height_filter_order_by failure when POLARS_MAX_THREADS=2 (#28090)
  • Add Morsel::height (#28060)

Thank you to all our contributors for making this release possible! @​0guban0v, @​Kevin-Patyk, @​TNieuwdorp, @​alexander-beedie, @​azimafroozeh, @​dsprenkels, @​kdn36, @​nameexhaustion, @​orlp, @​raphaelroshan, @​ritchie46 and @​sar-cheng

Python Polars 1.42.0

⚠️ Deprecations

... (truncated)

Commits
  • 0df0c25 Python Polars 1.42.1 (#28128)
  • 876bfb8 docs: Fix dataset regression in the examples (#28131)
  • 07560f7 chore(rust): Disallow usage of tokio::spawn in clippy (#28123)
  • aa5d073 fix: Incorrect sorted fast-path returning nan for grouped max (#28129)
  • a2f2559 docs: Emphasize to generally not ever write Rust tests (#28082)
  • 156e7f5 chore(python): Improve Makefile with respect to venv robustness (#28110)
  • fc09271 fix: Fix panic on scan_parquet filter of fixed-size binary column (#28122)
  • 3dce32b docs: Mention Polars skill in User Guide's LLM section (#28113)
  • bd27f24 refactor(rust): Remove legacy prelude glob imports from leaf files (#28114)
  • 853a398 fix: Fix decimal dynamic float cast (#28126)
  • Additional commits viewable in compare view

Updates ruff from 0.15.12 to 0.16.0

Release notes

Sourced from ruff's releases.

0.16.0

Release Notes

Released on 2026-07-23.

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

  • Ruff now enables a much larger set of rules by default (413, up from 59). See the blog post for more details and the new Default Rules page for a full listing of the enabled rules. Note that this is primarily an expansion, but 18 of the more opinionated pycodestyle (E) and pyflakes (F) rules have been removed from the default set: E401, E402, E701, E702, E703, E711, E712, E713, E714, E721, E731, E741, E742, E743, F403, F405, F406, and F722.

  • Ruff can now format Python code blocks in Markdown files and will do this by default. See the documentation for more details.

  • Ruff now supports ruff: ignore comments at the ends of lines, like noqa comments, or on the line preceding a diagnostic. For example, these both suppress an unused-import (F401) diagnostic:

    import math  # ruff: ignore[F401]
    ruff: ignore[F401]
    import os

  • Fixes are now shown in check and format --check output:

    ruff format --check .
    unformatted: File would be reformatted
     --> try.md:1:1
      |
    1 | ```python
      - import   math
    2 + import math
    3 | ```
      |
    1 file would be reformatted

    This example also shows off the Markdown formatting.

  • format --check now supports the same output formats as the linter, including the github and gitlab outputs for rendering annotations in CI:

    ruff format --check --output-format github .
    ::error title=ruff (unformatted),file=try.md,line=2,col=8,endLine=2,endColumn=10::try.md:2:8: unformatted: File would be reformatted

    See the CLI help or documentation for the full list of supported formats.

  • The filename, location, end_location, fix.edits[].location, and fix.edits[].end_location fields in the JSON output format may now be null rather than defaulting to the empty string and row 1, column 1, respectively.

... (truncated)

Changelog

Sourced from ruff's changelog.

0.16.0

Released on 2026-07-23.

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

  • Ruff now enables a much larger set of rules by default (413, up from 59). See the blog post for more details and the new Default Rules page for a full listing of the enabled rules. Note that this is primarily an expansion, but 18 of the more opinionated pycodestyle (E) and pyflakes (F) rules have been removed from the default set: E401, E402, E701, E702, E703, E711, E712, E713, E714, E721, E731, E741, E742, E743, F403, F405, F406, and F722.

  • Ruff can now format Python code blocks in Markdown files and will do this by default. See the documentation for more details.

  • Ruff now supports ruff: ignore comments at the ends of lines, like noqa comments, or on the line preceding a diagnostic. For example, these both suppress an unused-import (F401) diagnostic:

    import math  # ruff: ignore[F401]
    ruff: ignore[F401]
    import os

  • Fixes are now shown in check and format --check output:

    ruff format --check .
    unformatted: File would be reformatted
     --> try.md:1:1
      |
    1 | ```python
      - import   math
    2 + import math
    3 | ```
      |
    1 file would be reformatted

    This example also shows off the Markdown formatting.

  • format --check now supports the same output formats as the linter, including the github and gitlab outputs for rendering annotations in CI:

... (truncated)

Commits
  • a2635fd Bump 0.16.0 (#27136)
  • 3433449 [ty] Reuse full call diagnostics for implicit setter calls (#27115)
  • 2240070 Reflect ruff: ignore and --add-ignore stabilization in documentation (#27...
  • 17ef711 Stabilize --add-ignore (#27125)
  • ef912bb Add newly stabilized rules to defaults (#27055)
  • b30f040 Stabilize new default rules (#27035)
  • bcd70c5 Exclude Markdown files from format-dev runs (#27052)
  • 87e51e2 Fix format --check spans for syntax errors (#27045)
  • afe2723 [flake8-gettext] Stabilize qualified-name and built-in binding resolution (...
  • a9702d8 [flake8-bandit] Stabilize string literal binding resolution (S310) (#26944)
  • Additional commits viewable in compare view

Updates pyright from 1.1.409 to 1.1.411

Commits


Note

Medium Risk
Ruff 0.16 introduces breaking linter/formatter behavior that can fail CI; polars 1.42.x may affect optional dataframe code paths. Runtime pydantic/pyright bumps are patch-level.

Overview
Updates uv.lock only for the Dependabot python-minor-and-patch group: pydantic 2.13.3→2.13.4 (with pydantic-core 2.46.3→2.46.4), polars / polars-runtime-32 1.41.2→1.42.1, ruff 0.15.12→0.16.0, and pyright 1.1.409→1.1.411. No application source changes.

The lockfile also refreshes pinned wheel URLs/hashes for those packages. Sphinx entries show simplified dependency markers in the lock (resolver metadata), not a Sphinx version bump in this diff.

Ruff 0.16 is the main behavioral change for CI: larger default rule set, Markdown code formatting, and other linter/formatter CLI changes; this repo still pins explicit select rules in pyproject.toml, but upgrading may still surface new diagnostics or format diffs on uv run ruff check / format --check.

Reviewed by Cursor Bugbot for commit ca20459. Bugbot is set up for automated code reviews on this repo. Configure here.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jul 16, 2026
@dependabot dependabot Bot changed the title chore(deps): bump the python-minor-and-patch group with 4 updates chore(deps): bump the python-minor-and-patch group across 1 directory with 4 updates Jul 20, 2026
@dependabot
dependabot Bot force-pushed the dependabot/uv/python-minor-and-patch-15ace189cc branch from d4a027d to 7b76527 Compare July 20, 2026 13:18
@dependabot
dependabot Bot force-pushed the dependabot/uv/python-minor-and-patch-15ace189cc branch 2 times, most recently from 191a695 to f4788eb Compare August 3, 2026 13:16
… with 4 updates

Bumps the python-minor-and-patch group with 4 updates in the / directory: [pydantic](https://github.com/pydantic/pydantic), [polars](https://github.com/pola-rs/polars), [ruff](https://github.com/astral-sh/ruff) and [pyright](https://github.com/RobertCraigie/pyright-python).


Updates `pydantic` from 2.13.3 to 2.13.4
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.13.3...v2.13.4)

Updates `polars` from 1.41.2 to 1.42.1
- [Release notes](https://github.com/pola-rs/polars/releases)
- [Commits](pola-rs/polars@py-1.41.2...py-1.42.1)

Updates `ruff` from 0.15.12 to 0.16.0
- [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.12...0.16.0)

Updates `pyright` from 1.1.409 to 1.1.411
- [Release notes](https://github.com/RobertCraigie/pyright-python/releases)
- [Commits](RobertCraigie/pyright-python@v1.1.409...v1.1.411)

---
updated-dependencies:
- dependency-name: polars
  dependency-version: 1.42.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-minor-and-patch
- dependency-name: pydantic
  dependency-version: 2.13.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-minor-and-patch
- dependency-name: pyright
  dependency-version: 1.1.411
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-minor-and-patch
- dependency-name: ruff
  dependency-version: 0.15.20
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/uv/python-minor-and-patch-15ace189cc branch from f4788eb to ca20459 Compare August 5, 2026 06:50

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit ca20459. Configure here.

Comment thread uv.lock
[[package]]
name = "polars"
version = "1.41.2"
version = "1.42.1"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Polars explode deprecation after bump

Low Severity

Bumping polars to 1.42.1 makes DataFrame.explode() emit a DeprecationWarning unless empty_as_null is set. to_polars() still calls df.explode(...) without that argument, so any explode= usage (including unit tests and public paginator/order-book helpers) warns today, and empty list columns will change behavior under Polars 2.0.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit ca20459. Configure here.

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