-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
108 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] | ||
|
||
## [0.4.1] - 2022-12-20 | ||
|
||
### Added | ||
|
||
- Added the docs site at `https://sopherapps.github.io/pydantic-redis/` | ||
|
||
### Changed | ||
|
||
- Made the `shared` package protected | ||
|
||
### Fixed | ||
|
||
## [0.4.0] - 2022-12-17 | ||
|
||
### Added | ||
|
||
- Added pagination | ||
|
||
### Changed | ||
|
||
- Changed redis index to use sorted sets instead of ordinary sets | ||
|
||
### Fixed | ||
|
||
## [0.3.0] - 2022-12-15 | ||
|
||
### 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 | ||
|
||
### Fixed | ||
|
||
## [0.2.0] - 2022-12-15 | ||
|
||
### Added | ||
|
||
### 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 | ||
|
||
### Fixed | ||
|
||
## [0.1.8] - 2022-12-13 | ||
|
||
### Added | ||
|
||
- Add support for model fields that are tuples of nested models | ||
|
||
### Changed | ||
|
||
### Fixed | ||
|
||
## [0.1.7] - 2022-12-12 | ||
|
||
### Added | ||
|
||
### Changed | ||
|
||
### 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 | ||
|
||
## [0.1.6] - 2022-11-01 | ||
|
||
### Added | ||
|
||
- Support for model properties that are lists of nested models | ||
|
||
### Changed | ||
|
||
### Fixed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ | |
|
||
__all__ = [Store, RedisConfig, Model, asyncio] | ||
|
||
__version__ = "0.4.0" | ||
__version__ = "0.4.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters