-
-
Notifications
You must be signed in to change notification settings - Fork 228
fix: Support Typer 0.14 and 0.15 #1173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
b30f4e0
to
82a064b
Compare
It would be nice to support Typer >=0.15 for users who lock
|
@johnthagen any chance you have time to investigate the type checker issue and solve it? Hopefully while retaining support for older Typer versions. |
@dbanty So looking into it, this is the failing line:
It looks like according to Typer docs Looks like they want users to use The upstream PR |
82a064b
to
2fd1f58
Compare
2fd1f58
to
a252722
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
# Conflicts: # pdm.lock
> [!IMPORTANT] > Merging this pull request will create this release ## Breaking Changes ### Delete fewer files with `--overwrite` `--overwrite` will no longer delete the entire output directory before regenerating. Instead, it will only delete specific, known directories within that directory. Right now, that is only the generated `models` and `api` directories. Other generated files, like `README.md`, will be overwritten. Extra files and directories outside of those listed above will be left untouched, so you can any extra modules or files around while still updating `pyproject.toml` automatically. Closes #1105. ## Features - Support httpx 0.28 (#1172) ### Add `generate_all_tags` config option You can now, optionally, generate **duplicate** endpoint functions/modules using _every_ tag for an endpoint, not just the first one, by setting `generate_all_tags: true` in your configuration file. ## Fixes - Support Typer 0.14 and 0.15 (#1173) ### Fix minimum `attrs` version The minimum `attrs` dependency version was incorrectly set to 21.3.0. This has been corrected to 22.2.0, the minimum supported version since `openapi-python-client` 0.19.1. Closes #1084, thanks @astralblue! ### Fix compatibility with Pydantic 2.10+ #1176 by @Viicos Set `defer_build` to models that we know will fail to build, and call `model_rebuild` in the `__init__.py` file. Co-authored-by: knope-bot[bot] <152252888+knope-bot[bot]@users.noreply.github.com>
@dbanty Wanted to report that we upgraded to 0.23 and can confirm that this issue is fixed. Thanks! ❤️ |
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [typer](https://redirect.github.com/fastapi/typer) ([changelog](https://typer.tiangolo.com/release-notes/)) | `>0.6,<0.14` -> `>0.6,<0.16` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>fastapi/typer (typer)</summary> ### [`v0.15.0`](https://redirect.github.com/fastapi/typer/releases/tag/0.15.0) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.14.0...0.15.0) ##### Features - ✨ Add support for extending typer apps without passing a name, add commands to the top level. PR [#​1037](https://redirect.github.com/fastapi/typer/pull/1037) by [@​patrick91](https://redirect.github.com/patrick91). - New docs: [One File Per Command](https://typer.tiangolo.com/tutorial/one-file-per-command/). ##### Internal - ⬆ Bump mkdocs-material from 9.5.46 to 9.5.47. PR [#​1070](https://redirect.github.com/fastapi/typer/pull/1070) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump ruff from 0.8.0 to 0.8.1. PR [#​1066](https://redirect.github.com/fastapi/typer/pull/1066) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). ### [`v0.14.0`](https://redirect.github.com/fastapi/typer/releases/tag/0.14.0) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.13.1...0.14.0) ##### Breaking Changes - 🔥 Remove auto naming of groups added via `add_typer` based on the group's callback function name. PR [#​1052](https://redirect.github.com/fastapi/typer/pull/1052) by [@​patrick91](https://redirect.github.com/patrick91). Before, it was supported to infer the name of a command group from the callback function name in the sub-app, so, in this code: ```python import typer app = typer.Typer() users_app = typer.Typer() app.add_typer(users_app) @​users_app.callback() def users(): # <-- This was the inferred command group name """ Manage users in the app. """ @​users_app.command() def create(name: str): print(f"Creating user: {name}") ``` ...the command group would be named `users`, based on the name of the function `def users()`. Now you need to set it explicitly: ```python import typer app = typer.Typer() users_app = typer.Typer() app.add_typer(users_app, name="users") # <-- Explicitly set the command group name @​users_app.callback() def users(): """ Manage users in the app. """ @​users_app.command() def create(name: str): print(f"Creating user: {name}") ``` Updated docs [SubCommand Name and Help](https://typer.tiangolo.com/tutorial/subcommands/name-and-help/). **Note**: this change will enable important features in the next release. 🤩 ##### Internal - ⬆ Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.12.2. PR [#​1043](https://redirect.github.com/fastapi/typer/pull/1043) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-material from 9.5.44 to 9.5.46. PR [#​1062](https://redirect.github.com/fastapi/typer/pull/1062) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump ruff from 0.7.4 to 0.8.0. PR [#​1059](https://redirect.github.com/fastapi/typer/pull/1059) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump astral-sh/setup-uv from 3 to 4. PR [#​1061](https://redirect.github.com/fastapi/typer/pull/1061) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#​1053](https://redirect.github.com/fastapi/typer/pull/1053) by [@​pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). ### [`v0.13.1`](https://redirect.github.com/fastapi/typer/releases/tag/0.13.1) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.13.0...0.13.1) ##### Features - ✨ Remove Rich tags when showing completion text. PR [#​877](https://redirect.github.com/fastapi/typer/pull/877) by [@​svlandeg](https://redirect.github.com/svlandeg). - ✨ Render Rich markup as HTML in Markdown docs. PR [#​847](https://redirect.github.com/fastapi/typer/pull/847) by [@​svlandeg](https://redirect.github.com/svlandeg). - ✨ Support cp850 encoding for auto-completion in PowerShell. PR [#​808](https://redirect.github.com/fastapi/typer/pull/808) by [@​svlandeg](https://redirect.github.com/svlandeg). - ✨ Allow gettext translation of help message. PR [#​886](https://redirect.github.com/fastapi/typer/pull/886) by [@​svlandeg](https://redirect.github.com/svlandeg). ##### Refactors - 🐛 Fix printing HTML from Rich output. PR [#​1055](https://redirect.github.com/fastapi/typer/pull/1055) by [@​tiangolo](https://redirect.github.com/tiangolo). ##### Docs - 📝 Update markdown includes to use the new simpler format. PR [#​1054](https://redirect.github.com/fastapi/typer/pull/1054) by [@​tiangolo](https://redirect.github.com/tiangolo). ##### Internal - ⬆ Bump ruff from 0.7.3 to 0.7.4. PR [#​1051](https://redirect.github.com/fastapi/typer/pull/1051) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#​1047](https://redirect.github.com/fastapi/typer/pull/1047) by [@​pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.7.2 to 0.7.3. PR [#​1046](https://redirect.github.com/fastapi/typer/pull/1046) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump tiangolo/latest-changes from 0.3.1 to 0.3.2. PR [#​1044](https://redirect.github.com/fastapi/typer/pull/1044) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Update pytest-cov requirement from <6.0.0,>=2.10.0 to >=2.10.0,<7.0.0. PR [#​1033](https://redirect.github.com/fastapi/typer/pull/1033) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). ### [`v0.13.0`](https://redirect.github.com/fastapi/typer/releases/tag/0.13.0) [Compare Source](https://redirect.github.com/fastapi/typer/compare/0.12.5...0.13.0) ##### Features - ✨ Handle `KeyboardInterrupt` separately from other exceptions. PR [#​1039](https://redirect.github.com/fastapi/typer/pull/1039) by [@​patrick91](https://redirect.github.com/patrick91). - ✨ Update `launch` to not print anything when opening urls. PR [#​1035](https://redirect.github.com/fastapi/typer/pull/1035) by [@​patrick91](https://redirect.github.com/patrick91). - ✨ Show help items in order of definition. PR [#​944](https://redirect.github.com/fastapi/typer/pull/944) by [@​svlandeg](https://redirect.github.com/svlandeg). ##### Fixes - 🐛 Fix equality check for custom classes. PR [#​979](https://redirect.github.com/fastapi/typer/pull/979) by [@​AryazE](https://redirect.github.com/AryazE). - 🐛 Allow colon in zsh autocomplete values and descriptions. PR [#​988](https://redirect.github.com/fastapi/typer/pull/988) by [@​snapbug](https://redirect.github.com/snapbug). ##### Refactors - 🗑️ Deprecate support for `is_flag` and `flag_value` parameters. PR [#​987](https://redirect.github.com/fastapi/typer/pull/987) by [@​svlandeg](https://redirect.github.com/svlandeg). - 🔥 Remove unused functionality from `_typing.py` file. PR [#​805](https://redirect.github.com/fastapi/typer/pull/805) by [@​ivantodorovich](https://redirect.github.com/ivantodorovich). - ✏️ Fix typo in function name `_make_rich_text`. PR [#​959](https://redirect.github.com/fastapi/typer/pull/959) by [@​svlandeg](https://redirect.github.com/svlandeg). ##### Internal - ✅ Only run completion installation tests when the env var `_TYPER_RUN_INSTALL_COMPLETION_TESTS` is set. PR [#​995](https://redirect.github.com/fastapi/typer/pull/995) by [@​svlandeg](https://redirect.github.com/svlandeg). - 📝 Update the docstring of the `_make_rich_text` method. PR [#​972](https://redirect.github.com/fastapi/typer/pull/972) by [@​svlandeg](https://redirect.github.com/svlandeg). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#​1040](https://redirect.github.com/fastapi/typer/pull/1040) by [@​pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump mkdocs-material from 9.5.42 to 9.5.44. PR [#​1042](https://redirect.github.com/fastapi/typer/pull/1042) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump ruff from 0.7.1 to 0.7.2. PR [#​1038](https://redirect.github.com/fastapi/typer/pull/1038) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-macros-plugin from 1.3.6 to 1.3.7. PR [#​1031](https://redirect.github.com/fastapi/typer/pull/1031) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#​1032](https://redirect.github.com/fastapi/typer/pull/1032) by [@​pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.7.0 to 0.7.1. PR [#​1029](https://redirect.github.com/fastapi/typer/pull/1029) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump pillow from 10.4.0 to 11.0.0. PR [#​1023](https://redirect.github.com/fastapi/typer/pull/1023) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-material from 9.5.35 to 9.5.42. PR [#​1027](https://redirect.github.com/fastapi/typer/pull/1027) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump ruff from 0.6.5 to 0.7.0. PR [#​1026](https://redirect.github.com/fastapi/typer/pull/1026) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-macros-plugin from 1.2.0 to 1.3.6. PR [#​1025](https://redirect.github.com/fastapi/typer/pull/1025) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Update pre-commit requirement from <4.0.0,>=2.17.0 to >=2.17.0,<5.0.0. PR [#​1012](https://redirect.github.com/fastapi/typer/pull/1012) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.3. PR [#​1009](https://redirect.github.com/fastapi/typer/pull/1009) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#​1001](https://redirect.github.com/fastapi/typer/pull/1001) by [@​pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - 👷 Update Deploy docs CI to use uv. PR [#​1021](https://redirect.github.com/fastapi/typer/pull/1021) by [@​tiangolo](https://redirect.github.com/tiangolo). - 👷 Fix smokeshow, checkout files on CI. PR [#​1020](https://redirect.github.com/fastapi/typer/pull/1020) by [@​tiangolo](https://redirect.github.com/tiangolo). - 👷 Use uv in CI. PR [#​1019](https://redirect.github.com/fastapi/typer/pull/1019) by [@​tiangolo](https://redirect.github.com/tiangolo). - 👷 Update `labeler.yml`. PR [#​1014](https://redirect.github.com/fastapi/typer/pull/1014) by [@​tiangolo](https://redirect.github.com/tiangolo). - 👷 Update worfkow deploy-docs-notify URL. PR [#​1011](https://redirect.github.com/fastapi/typer/pull/1011) by [@​tiangolo](https://redirect.github.com/tiangolo). - 👷 Upgrade Cloudflare GitHub Action. PR [#​1010](https://redirect.github.com/fastapi/typer/pull/1010) by [@​tiangolo](https://redirect.github.com/tiangolo). - ⬆ Bump mkdocs-macros-plugin from 1.0.5 to 1.2.0. PR [#​992](https://redirect.github.com/fastapi/typer/pull/992) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump ruff from 0.6.4 to 0.6.5. PR [#​991](https://redirect.github.com/fastapi/typer/pull/991) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-material from 9.5.34 to 9.5.35. PR [#​996](https://redirect.github.com/fastapi/typer/pull/996) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#​993](https://redirect.github.com/fastapi/typer/pull/993) by [@​pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#​982](https://redirect.github.com/fastapi/typer/pull/982) by [@​pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump tiangolo/issue-manager from 0.5.0 to 0.5.1. PR [#​980](https://redirect.github.com/fastapi/typer/pull/980) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - 👷 Update `issue-manager.yml`. PR [#​978](https://redirect.github.com/fastapi/typer/pull/978) by [@​tiangolo](https://redirect.github.com/tiangolo). - ⬆ Bump ruff from 0.6.3 to 0.6.4. PR [#​975](https://redirect.github.com/fastapi/typer/pull/975) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump mkdocs-material from 9.5.33 to 9.5.34. PR [#​963](https://redirect.github.com/fastapi/typer/pull/963) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ Bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.1. PR [#​973](https://redirect.github.com/fastapi/typer/pull/973) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#​966](https://redirect.github.com/fastapi/typer/pull/966) by [@​pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - 💚 Set `include-hidden-files` to `True` when using the `upload-artifact` GH action. PR [#​967](https://redirect.github.com/fastapi/typer/pull/967) by [@​svlandeg](https://redirect.github.com/svlandeg). - ⬆ Bump ruff from 0.6.1 to 0.6.3. PR [#​961](https://redirect.github.com/fastapi/typer/pull/961) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - ⬆ \[pre-commit.ci] pre-commit autoupdate. PR [#​689](https://redirect.github.com/fastapi/typer/pull/689) by [@​pre-commit-ci\[bot\]](https://redirect.github.com/apps/pre-commit-ci). - ⬆ Bump ruff from 0.2.0 to 0.6.1. PR [#​938](https://redirect.github.com/fastapi/typer/pull/938) by [@​dependabot\[bot\]](https://redirect.github.com/apps/dependabot). - 👷 Update `latest-changes` GitHub Action. PR [#​955](https://redirect.github.com/fastapi/typer/pull/955) by [@​tiangolo](https://redirect.github.com/tiangolo). </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/openapi-generators/openapi-python-client). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOS4wIiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dylan Anthony <[email protected]>
> [!IMPORTANT] > Merging this pull request will create this release ## Breaking Changes ### Delete fewer files with `--overwrite` `--overwrite` will no longer delete the entire output directory before regenerating. Instead, it will only delete specific, known directories within that directory. Right now, that is only the generated `models` and `api` directories. Other generated files, like `README.md`, will be overwritten. Extra files and directories outside of those listed above will be left untouched, so you can any extra modules or files around while still updating `pyproject.toml` automatically. Closes openapi-generators#1105. ## Features - Support httpx 0.28 (openapi-generators#1172) ### Add `generate_all_tags` config option You can now, optionally, generate **duplicate** endpoint functions/modules using _every_ tag for an endpoint, not just the first one, by setting `generate_all_tags: true` in your configuration file. ## Fixes - Support Typer 0.14 and 0.15 (openapi-generators#1173) ### Fix minimum `attrs` version The minimum `attrs` dependency version was incorrectly set to 21.3.0. This has been corrected to 22.2.0, the minimum supported version since `openapi-python-client` 0.19.1. Closes openapi-generators#1084, thanks @astralblue! ### Fix compatibility with Pydantic 2.10+ openapi-generators#1176 by @Viicos Set `defer_build` to models that we know will fail to build, and call `model_rebuild` in the `__init__.py` file. Co-authored-by: knope-bot[bot] <152252888+knope-bot[bot]@users.noreply.github.com>
This PR contains the following updates:
>0.6,<0.14
->>0.6,<0.16
Release Notes
fastapi/typer (typer)
v0.15.0
Compare Source
Features
Internal
v0.14.0
Compare Source
Breaking Changes
add_typer
based on the group's callback function name. PR #1052 by @patrick91.Before, it was supported to infer the name of a command group from the callback function name in the sub-app, so, in this code:
...the command group would be named
users
, based on the name of the functiondef users()
.Now you need to set it explicitly:
Updated docs SubCommand Name and Help.
Note: this change will enable important features in the next release. 🤩
Internal
v0.13.1
Compare Source
Features
Refactors
Docs
Internal
v0.13.0
Compare Source
Features
KeyboardInterrupt
separately from other exceptions. PR #1039 by @patrick91.launch
to not print anything when opening urls. PR #1035 by @patrick91.Fixes
Refactors
is_flag
andflag_value
parameters. PR #987 by @svlandeg._typing.py
file. PR #805 by @ivantodorovich._make_rich_text
. PR #959 by @svlandeg.Internal
_TYPER_RUN_INSTALL_COMPLETION_TESTS
is set. PR #995 by @svlandeg._make_rich_text
method. PR #972 by @svlandeg.labeler.yml
. PR #1014 by @tiangolo.issue-manager.yml
. PR #978 by @tiangolo.include-hidden-files
toTrue
when using theupload-artifact
GH action. PR #967 by @svlandeg.latest-changes
GitHub Action. PR #955 by @tiangolo.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.