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