Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 23, 2024

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
typer (changelog) ==0.9.0==0.21.0 age confidence

Release Notes

fastapi/typer (typer)

v0.21.0

Compare Source

Breaking Changes
Docs
Internal

v0.20.1

Compare Source

Features
Fixes
  • 🐛 Ensure that options_metavar is passed through correctly. PR #​816 by @​gar1t.
  • 🐛 Ensure an optional argument is shown in brackets, even when metavar is set. PR #​1409 by @​svlandeg.
  • 🐛 Ensure that the default rich_markup_mode is interpreted correctly. PR #​1304 by @​svlandeg.
Refactors
Docs
Internal

v0.20.0

Compare Source

Features
Upgrades
Internal

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

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 renovate bot added the renovate label Mar 23, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from ee2011d to b1ee539 Compare March 23, 2024 19:08
@renovate renovate bot changed the title Update dependency typer to v0.9.1 Update dependency typer to v0.10.0 Mar 23, 2024
@renovate renovate bot changed the title Update dependency typer to v0.10.0 Update dependency typer to v0.11.0 Mar 26, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch 2 times, most recently from 268c85b to 42d64fd Compare March 29, 2024 01:10
@renovate renovate bot changed the title Update dependency typer to v0.11.0 Update dependency typer to v0.11.1 Mar 29, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 42d64fd to 26bfabc Compare March 30, 2024 03:37
@renovate renovate bot changed the title Update dependency typer to v0.11.1 Update dependency typer to v0.12.0 Mar 30, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 26bfabc to 54a16db Compare April 5, 2024 02:14
@renovate renovate bot changed the title Update dependency typer to v0.12.0 Update dependency typer to v0.12.1 Apr 5, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 54a16db to 066839c Compare April 8, 2024 22:07
@renovate renovate bot changed the title Update dependency typer to v0.12.1 Update dependency typer to v0.12.2 Apr 8, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 066839c to 26b3dca Compare April 9, 2024 20:13
@renovate renovate bot changed the title Update dependency typer to v0.12.2 Update dependency typer to v0.12.3 Apr 9, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 26b3dca to eeedeef Compare August 17, 2024 04:50
@renovate renovate bot changed the title Update dependency typer to v0.12.3 Update dependency typer to v0.12.4 Aug 17, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch 2 times, most recently from 165d3e1 to 1dc6b47 Compare August 24, 2024 23:25
@renovate renovate bot changed the title Update dependency typer to v0.12.4 Update dependency typer to v0.12.5 Aug 24, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 1dc6b47 to 0882b0b Compare November 8, 2024 01:09
@renovate renovate bot changed the title Update dependency typer to v0.12.5 Update dependency typer to v0.13.0 Nov 8, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 0882b0b to c69f8bb Compare November 19, 2024 01:30
@renovate renovate bot changed the title Update dependency typer to v0.13.0 Update dependency typer to v0.13.1 Nov 19, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from c69f8bb to 3fc3bdb Compare November 29, 2024 01:32
@renovate renovate bot changed the title Update dependency typer to v0.13.1 Update dependency typer to v0.14.0 Nov 29, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 3fc3bdb to 7efccb4 Compare December 3, 2024 17:37
@renovate renovate bot changed the title Update dependency typer to v0.14.0 Update dependency typer to v0.15.0 Dec 3, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 7efccb4 to 3386ab9 Compare December 4, 2024 18:24
@renovate renovate bot changed the title Update dependency typer to v0.15.0 Update dependency typer to v0.15.1 Dec 4, 2024
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 3386ab9 to 8b289e6 Compare February 27, 2025 21:39
@renovate renovate bot changed the title Update dependency typer to v0.15.1 Update dependency typer to v0.15.2 Feb 27, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 8b289e6 to c088424 Compare April 28, 2025 23:27
@renovate renovate bot changed the title Update dependency typer to v0.15.2 Update dependency typer to v0.15.3 Apr 28, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from c088424 to 63219d9 Compare May 14, 2025 18:53
@renovate renovate bot changed the title Update dependency typer to v0.15.3 Update dependency typer to v0.15.4 May 14, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 63219d9 to ed7bd02 Compare May 26, 2025 18:31
@renovate renovate bot changed the title Update dependency typer to v0.15.4 Update dependency typer to v0.16.0 May 26, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from ed7bd02 to ae1b1b6 Compare August 10, 2025 13:11
@renovate renovate bot force-pushed the renovate/typer-0.x branch from ae1b1b6 to 1341d80 Compare August 18, 2025 22:19
@renovate renovate bot changed the title Update dependency typer to v0.16.0 Update dependency typer to v0.16.1 Aug 18, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 1341d80 to 2fcf1da Compare August 31, 2025 08:53
@renovate renovate bot changed the title Update dependency typer to v0.16.1 Update dependency typer to v0.17.3 Aug 31, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 2fcf1da to 856ba4f Compare September 5, 2025 21:04
@renovate renovate bot changed the title Update dependency typer to v0.17.3 Update dependency typer to v0.17.4 Sep 5, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 856ba4f to 8393ecd Compare September 19, 2025 21:21
@renovate renovate bot changed the title Update dependency typer to v0.17.4 Update dependency typer to v0.18.0 Sep 19, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 8393ecd to f933194 Compare September 20, 2025 09:36
@renovate renovate bot changed the title Update dependency typer to v0.18.0 Update dependency typer to v0.19.1 Sep 20, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from f933194 to 1ab8427 Compare September 23, 2025 10:33
@renovate renovate bot changed the title Update dependency typer to v0.19.1 Update dependency typer to v0.19.2 Sep 23, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 1ab8427 to 7b5f172 Compare October 20, 2025 21:27
@renovate renovate bot changed the title Update dependency typer to v0.19.2 Update dependency typer to v0.20.0 Oct 20, 2025
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 7b5f172 to 5f976eb Compare December 3, 2025 19:54
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 5f976eb to 7526a3b Compare December 19, 2025 17:16
@renovate renovate bot changed the title Update dependency typer to v0.20.0 Update dependency typer to v0.20.1 Dec 19, 2025
Signed-off-by: Renovate Bot <bot@renovateapp.com>
@renovate renovate bot force-pushed the renovate/typer-0.x branch from 7526a3b to 1bf1ac8 Compare December 25, 2025 13:45
@renovate renovate bot changed the title Update dependency typer to v0.20.1 Update dependency typer to v0.21.0 Dec 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant