Change Log¶
v2.6.0 (2024-12-03)¶
v2.5.0 (2024-11-29)¶
v2.4.0 (2024-11-07)¶
Implemented Support Typer 0.13
v2.3.0 (2024-10-13)¶
Fixed Inheritance more than one level deep of TyperCommands does not work.
Implemented Drop python 3.8 support.
Implemented Command help order should respect definition order for class based commands.
Completed Add project to test PyPI
Completed Open up vulnerability reporting and add security policy.
Completed Add example of custom plugin logic to plugins tutorial.
Completed Transfer to django-commons
Completed Add howto for how to change the display order of commands in help.
v2.2.2 (2024-08-25)¶
v2.2.1 (2024-08-17)¶
v2.2.0 (2024-07-26)¶
v2.1.3 (2024-07-15)¶
v2.1.2 (2024-06-07)¶
v2.1.1 (2024-06-06)¶
v2.1.0 (2024-06-05)¶
Warning
Imports from django_typer
have been deprecated and will be removed in 3.0! Imports
have moved to django_typer.management
:
# old way
from django_typer import TyperCommand, command, group, initialize, Typer
# new way!
from django_typer.management import TyperCommand, command, group, initialize, Typer
v2.0.2 (2024-06-03)¶
v2.0.1 (2024-05-31)¶
v2.0.0 (2024-05-31)¶
This major version release, includes an extensive internal refactor, numerous bug fixes and the addition of a plugin-based extension pattern.
Fixed Stack trace produced when attempted to tab-complete a non-existent management command.
Fixed Overriding handle() in inherited commands results in multiple commands.
Implemented Support subgroup name overloads.
Fixed Helps from class docstrings and TyperCommand class parameters are not inherited.
Implemented Allow callback and initialize to be aliases of each other.
Implemented Shell completion for –pythonpath
Implemented Shell completion for –settings
Fixed An intelligible exception should be thrown when a command is invoked that has no implementation.
Implemented TyperCommand class docstring should be used as the help as a last resort.
Fixed ModelObjectParser should use a metavar appropriate to the field type.
Implemented Switch to ruff for linting and formatting.
Implemented Add a wrapper for typer’s echo/secho
Implemented Support a native typer-like interface.
Fixed @group type hint does not carry over the parameter spec of the wrapped function
Implemented Better test organization.
Implemented Add completer/parser for GenericIPAddressField.
v1.1.2 (2024-04-22)¶
v1.1.1 (2024-04-11)¶
Implemented Fix pyright type checking and add to CI
Implemented Convert CONTRIBUTING.rst to markdown
v1.1.0 (2024-04-03)¶
Implemented Convert readme to markdown.
v1.0.9 (yanked)¶
Fixed Support typer 0.12.0
v1.0.8 (2024-03-26)¶
v1.0.7 (2024-03-17)¶
v1.0.6 (2024-03-14)¶
v1.0.5 (2024-03-14)¶
v1.0.4 (2024-03-13)¶
v1.0.3 (2024-03-08)¶
v1.0.2 (2024-03-05)¶
v1.0.1 (2024-02-29)¶
v1.0.0 (2024-02-26)¶
Initial production/stable release.
v0.6.1b (2024-02-24)¶
Incremental beta release - this is also the second release candidate for version 1.
Peg typer version to 0.9.x
v0.6.0b (2024-02-23)¶
Incremental beta release - this is also the first release candidate for version 1.
v0.5.0b (2024-01-31)¶
Incremental Beta Release
v0.4.0b (2024-01-08)¶
Incremental Beta Release
v0.3.0b (2024-01-06)¶
Incremental Beta Release
v0.2.0b (2024-01-04)¶
Incremental Beta Release
v0.1.0b (2023-12-05)¶
Initial Release (Beta)