I use models based on QuerySet class in my web application. After update to from 0.10.6 to 0.10.7 I started getting errors: AttributeError: 'MyQuerySet' object has no attribute 'aggregate_sum' because 'aggregate_sum' has been removed in new version from BaseQuerySet class.
Why 'aggregate_sum' method has been removed without prior mark as deprecated?
What should I do? Use 'BaseQuerySet.sum' method based on map-reduce or realize their own method of replacing it?