Skip to content

Releases: marier-nico/event-processor

v3.2.1

19 Jul 03:33
83b60a8
Compare
Choose a tag to compare

Relax pydantic version constraint to allow pydantic v2

v3.2.0

13 Dec 18:29
5cec194
Compare
Choose a tag to compare

Allow Dyn filters to modify the event when they match.

v3.1.6

12 Oct 20:39
6e3f5c3
Compare
Choose a tag to compare

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

07 Oct 20:19
b60f788
Compare
Choose a tag to compare
  • Add a py.typed file to tell mypy we have type annotations

v3.1.4

11 Jun 17:46
65115f4
Compare
Choose a tag to compare

What's Changed

v3.1.3

27 May 19:30
3c04bbe
Compare
Choose a tag to compare

This release fixes a bug with invocation when an event matches several filters.

v3.1.2

29 Apr 00:28
ad01b5a
Compare
Choose a tag to compare

This release fixes an incorrect import (import Callable from typing instead of collections)

v3.1.1

01 Mar 01:43
fdd9dbe
Compare
Choose a tag to compare

This release only relaxes pydantic dependencies a bit to ease the python dependency hell for dependant projects.

v3.1.0

26 Jul 02:11
1b040ee
Compare
Choose a tag to compare
  • v3.1.0: Add error handling strategies for processors.

v3.0.2

19 Jul 21:56
83a522b
Compare
Choose a tag to compare

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.