forked from SweetProcess/django-pg-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
88 lines (51 loc) · 1.54 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
0.8.1 (2021-07-19)
==================
- Fixes worker crash on exception in task transaction on_commit thanks @gavinwahl
0.8.0 (2021-06-18)
==================
- Django 3.2 compat thanks @danifus
0.6.1 (2020-04-30)
==================
- Abstract job model
- bulk_enqueue thanks @danifus
- mypy fixes
0.5.2 (2020-02-28)
==================
- new migrations and tables.
0.5.1 (2020-02-28)
==================
- rename to pgq to avoid clashing namespace.
0.5.0 (2020-02-28)
==================
- fork and rename to django-pg-queue
- queues separated by queue name
- fixes bug where a queue attempts to work on a job that isn't its own.
- black formatting; mypy types; code cleanup
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