-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCHANGES
71 lines (40 loc) · 1.32 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
1.0.1 (unreleased)
==================
- Nothing changed yet.
1.0.0 (2021-07-16)
==================
- Changed signature of Queue.run_job. It now returns None or a 3-tuple of
(job, retval, None) or (job, None, exception).
- Fix crash when a job raises an exception in a transaction.on_commit function.
- Remove payload from NOTIFY notifications. It was not actually used.
0.4.4 (2021-04-19)
==================
- Fix db exception handling in @retry
0.4.3 (2019-06-12)
==================
- Fix failed task processing to allow progress on other tasks when there is a
task consistently failing.
0.4.2 (2019-05-17)
==================
- Add a postgres application_name to the worker.
0.4.1 (2019-05-16)
==================
- Handle exceptions raised outside of job execution
- Don't allow listening without a notify channel
0.4.0 (2019-04-19)
==================
- Add dpq_scheduler, a replacement for celery beat.
- Allow priorities to be negative.
0.3.0 (2019-03-19)
==================
- Implement warm shutdown on TERM and INT signals.
- Rename management module to dpq.commands.
0.2.1 (2017-09-11)
==================
- Fix packaging to include migrations.
0.2.0 (2017-09-11)
==================
- Don't force subclassing to create a queue, you can just instantiate one.
0.1.0 (2017-09-10)
==================
- First release