Currently we're migrating Django from version 1.11.29 to version 3.2.15 and one thing that we noticed is that the DateFields in the save() method in models is now a string instead of a Date object as it used to be.
this is one of the fields that now is a string
service_date_starts = models.DateField(blank=True, null=True,)
is this expected? or is there a way the DateFields in save() still be an object without parsing?