Skip to content

chore(deps-dev): bump the development-dependencies group across 1 directory with 3 updates - #3424

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/development-dependencies-78f47ed847
Closed

chore(deps-dev): bump the development-dependencies group across 1 directory with 3 updates#3424
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/development-dependencies-78f47ed847

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the development-dependencies group with 3 updates in the / directory: ruff, bump-my-version and jupyterlab.

Updates ruff from 0.15.21 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 bump-my-version from 1.4.1 to 1.5.0

Release notes

Sourced from bump-my-version's releases.

1.5.0

Compare the full difference.

Other

Updates

  • Update ruff directives and pre-commit hooks to latest versions. 97f5f3c
Changelog

Sourced from bump-my-version's changelog.

1.5.0 (2026-07-27)

Compare the full difference.

Other

Updates

  • Update ruff directives and pre-commit hooks to latest versions. 97f5f3c
Commits
  • 2e4267e Version updated from 1.4.1 to 1.5.0
  • 7cd6db1 Merge pull request #422 from callowayproject/warn-missing-config
  • 7590d78 Merge pull request #415 from callowayproject/pre-commit-ci-update-config
  • e3646fa Merge branch 'warn-missing-config' into pre-commit-ci-update-config
  • 85c9672 Merge pull request #420 from callowayproject/dependabot/github_actions/github...
  • ed20630 Merge branch 'warn-missing-config' into dependabot/github_actions/github-acti...
  • 4420d9e Adjust logging levels and add warning for missing configuration files in tests
  • 97f5f3c Update ruff directives and pre-commit hooks to latest versions
  • 39a2478 [pre-commit.ci] pre-commit autoupdate
  • 0944890 Bump the github-actions group across 1 directory with 2 updates
  • See full diff in compare view

Updates jupyterlab from 4.6.1 to 4.6.2

Commits
  • 150ba51 [ci skip] Publish 4.6.2
  • f1beab4 Backport of security patches to 4.6.x branch (#19185)
  • abdd427 Backport PR #19112 on branch 4.6.x (Fix resolving platform-specific shortcuts...
  • 98a615c Backport PR #19143 on branch 4.6.x (Clear stale Table of Contents error marke...
  • 1ec91a4 Backport PR #19179 on branch 4.6.x (Bump brace-expansion from 1.1.11 to 1.1.1...
  • 8d66183 Backport PR #19178 on branch 4.6.x (Bump axios from 1.16.0 to 1.18.1) (#19180)
  • 34ca550 Backport PR #19144 on branch 4.6.x (Fix stale document load after rename duri...
  • 172a7f6 Backport PR #19149 on branch 4.6.x (Fix notebook initialization stealing focu...
  • 34e1782 Backport PR #19126 on branch 4.6.x (Fix spurious 3s kernel restart delay) (#1...
  • 57e5afd Backport PR #19152 on branch 4.6.x (Stabilize Open in Terminal Galata test on...
  • 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

…ectory with 3 updates

Bumps the development-dependencies group with 3 updates in the / directory: [ruff](https://github.com/astral-sh/ruff), [bump-my-version](https://github.com/callowayproject/bump-my-version) and [jupyterlab](https://github.com/jupyterlab/jupyterlab).


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

Updates `bump-my-version` from 1.4.1 to 1.5.0
- [Release notes](https://github.com/callowayproject/bump-my-version/releases)
- [Changelog](https://github.com/callowayproject/bump-my-version/blob/master/CHANGELOG.md)
- [Commits](callowayproject/bump-my-version@1.4.1...v1.5)

Updates `jupyterlab` from 4.6.1 to 4.6.2
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/main/RELEASE.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/lsp@4.6.1...@jupyterlab/lsp@4.6.2)

---
updated-dependencies:
- dependency-name: ruff
  dependency-version: 0.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: bump-my-version
  dependency-version: 1.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: jupyterlab
  dependency-version: 4.6.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-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 Jul 31, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 1, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 1, 2026
@dependabot
dependabot Bot deleted the dependabot/uv/development-dependencies-78f47ed847 branch August 1, 2026 08:12
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