1. ==========================
    
  2. Django 2.0.5 release notes
    
  3. ==========================
    
  4. 
    
  5. *May 1, 2018*
    
  6. 
    
  7. Django 2.0.5 fixes several bugs in 2.0.4.
    
  8. 
    
  9. Bugfixes
    
  10. ========
    
  11. 
    
  12. * Corrected the import paths that ``inspectdb`` generates for
    
  13.   ``django.contrib.postgres`` fields (:ticket:`29307`).
    
  14. 
    
  15. * Fixed a regression in Django 1.11.8 where altering a field with a unique
    
  16.   constraint may drop and rebuild more foreign keys than necessary
    
  17.   (:ticket:`29193`).
    
  18. 
    
  19. * Fixed crashes in ``django.contrib.admindocs`` when a view is a callable
    
  20.   object, such as ``django.contrib.syndication.views.Feed`` (:ticket:`29296`).
    
  21. 
    
  22. * Fixed a regression in Django 2.0.4 where ``QuerySet.values()`` or
    
  23.   ``values_list()`` after combining an annotated and unannotated queryset with
    
  24.   ``union()``, ``difference()``, or ``intersection()`` crashed due to mismatching
    
  25.   columns (:ticket:`29286`).