Skip to content

Releases: typeddjango/django-stubs

1.3.2

13 Dec 20:57
Compare
Choose a tag to compare
  • Improve support for BaseManager.from_queryset()

v1.3.1

12 Dec 05:48
5832605
Compare
Choose a tag to compare
  • Add support for BaseManager.from_queryset()
  • Better support for new Django 3.0 features
  • Fix values(), values_list() with ManyToManyField
  • Annotations improvements

v1.3.0

06 Dec 20:38
Compare
Choose a tag to compare
  • Mypy 0.750 support
  • Django 3.0 support

v1.2.0

05 Oct 18:48
dceb075
Compare
Choose a tag to compare

New features

  • Support for filter/get/exclude arguments typechecking
  • Recognize third-party base Model classes
  • Compatibility with mypy==0.730
  • Better support for django.contrib.auth model classes
  • No need for PYTHONPATH = ${pwd}:$PYTHONPATH anymore for mypy execution

and lots of bugfixes and stub improvements

1.1.0: Stability fixes

24 Aug 15:42
Compare
Choose a tag to compare
  • 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

26 Jul 19:57
5d2efdb
Compare
Choose a tag to compare

1.0.1

26 Jul 17:22
Compare
Choose a tag to compare
  • Remove psycopg2 dependency
  • Add support for values_list("foreign_key_id", flat=True) to produce a Collection[int]

New semanal + Django app registry rewrite

25 Jul 17:17
b4cd975
Compare
Choose a tag to compare

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

15 Apr 12:02
Compare
Choose a tag to compare

Proper release for 0.12.0 changes.

v0.12.0: make ignore_missing_model_attributes behaviour optional (#66)

13 Apr 11:00
5dd6ecc
Compare
Choose a tag to compare
  • 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