Taskiq-faststream

Latest version: v0.1.8

Safety actively analyzes 626904 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

0.1.8

What's Changed
* chore: add redis distribution, py3.12 support by Lancetnik in https://github.com/taskiq-python/taskiq-faststream/pull/28
* fix: FastStream 0.3.13 compat by Lancetnik in https://github.com/taskiq-python/taskiq-faststream/pull/31
* chore(deps): bump actions/cache from 3 to 4 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/32
* chore(deps-dev): bump ruff from 0.1.13 to 0.1.14 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/33
* chore(deps-dev): bump ruff from 0.1.14 to 0.2.0 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/35
* chore(deps-dev): bump ruff from 0.2.0 to 0.2.1 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/36
* chore(deps-dev): bump ruff from 0.2.1 to 0.2.2 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/37
* chore(deps-dev): update pytest requirement from <8,>=7.4.0 to >=7.4.0,<9 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/34
* chore(deps-dev): bump ruff from 0.2.2 to 0.3.0 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/38
* chore(deps): bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.12 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/39
* chore(deps-dev): bump ruff from 0.3.0 to 0.3.3 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/43
* chore(deps): bump pypa/gh-action-pypi-publish from 1.8.12 to 1.8.14 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/42
* chore(deps-dev): bump ruff from 0.3.3 to 0.3.5 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/45
* chore(deps-dev): update mypy requirement from <1.9.0,>=1.8.0 to >=1.8.0,<1.10.0 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/40
* fix: FastStream 0.5.0 compatibility by Lancetnik in https://github.com/taskiq-python/taskiq-faststream/pull/50


**Full Changelog**: https://github.com/taskiq-python/taskiq-faststream/compare/0.1.7...0.1.8

0.1.7

What's Changed

* fix 30: latest FastStream version compatibility
* chore(deps-dev): bump ruff from 0.1.11 to 0.1.13 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/29


**Full Changelog**: https://github.com/taskiq-python/taskiq-faststream/compare/0.1.6...0.1.7

0.1.6

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 https://github.com/taskiq-python/taskiq-faststream/pull/14
* chore(deps-dev): bump isort from 5.12.0 to 5.13.0 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/17
* chore(deps): bump actions/setup-python from 4 to 5 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/15
* chore(deps-dev): bump black from 23.11.0 to 23.12.0 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/23
* chore(deps-dev): bump isort from 5.13.0 to 5.13.2 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/22
* chore(deps-dev): bump ruff from 0.1.6 to 0.1.8 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/19
* chore(deps-dev): bump pre-commit from 3.5.0 to 3.6.0 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/18


**Full Changelog**: https://github.com/taskiq-python/taskiq-faststream/compare/0.1.5...0.1.6

0.1.5

What's Changed

* fix: docs example by vvanglro in https://github.com/taskiq-python/taskiq-faststream/pull/8
* feat: support yield message callback by Lancetnik in https://github.com/taskiq-python/taskiq-faststream/pull/9
* feat: add custom scheduler to support message callbacks by Lancetnik in https://github.com/taskiq-python/taskiq-faststream/pull/12
* chore(deps-dev): bump ruff from 0.1.5 to 0.1.6 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/10
* chore(deps-dev): bump mypy from 1.7.0 to 1.7.1 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/11

New Contributors
* vvanglro made their first contribution in https://github.com/taskiq-python/taskiq-faststream/pull/8

**Full Changelog**: https://github.com/taskiq-python/taskiq-faststream/compare/0.1.3...0.1.5

0.1.4

What's Changed
* fix: docs example by vvanglro in https://github.com/taskiq-python/taskiq-faststream/pull/8
* feat: support yield message callback by Lancetnik in https://github.com/taskiq-python/taskiq-faststream/pull/9

Now, you can send multiple messages per task call just using generator message callback

python
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
* vvanglro made their first contribution in https://github.com/taskiq-python/taskiq-faststream/pull/8

**Full Changelog**: https://github.com/taskiq-python/taskiq-faststream/compare/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 https://github.com/taskiq-python/taskiq-faststream/pull/2
* Bump mypy from 1.6.1 to 1.7.0 by dependabot in https://github.com/taskiq-python/taskiq-faststream/pull/1
* RELEASE by Lancetnik in https://github.com/taskiq-python/taskiq-faststream/pull/3
* test: fix compatibility by Lancetnik in https://github.com/taskiq-python/taskiq-faststream/pull/6
* refactor: sleep with listen by Lancetnik in https://github.com/taskiq-python/taskiq-faststream/pull/7

New Contributors
* dependabot made their first contribution in https://github.com/taskiq-python/taskiq-faststream/pull/2
* Lancetnik made their first contribution in https://github.com/taskiq-python/taskiq-faststream/pull/3

**Full Changelog**: https://github.com/taskiq-python/taskiq-faststream/compare/0.1.0...0.1.3

Links

Releases

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.