Skip to content

Bump griffe from 1.1.1 to 2.3.0 - #912

Open
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/pip/griffe-2.3.0
Open

Bump griffe from 1.1.1 to 2.3.0#912
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/pip/griffe-2.3.0

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps griffe from 1.1.1 to 2.3.0.

Release notes

Sourced from griffe's releases.

2.3.0

2.3.0 - 2026-09-04

Compare with 2.2.0

Features

  • Add option to give precedence to docstrings in stubs vs. source (09a2a13 by Timothée Mazzucotelli). Issue-447, PR-481

Bug Fixes

  • Preserve nested tuple parentheses (e095a7c by Alperen). PR-487, Co-authored-by: Timothée Mazzucotelli dev@pawamoy.fr
  • Preserve nested f-string format specs (38921b7 by Alperen). PR-486
  • Disable all docstring warnings when passing warnings=False (5cb0ae2 by Timothée Mazzucotelli).

Performance Improvements

  • Reuse computed parent in is_imported (092ac31 by Timothée Mazzucotelli).
  • Only build debug messages at debug level (8f05a4a by Timothée Mazzucotelli).
  • Avoid creating new sets when handling labels (06cd02e by Timothée Mazzucotelli).
  • Maintain map of AST node type to visitor function (e21851e by Timothée Mazzucotelli).
  • Avoid cyclic refs in ASTs to allow garbage-collecting them (b968de0 by Timothée Mazzucotelli).
  • Cache per-module path-related properties during serialization (8bd6cc4 by Timothée Mazzucotelli).
  • Do not fire load events when no extension has hooked them (0e2ae7c by Timothée Mazzucotelli).
  • Compute costly message lazily in alias resolution errors (1e391b8 by Timothée Mazzucotelli).
  • Avoid iterating many times over function parameters when merging stubs (03cae74 by Timothée Mazzucotelli).
  • Avoid iterating many times over function parameters when diff'ing (d3cf2c4 by Timothée Mazzucotelli).
  • Improve efficiency of AST parameter extraction (1e37cd4 by Timothée Mazzucotelli).
  • Cache serializable expression fields (f9e48c1 by Timothée Mazzucotelli).
  • Use maps to make JSON encoder faster (b7de96f by Timothée Mazzucotelli).
  • Avoid recomputing inherited members when diff'ing (a29e028 by Timothée Mazzucotelli).
  • Make Google, Numpy and Sphinx docstring parsers faster (7f39373 by Timothée Mazzucotelli).
  • Pre-compile patterns for docstring style detection (ad58ad5 by Timothée Mazzucotelli).
  • LRU-cache parsing of type annotations in docstrings (1671e59 by Timothée Mazzucotelli).

2.2.0

2.2.0 - 2026-08-16

Compare with 2.1.0

Features

  • Support await expressions (6b3caab by Vincent Gao). PR-479
  • Support unpacking in dict comprehensions (2d39391 by mushitoriami). PR-475

Bug Fixes

... (truncated)

Changelog

Sourced from griffe's changelog.

2.3.0 - 2026-09-04

Compare with 2.2.0

Features

  • Add option to give precedence to docstrings in stubs vs. source (09a2a13 by Timothée Mazzucotelli). Issue-447, PR-481

Bug Fixes

  • Preserve nested tuple parentheses (e095a7c by Alperen). PR-487, Co-authored-by: Timothée Mazzucotelli dev@pawamoy.fr
  • Preserve nested f-string format specs (38921b7 by Alperen). PR-486
  • Disable all docstring warnings when passing warnings=False (5cb0ae2 by Timothée Mazzucotelli).

Performance Improvements

  • Reuse computed parent in is_imported (092ac31 by Timothée Mazzucotelli).
  • Only build debug messages at debug level (8f05a4a by Timothée Mazzucotelli).
  • Avoid creating new sets when handling labels (06cd02e by Timothée Mazzucotelli).
  • Maintain map of AST node type to visitor function (e21851e by Timothée Mazzucotelli).
  • Avoid cyclic refs in ASTs to allow garbage-collecting them (b968de0 by Timothée Mazzucotelli).
  • Cache per-module path-related properties during serialization (8bd6cc4 by Timothée Mazzucotelli).
  • Do not fire load events when no extension has hooked them (0e2ae7c by Timothée Mazzucotelli).
  • Compute costly message lazily in alias resolution errors (1e391b8 by Timothée Mazzucotelli).
  • Avoid iterating many times over function parameters when merging stubs (03cae74 by Timothée Mazzucotelli).
  • Avoid iterating many times over function parameters when diff'ing (d3cf2c4 by Timothée Mazzucotelli).
  • Improve efficiency of AST parameter extraction (1e37cd4 by Timothée Mazzucotelli).
  • Cache serializable expression fields (f9e48c1 by Timothée Mazzucotelli).
  • Use maps to make JSON encoder faster (b7de96f by Timothée Mazzucotelli).
  • Avoid recomputing inherited members when diff'ing (a29e028 by Timothée Mazzucotelli).
  • Make Google, Numpy and Sphinx docstring parsers faster (7f39373 by Timothée Mazzucotelli).
  • Pre-compile patterns for docstring style detection (ad58ad5 by Timothée Mazzucotelli).
  • LRU-cache parsing of type annotations in docstrings (1671e59 by Timothée Mazzucotelli).

2.2.0 - 2026-08-16

Compare with 2.1.0

Features

  • Support await expressions (6b3caab by Vincent Gao). PR-479
  • Support unpacking in dict comprehensions (2d39391 by mushitoriami). PR-475

Bug Fixes

  • Forward warn_missing_types to Sphinx return section reader (a15e782 by Timothée Mazzucotelli). Issue-mkdocstrings-python-337
  • Make stringified expressions valid and faithful Python (eb85f0d by Vincent Gao). PR-478
  • Empty tuples can never be implicit (82e728d by Vincent Gao). PR-474, Co-authored-by: Timothée Mazzucotelli dev@pawamoy.fr
  • Render f-strings and t-strings with correct quote delimiters (90e28d4 by Bartosz Sławecki). Issue-444, PR-455
  • Detect basic admonitions 'example', 'note' and 'warning' in Google/Numpy docstrings when inferring style (f30306f by Timothée Mazzucotelli).

... (truncated)

Commits
  • ecd5349 chore: Prepare release 2.3.0
  • 09a2a13 feat: Add option to give precedence to docstrings in stubs vs. source
  • e095a7c fix: Preserve nested tuple parentheses
  • efa8ac1 Merge branch 'main' of github.com:mkdocstrings/griffe
  • 092ac31 perf: Reuse computed parent in is_imported
  • 76e1082 chore: Add docs for package parameter
  • 8f05a4a perf: Only build debug messages at debug level
  • 06cd02e perf: Avoid creating new sets when handling labels
  • e21851e perf: Maintain map of AST node type to visitor function
  • b968de0 perf: Avoid cyclic refs in ASTs to allow garbage-collecting them
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [griffe](https://github.com/mkdocstrings/griffe) from 1.1.1 to 2.3.0.
- [Release notes](https://github.com/mkdocstrings/griffe/releases)
- [Changelog](https://github.com/mkdocstrings/griffe/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/griffe@1.1.1...2.3.0)

---
updated-dependencies:
- dependency-name: griffe
  dependency-version: 2.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

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 Sep 11, 2026
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Sep 11, 2026
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