Skip to content

chore(deps): bump the all-dependencies group across 1 directory with 5 updates - #33

Merged
TomKaltofen merged 1 commit into
mainfrom
dependabot/uv/all-dependencies-347bc3f32c
Mar 22, 2026
Merged

chore(deps): bump the all-dependencies group across 1 directory with 5 updates#33
TomKaltofen merged 1 commit into
mainfrom
dependabot/uv/all-dependencies-347bc3f32c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 20, 2026

Copy link
Copy Markdown
Contributor

Bumps the all-dependencies group with 5 updates in the / directory:

Package From To
mloda 0.5.0 0.5.3
mloda-testing 0.2.11 0.2.12
tox 4.48.1 4.50.3
tox-uv 1.33.1 1.33.4
ruff 0.15.5 0.15.7

Updates mloda from 0.5.0 to 0.5.3

Release notes

Sourced from mloda's releases.

🚀 Version 0.5.3

0.5.3 (2026-03-15)

🐛 Bug Fixes

  • skip mktestdocs execution for discover-plugins doc examples (a98700b)

🔧 Miscellaneous

🚀 Version 0.5.2

0.5.2 (2026-03-15)

✨ Features

  • add datetime.date, datetime.datetime, and decimal.Decimal to type inference (881a339), closes #209
  • migrate from pip/tox to uv/tox-uv (389e0bd)

🐛 Bug Fixes

  • address PR review - restore settings entries, keep twine for publish (36e4542)
  • align devcontainer Dockerfile with mloda-registry pattern (023fdcd)
  • align release workflow with registry, clean up pyproject extras and Dockerfile (6ab1786)
  • compute relative path from base package root in PluginLoader for nested groups (8f8bf7c)
  • handle missing suffix() in _resolve_pinned_file for base class (5db6e85)
  • restore package=uv-editable, remove requires=tox-uv (de521c7)
  • restore requires=tox-uv, install tox-uv into tox env for devcontainer (3e62a62)
  • revert iceberg filter expressions from literal= to value= (000671a)
  • revert iceberg to positional args, add mypy override for unstable API (4dfec52)
  • use discriminators for join disambiguation in execution planner (#216) (e82289f)
  • use usedevelop and fix text_cleaning extra name (0fcbeb6)
  • use uv-editable package type to resolve text-cleaning extra (90cc892)

✅ Miscellaneous

  • add unit tests for _resolve_pinned_file suffix handling (e8491c9)

🚀 Version 0.5.1

0.5.1 (2026-03-14)

🐛 Bug Fixes

  • inject JoinSpec join columns without index_columns (#206) (c08062a)

📚 Documentation

  • clarify JoinSpec vs index_columns in error message and join docs (6f6ac62)

🔧 Miscellaneous

... (truncated)

Commits
  • bee0e37 chore(release): 0.5.3 [skip ci]
  • a98700b fix: skip mktestdocs execution for discover-plugins doc examples
  • 91c1178 chore: dependency updates
  • 48fcb69 chore(release): 0.5.2 [skip ci]
  • 8d95711 fix: add missing pages to nav and fix broken FAQ anchor
  • 88f0920 feat: migrate from pip/tox to uv/tox-uv (#212)
  • 5db6e85 fix: handle missing suffix() in _resolve_pinned_file for base class
  • 8f8bf7c fix: compute relative path from base package root in PluginLoader for nested ...
  • e82289f fix: use discriminators for join disambiguation in execution planner (#216)
  • 881a339 feat: add datetime.date, datetime.datetime, and decimal.Decimal to type infer...
  • Additional commits viewable in compare view

Updates mloda-testing from 0.2.11 to 0.2.12

Release notes

Sourced from mloda-testing's releases.

🚀 Version 0.2.12

0.2.12 (2026-03-12)

🔧 Miscellaneous

  • deps: bump the all-dependencies group with 2 updates (629100d)
  • group dependabot updates (5709e32)
  • update mloda to 0.5.0 (f3b5374)
Commits
  • 707884e chore(release): 0.2.12 [skip ci]
  • f3b5374 chore: update mloda to 0.5.0
  • 629100d chore(deps): bump the all-dependencies group with 2 updates
  • 5709e32 chore: group dependabot updates
  • See full diff in compare view

Updates tox from 4.48.1 to 4.50.3

Release notes

Sourced from tox's releases.

v4.50.3

What's Changed

Full Changelog: tox-dev/tox@4.50.2...4.50.3

v4.50.2

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.50.1...4.50.2

v4.50.1

What's Changed

Full Changelog: tox-dev/tox@4.50.0...4.50.1

v4.50.0

What's Changed

Full Changelog: tox-dev/tox@4.49.1...4.50.0

v4.49.1

What's Changed

Full Changelog: tox-dev/tox@4.49.0...4.49.1

... (truncated)

Changelog

Sourced from tox's changelog.

Bug fixes - 4.50.3

  • Use separate .pkg environments for free-threaded Python targets by including the t suffix in the wheel build environment name (e.g., .pkg-cpython314t), preventing wheel tag mismatches when building for py314t - by :user:gaborbernat. (:issue:3314)

v4.50.2 (2026-03-19)


Bug fixes - 4.50.2

  • Fix the sdist to include the missing docs/man/tox.1.rst file for building the manpage (:issue:3889)

v4.50.1 (2026-03-19)


Bug fixes - 4.50.1

  • Detect and suggest normalized environment names when users specify dotted Python versions (e.g., py3.10-lint) that match existing environments with compact notation (e.g., py310-lint), preventing silent fallback to base [testenv] configuration - by :user:gaborbernat. (:issue:3877)

v4.50.0 (2026-03-17)


Features - 4.50.0

  • Add interrupt_post_commands option to run cleanup commands even after SIGINT - by :user:gaborbernat. (:issue:3858)
  • Add factor['NAME'] and env['VAR'] subscript syntax for conditional expressions, enabling checks of factors with non-identifier names like factor['3.14']. Add env_name variable to check the full environment name in conditions. (:issue:3880)

Bug fixes - 4.50.0

  • Fix multiple manpage issues: remove duplicate header/author/copyright sections, set project in Sphinx config, and compile the manpage to troff format at wheel-build time instead of shipping raw RST source - by :user:gaborbernat. (:issue:3878)

Improved documentation - 4.50.0

... (truncated)

Commits
  • 7283912 release 4.50.3
  • 9672736 🐛 fix(pkg): distinguish free-threaded Python in wheel build env (#3891)
  • 1662c61 release 4.50.2
  • ef45bd8 fix(sdist): include docs/man/tox.1.rst (#3890)
  • dcd9552 release 4.50.1
  • a438b58 🐛 fix(env): suggest normalized env name for dotted Python versions (#3888)
  • db1362d release 4.50.0
  • 2d18e29 ✨ feat(config): support subscript syntax and env_name in conditionals (#3884)
  • bf4e4e8 ✨ feat(run): add interrupt_post_commands for cleanup after Ctrl-C (#3882)
  • fb1f6af [pre-commit.ci] pre-commit autoupdate (#3879)
  • Additional commits viewable in compare view

Updates tox-uv from 1.33.1 to 1.33.4

Release notes

Sourced from tox-uv's releases.

1.33.4

What's Changed

Full Changelog: tox-dev/tox-uv@1.33.3...1.33.4

1.33.3

What's Changed

Full Changelog: tox-dev/tox-uv@1.33.2...1.33.3

1.33.2

What's Changed

Full Changelog: tox-dev/tox-uv@1.33.1...1.33.2

Commits
  • e0b9d0f 🐛 fix(meta): remove tox_uv namespace conflict (#314)
  • 8cee50b 🐛 fix(venv): resolve env names with trailing digits correctly (#313)
  • ff811cb 🐛 fix(venv): reject non-Python env names as interpreter specs (#312)
  • ef8450c [pre-commit.ci] pre-commit autoupdate (#307)
  • 906a243 🐛 fix(venv): resolve Python spec from env name when tox passes fallback path ...
  • 37d1adb [pre-commit.ci] pre-commit autoupdate (#306)
  • See full diff in compare view

Updates ruff from 0.15.5 to 0.15.7

Release notes

Sourced from ruff's releases.

0.15.7

Release Notes

Released on 2026-03-19.

Preview features

  • Display output severity in preview (#23845)
  • Don't show noqa hover for non-Python documents (#24040)

Rule changes

  • [pycodestyle] Recognize pyrefly: as a pragma comment (E501) (#24019)

Server

  • Don't return code actions for non-Python documents (#23905)

Documentation

  • Add company AI policy to contributing guide (#24021)
  • Document editor features for Markdown code formatting (#23924)
  • [pylint] Improve phrasing (PLC0208) (#24033)

Other changes

  • Use PEP 639 license information (#19661)

Contributors

Install ruff 0.15.7

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://releases.astral.sh/github/ruff/releases/download/0.15.7/ruff-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://releases.astral.sh/github/ruff/releases/download/0.15.7/ruff-installer.ps1 | iex"
</tr></table> 

... (truncated)

Changelog

Sourced from ruff's changelog.

0.15.7

Released on 2026-03-19.

Preview features

  • Display output severity in preview (#23845)
  • Don't show noqa hover for non-Python documents (#24040)

Rule changes

  • [pycodestyle] Recognize pyrefly: as a pragma comment (E501) (#24019)

Server

  • Don't return code actions for non-Python documents (#23905)

Documentation

  • Add company AI policy to contributing guide (#24021)
  • Document editor features for Markdown code formatting (#23924)
  • [pylint] Improve phrasing (PLC0208) (#24033)

Other changes

  • Use PEP 639 license information (#19661)

Contributors

0.15.6

Released on 2026-03-12.

Preview features

  • Add support for lazy import parsing (#23755)
  • Add support for star-unpacking of comprehensions (PEP 798) (#23788)
  • Reject semantic syntax errors for lazy imports (#23757)
  • Drop a few rules from the preview default set (#23879)
  • [airflow] Flag Variable.get() calls outside of task execution context (AIR003) (#23584)
  • [airflow] Flag runtime-varying values in DAG/task constructor arguments (AIR304) (#23631)
  • [flake8-bugbear] Implement delattr-with-constant (B043) (#23737)

... (truncated)

Commits
  • 0ef39de Bump 0.15.7 (#24049)
  • beb543b [ty] ecosystem-analyzer: Fail on newly panicking projects (#24043)
  • 378fe73 Don't show noqa hover for non-Python documents (#24040)
  • b5665bd [pylint] Improve phrasing (PLC0208) (#24033)
  • 6e20f22 test: migrate show_settings and version tests to use CliTest (#23702)
  • f99b284 Drain file watcher events during test setup (#24030)
  • 744c996 [ty] Filter out unsatisfiable inference attempts during generic call narrowin...
  • 1616095 [ty] Avoid inferring intersection types for call arguments (#23933)
  • 7f275f4 [ty] Pin mypy_primer in setup_primer_project.py (#24020)
  • 7255e36 [pycodestyle] Recognize pyrefly: as a pragma comment (E501) (#24019)
  • 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

…5 updates

Bumps the all-dependencies group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [mloda](https://github.com/mloda-ai/mloda) | `0.5.0` | `0.5.3` |
| [mloda-testing](https://github.com/mloda-ai/mloda-registry) | `0.2.11` | `0.2.12` |
| [tox](https://github.com/tox-dev/tox) | `4.48.1` | `4.50.3` |
| [tox-uv](https://github.com/tox-dev/tox-uv) | `1.33.1` | `1.33.4` |
| [ruff](https://github.com/astral-sh/ruff) | `0.15.5` | `0.15.7` |



Updates `mloda` from 0.5.0 to 0.5.3
- [Release notes](https://github.com/mloda-ai/mloda/releases)
- [Commits](mloda-ai/mloda@0.5.0...0.5.3)

Updates `mloda-testing` from 0.2.11 to 0.2.12
- [Release notes](https://github.com/mloda-ai/mloda-registry/releases)
- [Commits](mloda-ai/mloda-registry@0.2.11...0.2.12)

Updates `tox` from 4.48.1 to 4.50.3
- [Release notes](https://github.com/tox-dev/tox/releases)
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
- [Commits](tox-dev/tox@4.48.1...4.50.3)

Updates `tox-uv` from 1.33.1 to 1.33.4
- [Release notes](https://github.com/tox-dev/tox-uv/releases)
- [Commits](tox-dev/tox-uv@1.33.1...1.33.4)

Updates `ruff` from 0.15.5 to 0.15.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.5...0.15.7)

---
updated-dependencies:
- dependency-name: mloda
  dependency-version: 0.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: mloda-testing
  dependency-version: 0.2.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: tox
  dependency-version: 4.50.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: tox-uv
  dependency-version: 1.33.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: ruff
  dependency-version: 0.15.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

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 Mar 20, 2026
@TomKaltofen
TomKaltofen merged commit 349ae24 into main Mar 22, 2026
4 checks passed
@TomKaltofen
TomKaltofen deleted the dependabot/uv/all-dependencies-347bc3f32c branch March 22, 2026 11:35
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