Releases: typeddjango/django-stubs
Releases · typeddjango/django-stubs
1.0.1
New semanal + Django app registry rewrite
All previous config option are dropped, see
https://github.com/typeddjango/django-stubs#warning-all-configuration-from-pre-100-versions-is-dropped-use-one-below
for the new configuration of the plugin and some release details
v0.12.1
v0.12.0: make ignore_missing_model_attributes behaviour optional (#66)
- Fix compatibility with mypy==0.700
- Check if unknown attributes are invoked on model instances. Add
ignore_missing_model_attributes
flag to control this behaviour
v0.11.1
v0.11.0
v0.10.0
- Support for proper return types of
values()
andvalues_list
, thanks to @syastrov. - Add all reimports for
forms.__init__.pyi
. - Make constructor annotations for
django.core.validators
classes less specific, thanks to @kalekseev. - Fix many false positives inside the stubs itself.
v0.9.0
- Support returning the correct values for the different QuerySet methods when using .values() and .values_list(). Contributed by @syastrov
- Fix type errors on other models' managers when using objects = models.Manager() in Model. Contributed by @syastrov
- Add
gzip_page
decorator. Contributed by @mattbasta