Skip to content

Releases: taskiq-python/taskiq-faststream

0.1.6

06 Jan 10:48

Choose a tag to compare

What's Changed

Update dependencies, add taskiq-faststream[redis] distribution, python 3.12 support

  • chore(deps): bump pypa/gh-action-pypi-publish from 1.8.10 to 1.8.11 by @dependabot in #14
  • chore(deps-dev): bump isort from 5.12.0 to 5.13.0 by @dependabot in #17
  • chore(deps): bump actions/setup-python from 4 to 5 by @dependabot in #15
  • chore(deps-dev): bump black from 23.11.0 to 23.12.0 by @dependabot in #23
  • chore(deps-dev): bump isort from 5.13.0 to 5.13.2 by @dependabot in #22
  • chore(deps-dev): bump ruff from 0.1.6 to 0.1.8 by @dependabot in #19
  • chore(deps-dev): bump pre-commit from 3.5.0 to 3.6.0 by @dependabot in #18

Full Changelog: 0.1.5...0.1.6

0.1.5

01 Dec 14:31
49e2f94

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.1.3...0.1.5

0.1.4

13 Nov 08:00
f2ea7d6

Choose a tag to compare

What's Changed

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

12 Nov 15:04

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.1.0...0.1.3