Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tox-dev/sphinx-autodoc-typehints
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.0.1
Choose a base ref
...
head repository: tox-dev/sphinx-autodoc-typehints
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.1.0
Choose a head ref
  • 7 commits
  • 10 files changed
  • 4 contributors

Commits on Jan 21, 2025

  1. [pre-commit.ci] pre-commit autoupdate (#518)

    updates:
    - [github.com/astral-sh/ruff-pre-commit: v0.9.1 → v0.9.2](astral-sh/ruff-pre-commit@v0.9.1...v0.9.2)
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    pre-commit-ci[bot] authored Jan 21, 2025
    Configuration menu
    Copy the full SHA
    5a6f798 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2025

  1. Bump pypa/gh-action-pypi-publish from 1.12.3 to 1.12.4 (#519)

    Bumps [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) from 1.12.3 to 1.12.4.
    - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases)
    - [Commits](pypa/gh-action-pypi-publish@v1.12.3...v1.12.4)
    
    ---
    updated-dependencies:
    - dependency-name: pypa/gh-action-pypi-publish
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 24, 2025
    Configuration menu
    Copy the full SHA
    da5feae View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2025

  1. [pre-commit.ci] pre-commit autoupdate (#520)

    updates:
    - [github.com/codespell-project/codespell: v2.3.0 → v2.4.0](codespell-project/codespell@v2.3.0...v2.4.0)
    - [github.com/tox-dev/tox-ini-fmt: 1.4.1 → 1.5.0](tox-dev/tox-ini-fmt@1.4.1...1.5.0)
    - [github.com/astral-sh/ruff-pre-commit: v0.9.2 → v0.9.3](astral-sh/ruff-pre-commit@v0.9.2...v0.9.3)
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    pre-commit-ci[bot] authored Jan 28, 2025
    Configuration menu
    Copy the full SHA
    bfa7f43 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2025

  1. [pre-commit.ci] pre-commit autoupdate (#521)

    updates:
    - [github.com/python-jsonschema/check-jsonschema: 0.31.0 → 0.31.1](python-jsonschema/check-jsonschema@0.31.0...0.31.1)
    - [github.com/codespell-project/codespell: v2.4.0 → v2.4.1](codespell-project/codespell@v2.4.0...v2.4.1)
    - [github.com/astral-sh/ruff-pre-commit: v0.9.3 → v0.9.4](astral-sh/ruff-pre-commit@v0.9.3...v0.9.4)
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    pre-commit-ci[bot] authored Feb 4, 2025
    Configuration menu
    Copy the full SHA
    fd427dc View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2025

  1. [pre-commit.ci] pre-commit autoupdate (#522)

    * [pre-commit.ci] pre-commit autoupdate
    
    updates:
    - [github.com/astral-sh/ruff-pre-commit: v0.9.4 → v0.9.6](astral-sh/ruff-pre-commit@v0.9.4...v0.9.6)
    - [github.com/rbubley/mirrors-prettier: v3.4.2 → v3.5.0](rbubley/mirrors-prettier@v3.4.2...v3.5.0)
    
    * [pre-commit.ci] auto fixes from pre-commit.com hooks
    
    for more information, see https://pre-commit.ci
    
    ---------
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    pre-commit-ci[bot] authored Feb 10, 2025
    Configuration menu
    Copy the full SHA
    6ffdf92 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2025

  1. [pre-commit.ci] pre-commit autoupdate (#524)

    updates:
    - [github.com/rbubley/mirrors-prettier: v3.5.0 → v3.5.1](rbubley/mirrors-prettier@v3.5.0...v3.5.1)
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    pre-commit-ci[bot] authored Feb 18, 2025
    Configuration menu
    Copy the full SHA
    f09eb89 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2025

  1. Support Sphinx 8.2.0 - drop 3.10 support because Sphinx does (#525)

    * chore(deps): update dependency sphinx to v8.2.0
    
    * refactor: patch stringify_annotation with arbitrary *args and **kwargs
    
    * fix: derive annotation for TypeAliasForwardRef from its name attribute
    
    TypeAliasForwardRef.__repr__ was changed in sphinx v8.2.0 to not only yield the name, but also the class name.
    
    * test: update warning message
    
    "unpickable" was renamed to "unpickleable" in sphinx v8.2.0
    
    * feat: respect configuration option python_display_short_literal_types
    
    https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-python_display_short_literal_types
    
    * Sphinx 8.2 drops 3.10 support
    
    Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
    
    ---------
    
    Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
    Co-authored-by: Bernát Gábor <bgabor8@bloomberg.net>
    b-kamphorst and gaborbernat authored Feb 19, 2025
    Configuration menu
    Copy the full SHA
    ca5fcc0 View commit details
    Browse the repository at this point in the history
Loading