What's Changed
Now `CustomField` respects function default value at `required=False` case
python
from typing_extensions import Annotated
from fast_depends import inject
from fast_depends.library import CustomField
inject
def func(
a: Annotated[int, CustomField(cast=False, required=False)] = 1
):
assert a == 1 `a` was `None` before
func()
* build(deps): bump dawidd6/action-download-artifact from 3.1.4 to 5 by dependabot in https://github.com/Lancetnik/FastDepends/pull/101
* fix: respect default with custom by Lancetnik in https://github.com/Lancetnik/FastDepends/pull/111
**Full Changelog**: https://github.com/Lancetnik/FastDepends/compare/2.4.4...2.4.5