Releases: taskiq-python/taskiq-faststream
Releases · taskiq-python/taskiq-faststream
0.1.4
What's Changed
- fix: docs example by @vvanglro in #8
- feat: support yield message callback by @Lancetnik in #9
Now, you can send multiple messages per task call just using generator message callback
async def collect_information_to_send():
"""Sends 10 messages per task call."""
for i in range(10):
yield i
taskiq_broker.task(
message=collect_information_to_send,
...,
)
New Contributors
Full Changelog: 0.1.3...0.1.4
0.1.3
What's Changed
- Bump ruff from 0.1.4 to 0.1.5 by @dependabot in #2
- Bump mypy from 1.6.1 to 1.7.0 by @dependabot in #1
- RELEASE by @Lancetnik in #3
- test: fix compatibility by @Lancetnik in #6
- refactor: sleep with listen by @Lancetnik in #7
New Contributors
- @dependabot made their first contribution in #2
- @Lancetnik made their first contribution in #3
Full Changelog: 0.1.0...0.1.3