Django-typer

Latest version: v3.1.0

Safety actively analyzes 723625 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 5

3.1.0

What's Changed
* Fixed [Fish shell completion fails for any script named something other than "manage"](https://github.com/django-commons/django-typer/issues/207)
* Fixed [shellcompletion install fails on fish when the command resolves to a script path](https://github.com/django-commons/django-typer/issues/206)
* Implemented [Add completer for settings names.](https://github.com/django-commons/django-typer/issues/203)
* Implemented [Separate ModelObjectCompleter default queries out into standalone functions.](https://github.com/django-commons/django-typer/issues/202)
* Fixed [Shell completion tests let failures through in CI](https://github.com/django-commons/django-typer/issues/194)
* Fixed [fish completion installs should respect XDG_CONFIG_HOME](https://github.com/django-commons/django-typer/issues/193)
* Fixed [zsh completion installs should respect ZDOTDIR](https://github.com/django-commons/django-typer/issues/192)
* Implemented [Prompt before writing to dotfiles when installing completions](https://github.com/django-commons/django-typer/issues/189)
* Implemented [Support Django 5.2](https://github.com/django-commons/django-typer/issues/188)
* Implemented [Use intersphinx for external document references.](https://github.com/django-commons/django-typer/issues/187)
* Implemented [Add completer for language codes.](https://github.com/django-commons/django-typer/issues/186)
* Implemented [Switch poetry -> uv](https://github.com/django-commons/django-typer/issues/185)
* Implemented [Model object completers should handle fields with choices appropriately](https://github.com/django-commons/django-typer/issues/182)
* Implemented [Require tests to pass before release action runs.](https://github.com/django-commons/django-typer/issues/173)


New Contributors
* AliYmn made their first contribution in https://github.com/django-commons/django-typer/pull/199

**Full Changelog**: https://github.com/django-commons/django-typer/compare/v3.0.0...v3.1.0

3.0.0

🚨 Upgrade Notice

**There are breaking changes between 2.x and 3.x, mostly involving shell tab completion. [See the changelog for migration steps](https://django-typer.readthedocs.io/en/latest/changelog.html#migrating-from-2-x-to-3-x)**.

What's Changed

* Implemented [Completer for media files.](https://github.com/django-commons/django-typer/issues/175)
* Implemented [Completer for static files.](https://github.com/django-commons/django-typer/issues/174)
* Fixed [Completions before the end of the typed command string do not work.](https://github.com/django-commons/django-typer/issues/168)
* Implemented [Add print_return class field to enable/disable result printing](https://github.com/django-commons/django-typer/issues/167)
* BREAKING [Default rich traceback should not show locals - its too much information.](https://github.com/django-commons/django-typer/issues/166)
* Implemented [path completers should be configurable with a root directory other than cwd](https://github.com/django-commons/django-typer/issues/165)
* Implemented [Migrate pyproject.toml to poetry 2 and portable project specifiers.](https://github.com/django-commons/django-typer/issues/164)
* BREAKING [Split parsers.py and completers.py into submodules.](https://github.com/django-commons/django-typer/issues/163)
* Implemented [Model completer/parser should support returning the field value](https://github.com/django-commons/django-typer/issues/162)
* Fixed [Model objects with null lookup fields should not be included in model field completion output](https://github.com/django-commons/django-typer/issues/160)
* Implemented [Add a performance regression.](https://github.com/django-commons/django-typer/issues/157)
* Implemented [Use in-house shell completer classes.](https://github.com/django-commons/django-typer/issues/156)
* Implemented [Add precommit hook to fix safe lint and format issues](https://github.com/django-commons/django-typer/issues/153)
* Fixed [Fish shell complete is broken when rich is installed.](https://github.com/django-commons/django-typer/issues/152)
* BREAKING [Remove name parameter from initialize()/callback().](https://github.com/django-commons/django-typer/issues/150)
* Implemented [Run full test suite on mac osx](https://github.com/django-commons/django-typer/issues/148)
* Implemented [Convert check.sh to justfile](https://github.com/django-commons/django-typer/issues/147)
* Implemented [Run full test suite on windows in CI](https://github.com/django-commons/django-typer/issues/146)
* Implemented [ANSI color control sequences should optionally be scrubbed from shell completions](https://github.com/django-commons/django-typer/issues/144)
* Fixed [supressed_base_arguments are still present in the Context](https://github.com/django-commons/django-typer/issues/143)
* Implemented [Add showcase of commands using django-typer to docs](https://github.com/django-commons/django-typer/issues/142)
* Implemented [Add a finalize decorator for functions to collect/operate on subroutine results.](https://github.com/django-commons/django-typer/issues/140)
* Fixed [Remove management imports in django_typer/__init__.py](https://github.com/django-commons/django-typer/issues/95)
* Fixed [ParamSpec includes self for group methods](https://github.com/django-commons/django-typer/issues/73)
* Fixed [Installed shellcompletion scripts do not pass values of --settings or --pythonpath](https://github.com/django-commons/django-typer/issues/68)
* Implemented [Add support for QuerySet parameter types.](https://github.com/django-commons/django-typer/issues/58)
* Fixed [shellcompletion complete should print to the command's stdout.](https://github.com/django-commons/django-typer/issues/19)
* Implemented [Add translations for helps..](https://github.com/django-commons/django-typer/issues/18)
* Implemented [Add completer/parser for FileField and FilePathField](https://github.com/django-commons/django-typer/issues/17)
* Implemented [Add completer/parser for DurationField](https://github.com/django-commons/django-typer/issues/16)
* Implemented [Add completer/parser for DateTimeField](https://github.com/django-commons/django-typer/issues/15)
* Implemented [Add completer/parser for DateField](https://github.com/django-commons/django-typer/issues/14)
* Implemented [Add completer/parser for TimeField](https://github.com/django-commons/django-typer/issues/13)
* Implemented [Improve shell completion continuous integration tests](https://github.com/django-commons/django-typer/issues/11)





**Full Changelog**: https://github.com/django-commons/django-typer/compare/v2.6.0...v3.0.0

2.6.0

* Fixed [On Python 3.13, sometimes flush is called on the stream wrapped by OutputWrapper after it is closed.](https://github.com/django-commons/django-typer/issues/155)
* Implemented [Support Typer 0.15.x](https://github.com/django-commons/django-typer/issues/154)


**Full Changelog**: https://github.com/django-commons/django-typer/compare/v2.5.0...v2.6.0

2.5.0

* Implemented [Support Typer >=0.14](https://github.com/django-commons/django-typer/issues/149)
* Fixed [Typer-style interface throws an assertion when no callback is present on a subgroup.](https://github.com/django-commons/django-typer/issues/145)

What's Changed
* V2.5 by bckohan in https://github.com/django-commons/django-typer/pull/151


**Full Changelog**: https://github.com/django-commons/django-typer/compare/v2.4.0...v2.5.0

2.4.0

* Implemented [Support Typer 0.13](https://github.com/django-commons/django-typer/issues/138)

What's Changed
* update scheduled actions to run weekly instead of daily by bckohan in https://github.com/django-commons/django-typer/pull/135
* make linter happy by bckohan in https://github.com/django-commons/django-typer/pull/136
* fix a few howto doc typos by bckohan in https://github.com/django-commons/django-typer/pull/137
* fix 138 by bckohan in https://github.com/django-commons/django-typer/pull/139


**Full Changelog**: https://github.com/django-commons/django-typer/compare/v2.3.0...v2.4.0

2.3.0

What's Changed

* Fixed [Inheritance more than one level deep of TyperCommands does not work.](https://github.com/django-commons/django-typer/issues/131)
* Implemented [Drop python 3.8 support.](https://github.com/django-commons/django-typer/issues/130)
* Implemented [Command help order should respect definition order for class based commands.](https://github.com/django-commons/django-typer/issues/129)
* Fixed [Overriding the command group class does not work.](https://github.com/django-commons/django-typer/issues/128)
* Completed [Add project to test PyPI](https://github.com/django-commons/django-typer/issues/126)
* Completed [Open up vulnerability reporting and add security policy.](https://github.com/django-commons/django-typer/issues/124)
* Completed [Add example of custom plugin logic to plugins tutorial.](https://github.com/django-commons/django-typer/issues/122)
* Completed [Move architecture in docs to ARCHITECTURE.md](https://github.com/django-commons/django-typer/issues/121)
* Completed [Transfer to django-commons](https://github.com/django-commons/django-typer/issues/117)
* Completed [Add howto for how to change the display order of commands in help.](https://github.com/django-commons/django-typer/issues/116)


New Contributors
* github-actions made their first contribution in https://github.com/django-commons/django-typer/pull/118
* tim-schilling made their first contribution in https://github.com/django-commons/django-typer/pull/127

**Full Changelog**: https://github.com/django-commons/django-typer/compare/v2.2.2...v2.3.0

Page 1 of 5

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.