File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [Unreleased]
9
9
10
+ ## [0.25.1] - 2024-12-11
11
+
12
+ ### Upgrades
13
+
14
+ * Some packages
15
+
16
+ ### Added
17
+
18
+ * Add `HeartbeatInterval` option to the scheduler (PR: https://github.com/hibiken/asynq/pull/956)
19
+ * Add `RedisUniversalClient` support to periodic task manager (PR: https://github.com/hibiken/asynq/pull/958)
20
+ * Add `--insecure` flag to CLI dash command (PR: https://github.com/hibiken/asynq/pull/980)
21
+ * Add logging for registration errors (PR: https://github.com/hibiken/asynq/pull/657)
22
+
23
+ ### Fixes
24
+ - Perf: Use string concat inplace of fmt.Sprintf in hotpath (PR: https://github.com/hibiken/asynq/pull/962)
25
+ - Perf: Init map with size (PR: https://github.com/hibiken/asynq/pull/673)
26
+ - Fix: `Scheduler` and `PeriodicTaskManager` graceful shutdown (PR: https://github.com/hibiken/asynq/pull/977)
27
+ - Fix: `Server` graceful shutdown on UNIX systems (PR: https://github.com/hibiken/asynq/pull/982)
28
+
10
29
## [0.25.0] - 2024-10-29
11
30
12
31
### Upgrades
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
23
23
)
24
24
25
25
// Version of asynq library and CLI.
26
- const Version = "0.25.0 "
26
+ const Version = "0.25.1 "
27
27
28
28
// DefaultQueueName is the queue name used if none are specified by user.
29
29
const DefaultQueueName = "default"
You can’t perform that action at this time.
0 commit comments