Skip to content

[poetry] Bump the dependencies group across 1 directory with 3 updates#17

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/dependencies-0df685225a
Open

[poetry] Bump the dependencies group across 1 directory with 3 updates#17
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/dependencies-0df685225a

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Jan 19, 2026

Updates the requirements on mkdocstrings-python, black and griffe-pydantic to permit the latest version.
Updates mkdocstrings-python to 2.0.1

Release notes

Sourced from mkdocstrings-python's releases.

2.0.1

2.0.1 - 2025-12-03

Compare with 2.0.0

Bug Fixes

  • Don't ignore filters when category grouping is disabled (63aa1b0 by Timothée Mazzucotelli). Issue-324

Code Refactoring

  • Localize more contents in templates (854b6a6 by Zhikang Yan). PR-321
  • Improve ja/zh translations (b83107c by Zhikang Yan). PR-322
Changelog

Sourced from mkdocstrings-python's changelog.

2.0.1 - 2025-12-03

Compare with 2.0.0

Bug Fixes

  • Don't ignore filters when category grouping is disabled (63aa1b0 by Timothée Mazzucotelli). Issue-324

Code Refactoring

  • Localize more contents in templates (854b6a6 by Zhikang Yan). PR-321
  • Improve ja/zh translations (b83107c by Zhikang Yan). PR-322

2.0.0 - 2025-11-27

Compare with 1.19.0

Code Refactoring

  • Remove deprecated code for v2 (c10afdb by Timothée Mazzucotelli).

1.19.0 - 2025-11-10

Compare with 1.18.2

Features

  • Release scoped and relative cross-references (872afc5 by Timothée Mazzucotelli).
  • Release __all__ ordering feature (84aaebc by Timothée Mazzucotelli).
  • Release public filter feature (3be14cc by Timothée Mazzucotelli).
  • Release backlinks feature (ae7cc2d by Timothée Mazzucotelli).
  • Release expression modernization feature (dbadd1e by Timothée Mazzucotelli).
  • Release visually-lighter admonitions for source code blocks (fdaeb48 by Timothée Mazzucotelli).
  • Release inheritance diagram features (669b42e by Timothée Mazzucotelli).

Code Refactoring

  • Update code base for Python 3.10 (b696ed2 by Timothée Mazzucotelli).

1.18.2 - 2025-08-28

Compare with 1.18.1

Bug Fixes

  • Normalize spaces to underscores when passing object to rendering context using its kind as key (6f79be0 by Timothée Mazzucotelli). Issue-mkdocstrings-791

1.18.1 - 2025-08-28

Compare with 1.18.0

... (truncated)

Commits
  • 6e7b971 chore: Prepare release 2.0.1
  • 854b6a6 refactor: Localize more contents in templates
  • b83107c refactor: Improve ja/zh translations
  • 63aa1b0 fix: Don't ignore filters when category grouping is disabled
  • 76c08ac docs: Fix cross-reference
  • 50d135a chore: Template upgrade
  • 2b7db12 chore: Prepare release 2.0.0
  • 1a38a24 docs: Remove funding banner
  • c10afdb refactor: Remove deprecated code for v2
  • b5ef2f3 Merge branch 'main' of github.com:mkdocstrings/python
  • Additional commits viewable in compare view

Updates black to 26.1.0

Release notes

Sourced from black's releases.

26.1.0

Highlights

Introduces the 2026 stable style (#4892), stabilizing the following changes:

  • always_one_newline_after_import: Always force one blank line after import statements, except when the line after the import is a comment or an import statement (#4489)
  • fix_fmt_skip_in_one_liners: Fix # fmt: skip behavior on one-liner declarations, such as def foo(): return "mock" # fmt: skip, where previously the declaration would have been incorrectly collapsed (#4800)
  • fix_module_docstring_detection: Fix module docstrings being treated as normal strings if preceded by comments (#4764)
  • fix_type_expansion_split: Fix type expansions split in generic functions (#4777)
  • multiline_string_handling: Make expressions involving multiline strings more compact (#1879)
  • normalize_cr_newlines: Add \r style newlines to the potential newlines to normalize file newlines both from and to (#4710)
  • remove_parens_around_except_types: Remove parentheses around multiple exception types in except and except* without as (#4720)
  • remove_parens_from_assignment_lhs: Remove unnecessary parentheses from the left-hand side of assignments while preserving magic trailing commas and intentional multiline formatting (#4865)
  • standardize_type_comments: Format type comments which have zero or more spaces between # and type: or between type: and value to # type: (value) (#4645)

The following change was not in any previous stable release:

  • Regenerated the _width_table.py and added tests for the Khmer language (#4253)

This release alo bumps pathspec to v1 and fixes inconsistencies with Git's .gitignore logic (#4958). Now, files will be ignored if a pattern matches them, even if the parent directory is directly unignored. For example, Black would previously format exclude/not_this/foo.py with this .gitignore:

exclude/
!exclude/not_this/

Now, exclude/not_this/foo.py will remain ignored. To ensure exclude/not_this/ and all of it's children are included in formatting (and in Git), use this .gitignore:

*/exclude/*
!*/exclude/not_this/

This new behavior matches Git. The leading */ are only necessary if you wish to ignore matching subdirectories (like the previous behavior did), and not just matching root

... (truncated)

Changelog

Sourced from black's changelog.

26.1.0

Highlights

Introduces the 2026 stable style (#4892), stabilizing the following changes:

  • always_one_newline_after_import: Always force one blank line after import statements, except when the line after the import is a comment or an import statement (#4489)
  • fix_fmt_skip_in_one_liners: Fix # fmt: skip behavior on one-liner declarations, such as def foo(): return "mock" # fmt: skip, where previously the declaration would have been incorrectly collapsed (#4800)
  • fix_module_docstring_detection: Fix module docstrings being treated as normal strings if preceded by comments (#4764)
  • fix_type_expansion_split: Fix type expansions split in generic functions (#4777)
  • multiline_string_handling: Make expressions involving multiline strings more compact (#1879)
  • normalize_cr_newlines: Add \r style newlines to the potential newlines to normalize file newlines both from and to (#4710)
  • remove_parens_around_except_types: Remove parentheses around multiple exception types in except and except* without as (#4720)
  • remove_parens_from_assignment_lhs: Remove unnecessary parentheses from the left-hand side of assignments while preserving magic trailing commas and intentional multiline formatting (#4865)
  • standardize_type_comments: Format type comments which have zero or more spaces between # and type: or between type: and value to # type: (value) (#4645)

The following change was not in any previous stable release:

  • Regenerated the _width_table.py and added tests for the Khmer language (#4253)

This release alo bumps pathspec to v1 and fixes inconsistencies with Git's .gitignore logic (#4958). Now, files will be ignored if a pattern matches them, even if the parent directory is directly unignored. For example, Black would previously format exclude/not_this/foo.py with this .gitignore:

exclude/
!exclude/not_this/

Now, exclude/not_this/foo.py will remain ignored. To ensure exclude/not_this/ and all of it's children are included in formatting (and in Git), use this .gitignore:

*/exclude/*
!*/exclude/not_this/

This new behavior matches Git. The leading */ are only necessary if you wish to ignore

... (truncated)

Commits

Updates griffe-pydantic to 1.2.0

Release notes

Sourced from griffe-pydantic's releases.

1.2.0

1.2.0 - 2026-01-13

Compare with 1.1.8

Features

Changelog

Sourced from griffe-pydantic's changelog.

1.2.0 - 2026-01-13

Compare with 1.1.8

Features

1.1.8 - 2025-10-14

Compare with 1.1.7

Bug Fixes

  • Don't process module aliases (all modules eventually get processed) (87ab586 by Timothée Mazzucotelli). Issue-45
  • Prevent crashes while computing JSON schemas (ec1b424 by Timothée Mazzucotelli).

1.1.7 - 2025-09-05

Compare with 1.1.6

Build

  • Depend on Griffe 1.14 (08f955c by Timothée Mazzucotelli).

1.1.6 - 2025-08-06

Compare with 1.1.5

Bug Fixes

1.1.5 - 2025-08-05

Compare with 1.1.4

Code Refactoring

  • Rename logger to griffe_pydantic (ad436b5 by Timothée Mazzucotelli).
  • Use DEBUG log level for unhandled objects (1f33b32 by Martin Stancsics). Issue-31, PR-38

1.1.4 - 2025-03-26

Compare with 1.1.3

Bug Fixes

  • Don't process properties as fields (2977b21 by Timothée Mazzucotelli). Issue-29

... (truncated)

Commits
  • aa9e58b chore: Prepare release 1.2.0
  • 74dc008 ci: Ignore Ruff warnings
  • e895f89 chore: Template upgrade
  • 5021332 feat: Supports Pydantic Field defined via Annotated
  • b36c951 chore: Prepare release 1.1.8
  • 87ab586 fix: Don't process module aliases (all modules eventually get processed)
  • ec1b424 fix: Prevent crashes while computing JSON schemas
  • 3c432f5 chore: Prepare release 1.1.7
  • c89aef7 tests: Add skipped test for annotated fields
  • 08f955c build: Depend on Griffe 1.14
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

Updates the requirements on [mkdocstrings-python](https://github.com/mkdocstrings/python), [black](https://github.com/psf/black) and [griffe-pydantic](https://github.com/mkdocstrings/griffe-pydantic) to permit the latest version.

Updates `mkdocstrings-python` to 2.0.1
- [Release notes](https://github.com/mkdocstrings/python/releases)
- [Changelog](https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/python@1.12.0...2.0.1)

Updates `black` to 26.1.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@25.1.0...26.1.0)

Updates `griffe-pydantic` to 1.2.0
- [Release notes](https://github.com/mkdocstrings/griffe-pydantic/releases)
- [Changelog](https://github.com/mkdocstrings/griffe-pydantic/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/griffe-pydantic@1.1.0...1.2.0)

---
updated-dependencies:
- dependency-name: mkdocstrings-python
  dependency-version: 2.0.1
  dependency-type: direct:development
  dependency-group: dependencies
- dependency-name: black
  dependency-version: 26.1.0
  dependency-type: direct:development
  dependency-group: dependencies
- dependency-name: griffe-pydantic
  dependency-version: 1.2.0
  dependency-type: direct:development
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jan 19, 2026
@github-actions
Copy link
Copy Markdown

☂️ Python Coverage

current status: ✅

Overall Coverage

Lines Covered Coverage Threshold Status
538 530 99% 0% 🟢

New Files

No new covered files...

Modified Files

No covered modified files...

updated for commit: ab4c481 by action🐍

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 Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants