Releases: matyasrichter/fastapi-injector
Releases · matyasrichter/fastapi-injector
v0.4.0
- Added CI for Python 3.11
New contribution by @zenndos / @danielknell:
- The dependency created by
Injected
is now async. The original sync implementation would run on a separate thread, wasting resources and causing issues with dependencies that need the event loop. - Added a
SyncInjected
dependency factory that preserves the original behaviour (note that blocking IO in providers is still discouraged).
v0.3.0
This release adds the RequestScope. See the README for more details.
v0.2.1
- Add missing README to package metadata
v0.2.0
- Add
py.typed
marker - Drop support for python3.6
- Switch from setup.py and requirements.txt to poetry/pyproject.toml
v0.1.2
- Added
get_injector_instance
to__all__
v0.1.1
v0.1.0
Initial release