Skip to content

Releases: taskiq-python/taskiq

0.8.3

14 Jul 08:18

Choose a tag to compare

What's Changed

Full Changelog: 0.8.2...0.8.3

0.8.2

12 Jul 10:27

Choose a tag to compare

What's Changed

Full Changelog: 0.8.1...0.8.2

0.8.1

11 Jul 09:22

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.8.0...0.8.1

0.8.0

10 Jul 21:36

Choose a tag to compare

What's Changed

⭐ Pydantic V2 support is here! ⭐

New Contributors

Full Changelog: 0.7.2...0.8.0

0.7.2

17 Jun 16:32

Choose a tag to compare

What's Changed

Full Changelog: 0.7.1...0.7.2

0.7.1

11 Jun 13:53

Choose a tag to compare

What's Changed

  • Added context methods to reject and requeue. by @s3rius in #152
  • Added exception catches from dependencies. by @s3rius in #153
  • Updated dependencies and required python version. by @s3rius in #151

THIS RELEASE DROPS PYTHON3.7 SUPPORT DUE TO END OF LIFE.

Full Changelog: 0.6.0...0.7.1

0.6.0

27 May 13:30

Choose a tag to compare

What's Changed

Full Changelog: 0.5.0...0.6.0

0.5.0

21 May 22:14

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.4.3...0.5.0

0.4.3

09 May 14:53

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.4.2...0.4.3

0.4.2

06 May 15:54

Choose a tag to compare

What's Changed

Builder API update:
Now abstract broker doesn't require any parameters. Such as result_backend or id_generator. These parameters can now be supplied using new methods that can be chained. For example:

broker = (
    MyBroker()
    .with_id_generator(generator)
    .with_result_backend(my_result_backend)
    .with_middlewares(PrometheusMiddleware())
)

Full Changelog: 0.4.1...0.4.2