Skip to content

v0.8.0 - Gino Backend

Compare
Choose a tag to compare
@awtkns awtkns released this 07 Jul 04:49
· 152 commits to master since this release
1711d00

🎉 Highlights

With the release of v0.6.0 fastapi-crudrouter now supports Gino as an async backend! When generating routes, GinoCRUDRouter will automatically tie into your database using your Gino models. To use it, simply pass your Gino database model, a database reference, and your pydantic.

GinoCRUDRouter(
    schema=MyPydanticModel,
    db_model=MyModel, 
    db=db
)

Check out the docs for more details on how to use the GinoCRUDRouter.

✨ Features

🐛 Bug Fixes

  • All Path Prefixes are now correctly lowercase #64 #65