===================
Backwards incompatible changes:
- You can no longer directly set `Ref` foreign key values to `None`. Meaning you cannot set `"ref": {"_id": None}`.
Now, if you want to unassign `Ref` value, you have to set it to `None` (`"ref": None`), it will also now set all
nested values (`Denorm`) to `None` as well, this new feature now ensures, that there cannot be floating `Denorm` values
when trying to remove references (`846`_).
Improvements:
- Added removal of duplicate models when converting `XSD` to `DSA` even when `source` is different (`787`_).
.. _787: https://github.com/atviriduomenys/spinta/issues/787
- Improved invalid scope error messaging for token auth (`537`_).
.. _537: https://github.com/atviriduomenys/spinta/issues/537
- Added ability to remove all nested property values for `Ref` type, when assigning `None` to the value itself (`846`_).
Bug fixes:
- Fixed a bug in XSD->DSA conversion, where properties need to become arrays in a `choice` which has `maxOccurs="unbounded"` (`837`_).
.. _837: https://github.com/atviriduomenys/spinta/issues/837
- Fixed `checksum()` function bug, where it tried to calculate checksums before converting data from `backend` specific to
python types (`832`_).
- Fixed an oversight where `geoalchemy2` values were propagated to `prepare_dtype_for_response` instead of being converted to
`backend` indifferent type (`shapely.geometry.base.BaseGeometry`) (`832`_).
.. _832: https://github.com/atviriduomenys/spinta/issues/832
- Fixed errors when `Ref` changelog values were incorrect. Now, if changelog ref `_id`, or ref itself is `""`, it assumes
that it is supposed to be `None` (`556`_).
.. _556: https://github.com/atviriduomenys/spinta/issues/556
- Fixed `Ref` value unassignment not updating the values in database (`846`_).
.. _846: https://github.com/atviriduomenys/spinta/issues/846