Releases: marier-nico/event-processor
Releases · marier-nico/event-processor
v3.2.1
v3.2.0
Allow Dyn
filters to modify the event when they match.
v3.1.6
Fix type hints for dependency injection with Depends
, now mypy will consider the value of the Depends
to be the returned value of the user-supplied callable.
v3.1.5
- Add a
py.typed
file to tell mypy we have type annotations
v3.1.4
What's Changed
- feat: callable processors by @marier-nico in #76
v3.1.3
This release fixes a bug with invocation when an event matches several filters.
v3.1.2
This release fixes an incorrect import (import Callable
from typing
instead of collections
)
v3.1.1
This release only relaxes pydantic dependencies a bit to ease the python dependency hell for dependant projects.
v3.1.0
- v3.1.0: Add error handling strategies for processors.
v3.0.2
Fixed an error when getting the value at a path in a dict.
Using a filter like Exists("a.b.c")
with an event like {"a": None}
would cause a TypeError
. This is no longer the case.