When using custom Prefetch with polymorphic model, this is now failing.
Prefetch('field', queryset=Fieldmodel.objects.filter(somefilter=somevalue))
ValueError('Prefetch querysets cannot use values().')
Django 1.11 works here because it's checking the subclasses of queryset iterator, but 1.10 is broken.
Maybe it's worth fixing this, or document that polymorphic 1.2 requires Django 1.11+.