Skip to content

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Aug 30, 2021

This PR contains the following updates:

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

Release Notes

fastapi/typer (typer)

v0.19.2

Compare Source

Fixes
Refactors
Internal

v0.19.1

Compare Source

Note: this is the last version to support Python 3.7, going forward Typer will require Python 3.8+. And soon Python 3.8 will also be dropped as Python 3.8 reached it's end of life almost a year ago.

Fixes

v0.19.0

Compare Source

Features
Refactors
Docs

v0.18.0

Compare Source

Fixes
  • 👽️ Ensure compatibility with Click 8.3.0 by restoring the original value_is_missing function. PR #​1333 by @​svlandeg.
Upgrades
  • 📌 Remove pin for Click < 8.3.0 now that there's a fix for the changes. PR #​1346 by @​tiangolo.

v0.17.5

Compare Source

Fixes
  • ⬇️ Restrict Click to below 8.3.0 to handle changes in the new version. PR #​1336 by @​svlandeg.
Internal

v0.17.4

Compare Source

Fixes
Internal

v0.17.3

Compare Source

Features

v0.17.2

Compare Source

Fixes

v0.17.1

Compare Source

Fixes

v0.17.0

Compare Source

Features
Internal

v0.16.1

Compare Source

Fixes
  • 🐛 Avoid printing additional output with no_args_is_help=True and Click 8.2. PR #​1278 by @​svlandeg.
Docs
Internal

v0.16.0

Compare Source

Upgrades

When using the CliRunner with Click < 8.2, to be able to access the stderr output, you needed to set the mix_stderr parameter to True. Since Click 8.2 (and Typer 0.160 this release supporting it) this is no longer necessary, so this parameter has been removed.

Refactors
Internal

v0.15.4

Compare Source

Upgrades
  • 📌 Pin Click to < 8.2, compatibility for Click >= 8.2 will be added in a future version. PR #​1225 by @​tiangolo.

v0.15.3

Compare Source

Fixes
  • 🐛 Ensure that autocompletion works for Path arguments/options. PR #​1138 by @​svlandeg.
  • 🐛 Fix newline after header in help text, and add more tests for the behaviour of rich_markup_mode . PR #​964 by @​svlandeg.
Internal

v0.15.2

Compare Source

Features
Fixes
Refactors
Docs
Internal

v0.15.1

Compare Source

Features
  • 🗑️ Deprecate shell_complete and continue to use autocompletion for CLI parameters. PR #​974 by @​svlandeg.
Docs
Internal

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)

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


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.


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

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

@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.4.0 fix(dependencies): update dependency typer to ^0.4.1 Apr 6, 2022
@renovate renovate bot force-pushed the renovate/typer-0.x branch 4 times, most recently from 29947a1 to e9393b9 Compare April 7, 2022 16:17
@codecov
Copy link

codecov bot commented Apr 7, 2022

Welcome to Codecov 🎉

Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests.

Thanks for integrating Codecov - We've got you covered ☂️

@renovate renovate bot force-pushed the renovate/typer-0.x branch from e9393b9 to 9c21d28 Compare April 21, 2022 19:30
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 9c21d28 to e46ceef Compare June 8, 2022 20:18
@renovate renovate bot force-pushed the renovate/typer-0.x branch from e46ceef to 26efdbf Compare July 2, 2022 18:26
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.4.1 fix(dependencies): update dependency typer to ^0.4.2 Jul 2, 2022
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 26efdbf to fd48d2c Compare July 6, 2022 21:15
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.4.2 fix(dependencies): update dependency typer to ^0.5.0 Jul 6, 2022
@renovate renovate bot force-pushed the renovate/typer-0.x branch from fd48d2c to ec5f3c9 Compare July 12, 2022 21:55
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.5.0 fix(dependencies): update dependency typer to ^0.6.1 Jul 12, 2022
@renovate renovate bot force-pushed the renovate/typer-0.x branch from ec5f3c9 to 2474794 Compare November 20, 2022 11:22
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.6.1 fix(dependencies): update dependency typer to ^0.7.0 Nov 20, 2022
@renovate
Copy link
Author

renovate bot commented Nov 20, 2022

⚠ 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


Could not parse version constraint: ^3.7.4;python<3.8

@renovate renovate bot force-pushed the renovate/typer-0.x branch from 2474794 to 524a6c7 Compare June 1, 2023 03:57
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.7.0 fix(dependencies): update dependency typer to ^0.9.0 Jun 1, 2023
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 524a6c7 to 9d69e73 Compare March 23, 2024 16:41
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.9.0 fix(dependencies): update dependency typer to ^0.9.1 Mar 23, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 9d69e73 to 02a9004 Compare March 23, 2024 20:05
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.9.1 fix(dependencies): update dependency typer to ^0.10.0 Mar 23, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 02a9004 to 521a657 Compare March 27, 2024 00:13
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.10.0 fix(dependencies): update dependency typer to ^0.11.0 Mar 27, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 521a657 to 17cce7d Compare March 29, 2024 02:17
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.11.0 fix(dependencies): update dependency typer to ^0.11.1 Mar 29, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 17cce7d to a0aebc5 Compare March 30, 2024 05:30
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.11.1 fix(dependencies): update dependency typer to ^0.12.0 Mar 30, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from a0aebc5 to b2924f3 Compare April 5, 2024 05:16
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.13.0 fix(dependencies): update dependency typer to ^0.13.1 Nov 19, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from e33f584 to 456bece Compare November 29, 2024 00:22
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.13.1 fix(dependencies): update dependency typer to ^0.14.0 Nov 29, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 456bece to 4dc16f6 Compare December 3, 2024 17:35
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.14.0 fix(dependencies): update dependency typer to ^0.15.0 Dec 3, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 4dc16f6 to 9feacca Compare December 4, 2024 18:38
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.15.0 fix(dependencies): update dependency typer to ^0.15.1 Dec 4, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 9feacca to f41334f Compare February 27, 2025 22:33
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.15.1 fix(dependencies): update dependency typer to ^0.15.2 Feb 27, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from f41334f to 7a567e9 Compare April 29, 2025 01:59
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.15.2 fix(dependencies): update dependency typer to ^0.15.3 Apr 29, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 7a567e9 to 7523336 Compare May 14, 2025 23:35
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.15.3 fix(dependencies): update dependency typer to ^0.15.4 May 14, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 7523336 to ae30821 Compare May 26, 2025 18:35
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.15.4 fix(dependencies): update dependency typer to ^0.16.0 May 26, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from ae30821 to d98afe8 Compare August 18, 2025 22:36
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.16.0 fix(dependencies): update dependency typer to ^0.16.1 Aug 18, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from d98afe8 to 4ce6e12 Compare August 31, 2025 11:19
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.16.1 fix(dependencies): update dependency typer to ^0.17.3 Aug 31, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 4ce6e12 to 72c7f29 Compare September 6, 2025 23:50
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.17.3 fix(dependencies): update dependency typer to ^0.17.4 Sep 6, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 72c7f29 to 9962a95 Compare September 19, 2025 20:32
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.17.4 fix(dependencies): update dependency typer to ^0.18.0 Sep 19, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 9962a95 to d40944a Compare September 20, 2025 08:34
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.18.0 fix(dependencies): update dependency typer to ^0.19.0 Sep 20, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from d40944a to 82f8963 Compare September 20, 2025 13:13
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.19.0 fix(dependencies): update dependency typer to ^0.19.1 Sep 20, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 82f8963 to c593a5a Compare September 23, 2025 09:59
@renovate renovate bot changed the title fix(dependencies): update dependency typer to ^0.19.1 fix(dependencies): update dependency typer to ^0.19.2 Sep 23, 2025
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