Skip to content

Commit 489e219

Browse files
release: v0.25.1
1 parent 043dcfb commit 489e219

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

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+
1029
## [0.25.0] - 2024-10-29
1130

1231
### Upgrades

internal/base/base.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
)
2424

2525
// Version of asynq library and CLI.
26-
const Version = "0.25.0"
26+
const Version = "0.25.1"
2727

2828
// DefaultQueueName is the queue name used if none are specified by user.
2929
const DefaultQueueName = "default"

0 commit comments

Comments
 (0)