Releases: closeio/cleancat
Releases · closeio/cleancat
v1.0.0
v0.7.10
v0.7.7
v0.7.6
v0.7.5
v0.7.5
v0.7.4
This release allows the users to narrow down the choices accepted by an Enum
field.
v0.7.3
This release contains a minor bug fix, making the serialization of a field containing the raw_field_name
param work as expected.
v0.7.2
This release introduces a new SQLAReference
field and adds an abstract Reference
class that both SQLAReference
and MongoReference
inherit from.
v0.7.1
This release includes fixes around serializing of optional fields (i.e. fields with required=False
).
Most of the fields without a value are serialized as None
, except for List
(serialized as []
), SortedSet
([]
), and Dict
({}
).
v0.7.0
- Added
SQLAEmbeddedReference
based on SQLAlchemy - Introduced a generic
EmbeddedReference
. MadeMongoEmbeddedReference
andSQLAlchemyEmbeddedReference
inherit from it. - Updated
setup.py
with updated install and test requirements. - Added more automated tests and switched the test runner to
pytest
.