What's Changed
* feat: ModelService Dependency Injection Support by eadwinCode in https://github.com/eadwinCode/django-ninja-extra/pull/222
* Bump pypa/gh-action-pypi-publish from 1.12.2 to 1.12.3 by dependabot in https://github.com/eadwinCode/django-ninja-extra/pull/218
* Bump mypy from 1.13.0 to 1.14.1 by dependabot in https://github.com/eadwinCode/django-ninja-extra/pull/220
* fix: DI documentation update by eadwinCode in https://github.com/eadwinCode/django-ninja-extra/pull/224
* fix: MyPy 1.14.1 support by eadwinCode in https://github.com/eadwinCode/django-ninja-extra/pull/225
* fix: Readme And Query Testing by eadwinCode in https://github.com/eadwinCode/django-ninja-extra/pull/228
* fix: RouteContext Refactor by eadwinCode in https://github.com/eadwinCode/django-ninja-extra/pull/229
* fix: Permission Documentation update Refactor by eadwinCode in https://github.com/eadwinCode/django-ninja-extra/pull/229/commits/6d394e4112ed256c7c72c4a18dc1e51a67c31889
DEPRECATION NOTICE
The `service` attribute in `ModelController` has been changed from a class object to an **instance** object. When creating a custom `ModelService` for a `ModelController`, you have to specify it as `service_type`.
This is because services are now injected as dependencies during controller instantiation. Service instantiation is delegated to the injector package, so ensure that any additional dependencies required by your `ModelService` are properly registered in the dependency injection container.
For more details, please refer to the [documentation](https://eadwincode.github.io/django-ninja-extra/api_controller/model_controller/03_model_service/#advanced-service-patterns)
**Full Changelog**: https://github.com/eadwinCode/django-ninja-extra/compare/0.22.0...0.22.2