Releases: sopherapps/pydantic-redis
Releases · sopherapps/pydantic-redis
pydantic-redis v0.5.0
pydantic-redis v0.4.3
Added
- Added mkdocs documentation
Changed
- Exposed
RedisConfig
viapydantic_redis.config
, especially for documentation.
Fixed
- Fixed docs building in CI
pydantic-redis v0.4.2
Fixed
- Fixed unexpected data error when selecting some columns for some records
pydantic-redis v0.4.1
Nothing. Same as 0.4.0.
pydantic-redis v0.4.0
Added
- Added pagination
Changed
- Changed redis index to use sorted sets instead of ordinary sets
pydantic-redis v0.3.0
Added
- Added asyncio support, to be got from the
pydantic_redis.asyncio
module
Changed
- Moved the synchronous version to the
pydantic_redis.syncio
module, but kept its contents exposed in pydantic_redis
for backward-compatibility
pydantic-redis v0.2.0
Changed
- Changed the
NESTED_MODEL_LIST_FIELD_PREFIX
to "" andNESTED_MODEL_TUPLE_FIELD_PREFIX
to "_" - Changed all queries (selects) to use lua scripts
- Changed
Model.deserialize_partially
to receive data either as a dict or as a flattened list of key-values
pydantic-redis v0.1.8
Added
- Added support for model fields that are tuples of nested models.
pydantic-redis v0.1.7
Fixed
- Fixed support for model properties that are Optional lists of nested models
- Fixed issue with field names being disfigured by
lstrip
when attempting to strip nested-mode-prefixes
pydantic-redis v0.1.6
Added
- Support for model properties that are lists of nested models.