Releases: typeddjango/django-stubs
Releases · typeddjango/django-stubs
1.1.0: Stability fixes
QuerySet[MyModel]annotation should be supported by the Pycharm IDE now- Bunch of stability fixes and improvements to stubs
1.0.2: Merge pull request #119 from mkurnikov/subclass-queryset-proper-typing
- Fix crash with
QuerySetsubclasses andvalues()
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_attributesflag 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.validatorsclasses 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_pagedecorator. Contributed by @mattbasta