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

🚀 Roadmap #654

Open
4 of 9 tasks
tiangolo opened this issue Oct 4, 2023 · 28 comments
Open
4 of 9 tasks

🚀 Roadmap #654

tiangolo opened this issue Oct 4, 2023 · 28 comments

Comments

@tiangolo
Copy link
Owner

tiangolo commented Oct 4, 2023

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:

All this is intermixed with reviews for PRs, issues, and discussions.

@tiangolo tiangolo pinned this issue Oct 4, 2023
@Zaffer
Copy link

Zaffer commented Oct 6, 2023

This is great news! So excited to start using these new features. I'm curious how you are planning in integrating Alembic?

@AntonDeMeester
Copy link
Contributor

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.

@honglei
Copy link

honglei commented Oct 8, 2023

@AntonDeMeester @tiangolo Only support SQLAlchemy v1.4 with 2.0-style and v2.0?

@hyperknot
Copy link

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?

@honglei
Copy link

honglei commented Oct 8, 2023

@hyperknot Try #632

@hyperknot
Copy link

hyperknot commented Oct 9, 2023

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.

@joshTax
Copy link

joshTax commented Oct 10, 2023

You can help me ensure each existing PR is in shape (has tests, solves the problem, etc.)

🫡

So glad to see signs of life in this amazing project.

@chamithdulshanadl
Copy link

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.

@Matthieu-LAURENT39
Copy link
Contributor

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!

@gmos
Copy link

gmos commented Oct 24, 2023 via email

@caerulescens
Copy link

Take a look at this.

@luoshuijs
Copy link

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.

@Leewinner1
Copy link

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.

@zoonman
Copy link

zoonman commented Nov 6, 2023

I am looking forward for SQLAlchemy v2 support. This should enable ClickHouse columnar storage.

@nikdavis
Copy link

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?

@dimaqq
Copy link

dimaqq commented Nov 14, 2023

I'm curious what are the tricky parts in SQLAlchemy and pydantic 2.0.0 versions...

@benjipott
Copy link

  • Support for SQLAlchemy 2.0.

@tjeaneric
Copy link

tjeaneric commented Nov 20, 2023

Now Ready for Pydantic 2.0 🚀

Update: Since SQLModel version 0.0.14, both Pydantic V1 and v2 are now supported 🚀🚀

@luoshuijs
Copy link

luoshuijs commented Nov 27, 2023

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.

Pydantic and SQLAlchemy have already dropped support for Python 3.7.

pydantic/pydantic@0564c0d
sqlalchemy/sqlalchemy@4da59c6

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

  • ⬆️ Drop Support for Python 3.7
  • ⬆️ Upgrade Python version in Docker images for GitHub Actions

@cay89
Copy link

cay89 commented Jan 26, 2024

@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?

@caerulescens
Copy link

caerulescens commented Jan 26, 2024

@cay89 This and the cookiecutter template are under development; from @tjeaneric, it looks like the sqlalchemy and pydantic support is done, but the alembic support hasn't been released yet.

You should be able to use sqlmodel==0.0.14 and manually generate migrations for your fastapi project: alembic init --template async alembic. You will need to manually edit the generated alembic.ini and alembic/env.py to use sqlmodel's metadata object. This was possible in 0.0.8 before the sqlalchemy relationship support broke around sqlalchemy==1.4.x. Things are still sort of in limbo for official design patterns when considering a backend stack consisting of fastapi, sqlalchemy, pydantic, and alembic. This integration has been tracking between the authors of these projects for more than a few years. The official design patterns for backend work are right around the corner.

@KelvinSan
Copy link

Are we going to get an update on the Async docs ?

@manish181192
Copy link

Hello team, Amazing work, What is the ETA on Async milestone? Can we bump it up before pydantic? @tiangolo

@caerulescens
Copy link

caerulescens commented Feb 4, 2024

@manish181192 I haven't seen an "ETA"; some of the remaining work is staged as PRs:


I haven't seen any work covering typer usage in sqlmodel.

@linpan
Copy link

linpan commented Feb 22, 2024

Integrated migrations (using Alembic).

@fabifont
Copy link

Hi @tiangolo, are #689 and #635 ready to be merged?

@AAraKKe
Copy link

AAraKKe commented Mar 18, 2024

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!

@linpan
Copy link

linpan commented Mar 25, 2024

Hi @tiangolo, are #689 and #635 ready to be merged?

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

No branches or pull requests