joaoflaviosantos / fastapi-async-sqlmodel-boilerplate

A fully asynchronous FastAPI boilerplate. Built for extensibility and speed, it incorporates FastAPI, SQLModel, Alembic, PostgreSQL, Redis, and ARQ. 🚀
MIT License
19 stars 1 forks source link

CRUDBase class issues #3

Open igorbenav opened 6 months ago

igorbenav commented 6 months ago

Your current CRUDBase version might have a few inconsistencies I eventually fixed in FastCRUD, plus a few other bugs before that.

You should probably take a look at the FastCRUD changelog and the bug fixes before FastAPI-boilerplate 0.11.0. You could, of course, also look the actual FastCRUD class source code to find the changes or just use FastCRUD.

igorbenav commented 6 months ago

Plus, if you need anything, you may contact me. Keep rocking!

joaoflaviosantos commented 6 months ago

Your current CRUDBase version might have a few inconsistencies I eventually fixed in FastCRUD, plus a few other bugs before that.

You should probably take a look at the FastCRUD changelog and the bug fixes before FastAPI-boilerplate 0.11.0. You could, of course, also look the actual FastCRUD class source code to find the changes or just use FastCRUD.

Thank you very much for your feedback, @igorbenav ! I had already been considering the use of FastCRUD; I've been following its development, and it's really impressive.

I'm using this boilerplate in production to accumulate some experiences and insights. As soon as possible, I'll make the adjustment/correction you mentioned and some other improvements.