-
-
Notifications
You must be signed in to change notification settings - Fork 660
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
🚀 Roadmap #654
Comments
This is great news! So excited to start using these new features. I'm curious how you are planning in integrating Alembic? |
Is the goal to support both Pydantic v1 and v2 and SQL Alchemy v1 and v2? Or only v1+v1 and v2+v2? The combination of both will become difficult. |
@AntonDeMeester @tiangolo Only support SQLAlchemy v1.4 with 2.0-style and v2.0? |
Is there a branch of this project or a starter template for using FastAPI latest + SQLAlchemy 2 + Pydantic 2? I'm starting a new project with FastAPI latest + SQLAlchemy 2 and I'm not sure what would be the right way to set it up? Should I just avoid SQLModel altogether? |
@hyperknot Try #632 |
Thanks @honglei. I've also found
I'll personally not use SQLModel. It introduces way too much logic for a simple type checking functionality for me. Duplicating a small amount of code in the codebase is much more maintainable than introducing an external dependency with a lot of logic involved. |
🫡 So glad to see signs of life in this amazing project. |
We are using fast API with SQL Model for our microservices. And planning to add Llama index which needs SQLAlchemy above 1.4.41. But does not support by current SQL Model versions (required: >=1.4.17,<=1.4.41). @tiangolo Need your kind help. |
Are the items on the roadmaps features you plan to implement yourself, or are they open for PRs? In any case, this is really exciting! I can't wait to be able to use a Pydantic v2 + SQLModel (with all the great SQLAlchemy 2 features) + FastAPI stack! |
Fully agree. Have other stuff already upgraded to pydantic 2.x.x and SqlAlchemy 2.x.x and cannot introduce SQLModel to the mix.
From: Matthieu LAURENT ***@***.***>
Sent: Tuesday, 24 October 2023 15:21
To: tiangolo/sqlmodel ***@***.***>
Cc: Subscribed ***@***.***>
Subject: Re: [tiangolo/sqlmodel] 🚀 Roadmap (Issue #654)
Are the items on the roadmaps features you plan to implement yourself, or are they open for PRs?
In any case, this is really exciting! I can't wait to be able to use a Pydantic v2 + SQLModel (with all the great SQLAlchemy 2 features) + FastAPI stack!
—
Reply to this email directly, view it on GitHub<#654 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AALUWECMEPO3K523RRZFZ3DYA66DLAVCNFSM6AAAAAA5TK2VBOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONZXGE4TEOJRGE>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.******@***.***>>
|
Take a look at this. |
Since the dev dependency, FastAPI, no longer supports Python 3.7 from version 0.104.0 onwards, will SQLModel also need to drop support for Python 3.7 in the future? If so, it would likely be a massive undertaking. It should be included in the roadmap together. |
When dealing with relational models,sqlalchemy only needs to define relationships on one side,sqlmodel needs to define relationships on both sides, and the complexity of the model class is very difficult to deal with. The screen full of relationships makes my brain a little hot, especially the many-to-many relationships, even if the model class is written according to the documentation, it becomes extremely complex. |
I am looking forward for SQLAlchemy v2 support. This should enable ClickHouse columnar storage. |
Sorry if this is adding noise – just noticing the next items in the roadmap are somewhat achieved in #632 (open since August). Any chance we could understand the project's thinking wrt when something like that might be merged or reworked? |
I'm curious what are the tricky parts in SQLAlchemy and pydantic 2.0.0 versions... |
|
Now Ready for Pydantic 2.0 🚀 Update: Since SQLModel version 0.0.14, both Pydantic V1 and v2 are now supported 🚀🚀 |
Pydantic and SQLAlchemy have already dropped support for Python 3.7. pydantic/pydantic@0564c0d Additionally, Python 3.7 reached its End of Life (EOL) a few months ago, so it's time to say goodbye. https://devguide.python.org/versions/ Some things that may need to be done
|
@tiangolo Could you please provide any updates on this? I've begun a new FastAPI project, and I'm uncertain whether I should build upon the SQLModel project or stay with SQLAlchemy. What are your long term plans with this project? |
@cay89 This and the You should be able to use |
Are we going to get an update on the Async docs ? |
Hello team, Amazing work, What is the ETA on Async milestone? Can we bump it up before pydantic? @tiangolo |
@manish181192 I haven't seen an "ETA"; some of the remaining work is staged as PRs:
I haven't seen any work covering |
Integrated migrations (using Alembic). |
Hi! I just came across #63 and I was surprised this would not work out of the box, is this kind of behaviour considered at any stage on the roadmap? Kind of related is #468 , I have it almost sorted out setting the engine with json serializer and deserializer but now I just noticed that if I change a field in the model the update woin't go through when committing. Thanks! |
@tiangolo Any update for the roadmap? |
Hey @tiangolo! Thanks again for your awesome work :). Do you have any ideas on when you could have something done for
? I guess I am not alone waiting for this marvelous feature :). All the best!! |
it's already working |
Is it possible to merge https://github.com/miguelgrinberg/alchemical project into current one? |
Is it documented somewhere? I tried to integrate alembic into sqlmodel. I had to tweak the setup.py in unholy ways, was not a smooth and pleasant experience. I guess @tiangolo had in mind to do this very doc and smoothing? :) |
@tepelbaum I know it's two months later, but I wound up having to work on a minimal implementation of sqlmodel and alembic, so I published it to github. I'd actually be interested to keep maintaining this example or something like it, if it's helpful. |
Description
This is a tentative roadmap, I will update it as things evolve. Some things might be discarded, others might be added later. I didn't want to make it fully public as it could raise expectations, but it seems it would be more beneficial for the community to know all the ideas and objectives.
Work on this is alternated (and sometimes mixed) with work on Typer, SQLModel, Asyncer, and others.
Answering questions, issues, and PRs is also intermixed with this, but as in some cases one of these features would solve several issues or questions, or potentially solve something done by one or more PRs, in many cases I focus on this a bit more than on answering specific issues, questions, PRs.
Maintenance
The word "maintenance" or "maintainer" doesn't have a very strict definition, and it probably varies a lot from perspective.
A lot of the work related to maintaining FastAPI is done by contributors by answering questions, reviewing PRs, etc.
You can help me ensure each existing PR is in shape (has tests, solves the problem, etc.). Make sure you filter out the translation PRs (most of them) unless you speak the language and can review them.
Security
When there are security issues, those are handled with the highest priority. Those are normally not handled in issues and PRs but in emails, it's not public until the security disclosure is made, in most cases (always, up to now) with the version that fixes them.
Roadmap
Now, here's the current high-level tentative roadmap:
Field
parameters from Pydantic1.9.0
and above, make Pydantic1.9.0
the minimum required version #440All this is intermixed with reviews for PRs, issues, and discussions.
The text was updated successfully, but these errors were encountered: