Skip to content

Commit 302fb8e

Browse files
committed
2.5.3
1 parent 5da909a commit 302fb8e

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,21 @@ Changelog
33

44
## master
55

6-
[View commits](https://github.com/coleifer/huey/compare/2.5.2...HEAD)
6+
[View commits](https://github.com/coleifer/huey/compare/2.5.3...HEAD)
7+
8+
## 2.5.3
9+
10+
This release adds the oft-requested `SIGNAL_ENQUEUED`. This signal, of
11+
necessity, runs **in the calling process** and not in the consumer, since tasks
12+
are enqueued by the application typically. The exception is tasks that are
13+
enqueued for retry by the consumer or tasks (including periodic tasks) enqueued
14+
by the scheduler.
15+
16+
* Add support for a new `SIGNAL_ENQUEUED`.
17+
* Use `FOR UPDATE SKIP LOCKED` when supported by the database in the `sql_huey`
18+
storage engine.
19+
20+
[View commits](https://github.com/coleifer/huey/compare/2.5.2...2.5.3)
721

822
## 2.5.2
923

huey/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = 'Charles Leifer'
22
__license__ = 'MIT'
3-
__version__ = '2.5.2'
3+
__version__ = '2.5.3'
44

55
from huey.api import BlackHoleHuey
66
from huey.api import Huey

0 commit comments

Comments
 (0)