v0.5.0 - Pagination
🎉 Highlights
With the release of v0.5.0 all CRUDRouters now supports pagination. All "get all" routes now accept skip
and limit
query parameters allowing you to easily paginate your routes. By default, no limit is set on the number of items returned by your routes. Should you wish to limit the number of items that a client can request, it can be done as shown below.
CRUDRouter(
schema=MyPydanticModel,
paginate=25
)
Check out the docs on pagination for more information!
✨ Features
- Pagination Support #34
- Ability to set custom update schemas @andreipopovici #31 #27
- Better documentation of past releases #36
🐛 Bug Fixes
- Prefixing not available for versions of fastapi below v0.62.0 #29 #30
- Fixed an Import Issue SQLAlchemy and Integrity Errors @andreipopovici #33