Releases: django-commons/django-typer
Releases · django-commons/django-typer
v2.4.0
v2.3.0
What's Changed
- 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.
- Fixed Overriding the command group class does not work.
- 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 Move architecture in docs to ARCHITECTURE.md
- Completed Transfer to django-commons
- Completed Add howto for how to change the display order of commands in help.
New Contributors
- @github-actions made their first contribution in #118
- @tim-schilling made their first contribution in #127
Full Changelog: v2.2.2...v2.3.0
v2.2.2
What's Changed
Full Changelog: v2.2.1...v2.2.2
v2.2.1
v2.2.0
v2.1.3
- Fixed Move from django_typer to django_typer.management broke doc reference links.
- Implemented Support Django 5.1
What's Changed
Full Changelog: v2.1.2...v2.1.3
v2.1.2
What's Changed
Full Changelog: v2.1.1...v2.1.2
v2.1.1
What's Changed
Full Changelog: v2.1.0...v2.1.1
v2.1.0
- Implemented Only attempt to import rich and typer if settings has not disabled tracebacks.
- Implemented Move tests into top level dir.
- Implemented Move core code out of init.py into management/init.py
- Fixed Typer(help="") doesnt work.
🚨 Deprecation 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
What's Changed
Full Changelog: v2.0.2...v2.1.0