New Features
* Add container `.create` / `.acreate` methods in https://github.com/antonrh/anydi/pull/139
python
dataclass
class Service:
name: str
container = Container()
service = container.create(Service, name="test")
Breaking Changes
* Positional-only provider arguments are no longer allowed
python
container.provider(scope="singleton")
def service(repo: Repo, /, client: Client) -> Service:
...
NB! This will raise an error when trying to register it.
**Full Changelog**: https://github.com/antonrh/anydi/compare/0.34.1...0.35.0