-
Notifications
You must be signed in to change notification settings - Fork 5
/
CHANGES
114 lines (68 loc) · 2.04 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
Release Notes
=============
Semantic versioning is followed.
Version 0.7.1
-------------
Released 2019-03-25
* Compatibility fix for kombu > 4.3.0
Version 0.7.0
-------------
Released 2018-11-23
* Support for Nameko 2.11.0 and above (fixes #23)
Version 0.6.0
-------------
Released 2018-06-05
* Backoff messages are published with mandatory delivery to ensure
they are delivered. Protects against races between declaration
of the backoff queue and publishing, in case they happen on
different nodes in a RabbitMQ cluster.
Version 0.5.0
-------------
Released 2017-11-01
* Add Backoff exception to the entrypoints' `expected_exceptions` configuration. Requires Nameko >= 2.7.0.
Version 0.4.2
-------------
Released 2017-07-21
* Uses publish-confirms when republishing to backoff queues.
Version 0.4.1
-------------
Released 2017-07-18
* Change queue name to differentiate expiring queues from any existing queues.
Version 0.4.0
-------------
Released 2017-06-30
* Apply 'x-expires' policy to backoff queues so they're automatically removed
after use.
Version 0.3.4
-------------
Released 2017-06-01
* Include next-retry info in the Backoff error description.
* Prevent negative values being used as expiration times.
Version 0.3.3
-------------
Released 2017-04-06
* Ensure exchange and queue declaration has retry-policy when re-publishing
Version 0.3.2
-------------
Released 2017-03-31
* Include retry_policy when re-publishing
Version 0.3.1
-------------
Released 2017-02-03
* Fix to allow disabling of `random_sigma` by setting it to 0
Version 0.3.0
-------------
Released 2017-02-03
* Allow to override `random_sigma` and `random_groups_per_sigma` when using
`entrypoint_retry` decorator.
Version 0.2.0
-------------
Released 2017-01-24
* Fixes bug where deadletter counts were not summed correctly across
multiple queues.
* Reduces the number of queues created when randomness is applied.
* Adds `entrypoint_retry` decorator to retry on specific errors.
Version 0.1.0
-------------
Released 2017-01-19
* Initial public release