Release 0.7.0
- More types are not checked for equality and will not trigger
model_has_changed
to be truedatetime
/date
/time
/timedelta
list
/set
/tuple
and alsodict
pydantic.BaseModel
instances, as pydantic supports comparing those
- You may not override checking for equality more easily using the two methods
_model_value_is_comparable_type
and_model_value_is_actually_unchanged
. If any type is missing for you, feel free to extend the class 😉