Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make RedisModel compatible with Pydantic 2.x #626

Merged
merged 3 commits into from
Jul 10, 2024

Conversation

arareko
Copy link
Contributor

@arareko arareko commented Jun 1, 2024

This updates RedisModel to use model_config with the right parameters (e.g. from_attributes) instead of the Config class with deprecated attributes (e.g. orm_mode) when Pydantic 2.x is installed. It will most likely resolve the warning shown in #612, but not the main issue reported there.

UserWarning: Valid config keys have changed in V2: * 'orm_mode' has been renamed to 'from_attributes'

I found the above warning while running a FastAPI app in uvicorn within a Python 3.12 virtualenv and the following packages:

annotated-types==0.7.0
anyio==4.4.0
certifi==2024.2.2
cffi==1.16.0
click==8.1.7
cryptography==42.0.7
dnspython==2.6.1
email_validator==2.1.1
fastapi==0.111.0
fastapi-cli==0.0.4
h11==0.14.0
hiredis==2.3.2
httpcore==1.0.5
httptools==0.6.1
httpx==0.27.0
idna==3.7
Jinja2==3.1.4
markdown-it-py==3.0.0
MarkupSafe==2.1.5
mdurl==0.1.2
more-itertools==10.2.0
orjson==3.10.3
pycparser==2.22
pydantic==2.7.2
pydantic_core==2.18.3
Pygments==2.18.0
python-dotenv==1.0.1
python-multipart==0.0.9
python-ulid==1.1.0
PyYAML==6.0.1
redis==5.0.4
redis-om==0.3.1
rich==13.7.1
setuptools==69.5.1
shellingham==1.5.4
sniffio==1.3.1
starlette==0.37.2
typer==0.12.3
types-cffi==1.16.0.20240331
types-pyOpenSSL==24.1.0.20240425
types-redis==4.6.0.20240425
types-setuptools==70.0.0.20240524
typing_extensions==4.12.0
ujson==5.10.0
uvicorn==0.30.0
uvloop==0.19.0
watchfiles==0.22.0
websockets==12.0

This also fixes a few warnings/issues I encountered while testing my changes with make format/lint/test.

Copy link

@sloppycoder sloppycoder left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i have the exact same problem. this fix works for me 👍

@@ -32,7 +32,7 @@
from ulid import ULID

from .. import redis
from .._compat import BaseModel
from .._compat import PYDANTIC_V2, BaseModel, ConfigDict
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need to move this import statement, it will break if pydantic v2 isn't present since it's conditionally exporting it in _compat

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@slorello89 Updated. Please have a look again. Thanks!

@arareko arareko requested a review from slorello89 June 7, 2024 18:58
@arareko
Copy link
Contributor Author

arareko commented Jun 14, 2024

@slorello89 Can you have a look at this? Thanks!

@Souhib
Copy link

Souhib commented Jun 26, 2024

Looking forward for this pull request to be merged ! 👀
Thanks @arareko !
Would be really nice from you @slorello89 if you can merge it if you think everything is good from your side ! 🙏

@arareko
Copy link
Contributor Author

arareko commented Jul 8, 2024

@slorello89 Any chance you can have a look at this?

Copy link
Member

@slorello89 slorello89 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍

@slorello89
Copy link
Member

LGTM 👍 thanks for submitting @arareko

@slorello89 slorello89 merged commit b20e887 into redis:main Jul 10, 2024
12 checks passed
@arareko arareko deleted the fix-redismodel branch July 10, 2024 20:57
@XChikuX
Copy link

XChikuX commented Aug 2, 2024

Can we get a new version on pypi with these changes? @slorello89

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants