Skip to content

Releases: sopherapps/pydantic-redis

pydantic-redis v0.5.0

10 Feb 11:07
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.4.3...v0.5.0

pydantic-redis v0.4.3

29 Dec 19:25
Compare
Choose a tag to compare

Added

  • Added mkdocs documentation

Changed

  • Exposed RedisConfig via pydantic_redis.config, especially for documentation.

Fixed

  • Fixed docs building in CI

pydantic-redis v0.4.2

29 Dec 19:07
Compare
Choose a tag to compare

Fixed

  • Fixed unexpected data error when selecting some columns for some records

pydantic-redis v0.4.1

29 Dec 19:06
Compare
Choose a tag to compare

Nothing. Same as 0.4.0.

pydantic-redis v0.4.0

29 Dec 19:05
Compare
Choose a tag to compare

Added

  • Added pagination

Changed

  • Changed redis index to use sorted sets instead of ordinary sets

pydantic-redis v0.3.0

29 Dec 19:03
Compare
Choose a tag to compare

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

29 Dec 19:02
Compare
Choose a tag to compare

Changed

  • Changed the NESTED_MODEL_LIST_FIELD_PREFIX to "" and NESTED_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

29 Dec 19:01
Compare
Choose a tag to compare

Added

  • Added support for model fields that are tuples of nested models.

pydantic-redis v0.1.7

29 Dec 19:00
Compare
Choose a tag to compare

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

29 Dec 18:59
Compare
Choose a tag to compare

Added

  • Support for model properties that are lists of nested models.