2
0
mirror of https://github.com/hibiken/asynq.git synced 2024-09-20 11:05:58 +08:00

[ci skip] Update changelog

This commit is contained in:
Ken Hibino 2020-01-16 20:54:36 -08:00
parent 0c2591ad7e
commit d1f516d8f1

View File

@ -13,10 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `Queues` option in `Config` to specify mutiple queues with priority level - `Queues` option in `Config` to specify mutiple queues with priority level
- `Client` can schedule a task with `asynq.Queue(name)` to specify which queue to use - `Client` can schedule a task with `asynq.Queue(name)` to specify which queue to use
- `StrictPriority` option in `Config` to specify whether the priority should be followed strictly - `StrictPriority` option in `Config` to specify whether the priority should be followed strictly
- `RedisConnOpt` to abstract away redis client implementation
- [CLI] `asynqmon rmq` command to remove queue - [CLI] `asynqmon rmq` command to remove queue
### Changed ### Changed
- `Client` and `Background` constructors take `RedisConnOpt` as their first argument.
- [CLI] `asynqmon stats` now shows the total of all enqueued tasks under "Enqueued" - [CLI] `asynqmon stats` now shows the total of all enqueued tasks under "Enqueued"
- [CLI] `asynqmon stats` now shows each queue's task count - [CLI] `asynqmon stats` now shows each queue's task count
- Task type is now immutable (i.e., Payload is read-only) - Task type is now immutable (i.e., Payload is read-only)