Releases: kpn/kstreams
Releases · kpn/kstreams
0.17.0
0.16.2
0.16.1
0.16.0
0.16.0 (2024-01-11)
BREAKING CHANGE
- AsyncGenerator: Stream as async generators (yield from stream) are only available with the new typing approach (#157)
Yield from Stream migration
- Remove the
async for in
loop inside thestream
function. For more details follow the documentation
[master 1938558] bump: version 0.15.2 → 0.16.0
2 files changed, 8 insertions(+), 2 deletions(-)
0.15.2
0.15.1
0.15.0
0.14.0
0.13.1
0.13.0
0.13.0 (2023-12-06)
Feat
- first steps to add dependency injection. Inspect
udf coroutines
in order to inject differentargs
on it (#141) - To iterate a stream is with the
async for _ in
loop, now it is possible to remove the loop and every time that a new event is in the stream thecoroutine
function defined by the end user will be awaited. If the stream is also needed, for example because manual commit is enabled then you can also add the stream as an argument in thecoroutine
. More info here
[master ee1756c] bump: version 0.12.6 → 0.13.0
2 files changed, 8 insertions(+), 2 deletions(-)