Skip to content
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

fix(deps): update dependency typer to ^0.15.0 #38

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 1, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
typer (changelog) ^0.7.0 -> ^0.15.0 age adoption passing confidence

Release Notes

fastapi/typer (typer)

v0.15.0

Compare Source

Features
Internal

v0.14.0

Compare Source

Breaking Changes
  • 🔥 Remove auto naming of groups added via 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:

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.
    """

@&#8203;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:

import typer

app = typer.Typer()
users_app = typer.Typer()

app.add_typer(users_app, name="users")  # <-- Explicitly set the command group name

@&#8203;users_app.callback()
def users():
    """
    Manage users in the app.
    """

@&#8203;users_app.command()
def create(name: str):
    print(f"Creating user: {name}")

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
Fixes
Refactors
Internal

v0.12.5

Compare Source

Features
Fixes
Refactors
Docs
Internal

v0.12.4

Compare Source

Features
Fixes
Docs
Internal

v0.12.3

Compare Source

Fixes

v0.12.2

Compare Source

Features
  • ✨ Improve column help display, ensure commands column width is the same on all panels. PR #​567 by @​ssbarnea.
Fixes
Docs

v0.12.1

Compare Source

Now you don't need to install typer[all]. When you install typer it comes with the default optional dependencies and the typer command.

If you don't want the extra optional dependencies (rich and shellingham), you can install typer-slim instead.

You can also install typer-slim[standard], which includes the default optional dependencies, but not the typer command.

Now the package typer-cli doesn't add anything on top of what typer has, it only depends on typer, and is there only for backwards compatibility, so that projects that depend on typer-cli can get the latest features of the typer command while they upgrade their dependencies to require typer directly.

Features
Fixes
  • 🐛 Fix broken installation when upgrading from typer <0.12.0 to typer >=0.12.0, make typer independent of typer-slim, include typer command in typer package. PR #​791 by @​tiangolo.

This fixes a problem that would break the typer installation directory when upgrading from typer <0.12.0 to typer >=0.12.0, see issue #​790.

By installing the latest version (0.12.1) it fixes it, for any previous version, even if the installation directory was already broken by the previous upgrade.

Internal

v0.12.0

Compare Source

In version 0.12.0, the typer package depends on typer-slim[standard] which includes the default dependencies (instead of typer[all]) and typer-cli (that provides the typer command).

If you don't want the extra optional dependencies (rich and shellingham), you can install typer-slim instead.

You can also install typer-slim[standard], which includes the default optional dependencies, but not the typer command.

In version 0.12.0 the typer-cli package only provides the typer command, but the code is still in the main code, so even without installing typer-cli, it can be called with python -m typer.

This approach of having typer depend on typer-slim[standard] instead of including the whole code and dependencies itself caused an issue when upgrading from typer <0.12.0 to typer >=0.12.0, see issue #​790. This is fixed in version 0.12.1.

Features
  • ✨ Add typer-slim package without extras, make typer include typer-slim[default] and integrate Typer CLI (typer command) into Typer. PR #​780 by @​tiangolo.
Internal

v0.11.1

Compare Source

Fixes
  • 🔧 Explicitly include testing files in sdist for redistributors (e.g. OpenSUSE) and add CI to test redistribution. PR #​773 by @​tiangolo.
Internal
  • 👷 Do not use the cache for dependencies when publishing to PyPI. PR #​774 by @​tiangolo.

v0.11.0

Compare Source

Breaking Changes
Refactors
  • 🔧 Migrate from Black, isort, flake8, autoflake, pyupgrade to Ruff. PR #​763 by @​tiangolo.
Internal

v0.10.0

Compare Source

Fixes
  • 🐛 Fix default value of None for CLI Parameters when the type is list | None and the default value is None. PR #​664 by @​theowisear.

v0.9.4

Compare Source

Features

v0.9.3

Compare Source

Fixes
  • 🐛 Fix evaluating stringified annotations in Python 3.10 (also from __future__ import annotations). PR #​721 by @​heckad.

v0.9.2

Compare Source

Fixes
  • 🐛 Fix display of default value for Enum parameters inside of a list, include docs and tests. PR #​473 by @​asieira.
  • 🐛 Update type annotations for show_default parameter and update docs for setting a "Custom default string". PR #​501 by @​plannigan.
Docs

v0.9.1

Compare Source

Fixes
Docs
Internal

v0.9.0

Compare Source

Features
  • ✨ Add support for PEP-593 Annotated for specifying options and arguments. Initial PR #​584 by @​ryangalamb.
    • New docs: Optional CLI arguments.
    • It is no longer required to pass a default value of ... to mark a CLI Argument or CLI Option as required.
    • It is now recommended to use Annotated for typer.Option() and typer.Argument().
    • All the docs have been updated to recommend Annotated.
Docs
  • 📝 Update docs examples for custom param types using Annotated, fix overloads for typer.Argument. PR #​594 by @​tiangolo.
Internal

v0.8.0

Compare Source

Features
Upgrades
Docs
Internal

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 becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Contributor Author

renovate bot commented May 1, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: poetry.lock
Updating dependencies
Resolving dependencies...

Creating virtualenv bibli-o-mat--D6YuihT-py3.12 in /home/ubuntu/.cache/pypoetry/virtualenvs

Because no versions of typer match >0.12.0,<0.13.0
 and typer (0.12.0) depends on typer-cli (0.12.0), typer (>=0.12.0,<0.13.0) requires typer-cli (0.12.0).
So, because bibli-o-mat depends on both typer (^0.12.0) and typer-cli (^0.0.13), version solving failed.

@renovate renovate bot force-pushed the renovate/typer-0.x branch from 9ab04b0 to 5a6d761 Compare May 2, 2023 07:04
@renovate renovate bot changed the title fix(deps): update dependency typer to ^0.8.0 fix(deps): update dependency typer to ^0.9.0 May 2, 2023
@renovate renovate bot changed the title fix(deps): update dependency typer to ^0.9.0 fix(deps): update dependency typer to ^0.10.0 Mar 23, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch 2 times, most recently from a6e47c4 to 89d8b19 Compare March 26, 2024 23:14
@renovate renovate bot changed the title fix(deps): update dependency typer to ^0.10.0 fix(deps): update dependency typer to ^0.11.0 Mar 26, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 89d8b19 to 2fdc9ea Compare March 30, 2024 02:29
@renovate renovate bot changed the title fix(deps): update dependency typer to ^0.11.0 fix(deps): update dependency typer to ^0.12.0 Mar 30, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 2fdc9ea to 10b047f Compare November 7, 2024 22:39
@renovate renovate bot changed the title fix(deps): update dependency typer to ^0.12.0 fix(deps): update dependency typer to ^0.13.0 Nov 7, 2024
Copy link
Contributor Author

renovate bot commented Nov 7, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: poetry.lock
Updating dependencies
Resolving dependencies...


Because typer-cli (0.0.13) depends on typer (>=0.4.0,<=0.7.0)
 and no versions of typer-cli match >0.0.13,<0.0.14, typer-cli (>=0.0.13,<0.0.14) requires typer (>=0.4.0,<=0.7.0).
So, because bibli-o-mat depends on both typer (^0.15.0) and typer-cli (^0.0.13), version solving failed.

@renovate renovate bot force-pushed the renovate/typer-0.x branch from 10b047f to 3266949 Compare November 29, 2024 01:41
@renovate renovate bot changed the title fix(deps): update dependency typer to ^0.13.0 fix(deps): update dependency typer to ^0.14.0 Nov 29, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 3266949 to 2038587 Compare December 3, 2024 15:42
@renovate renovate bot changed the title fix(deps): update dependency typer to ^0.14.0 fix(deps): update dependency typer to ^0.15.0 Dec 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants