resque 2.0.0 → 2.2.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of resque might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 845d352e5d2e155c7a3c0c94b825abe83cc0daa617e70ac85fb6f2ec0fbad452
4
- data.tar.gz: 887666edf6aaa2b4bbc372001ece5b1fb354801be30786160ee0cde6b16828c0
3
+ metadata.gz: 42bdd72240bcf206aa094dc525eca1747b51f4456ed28ae562ceccb10c4f313f
4
+ data.tar.gz: 44297a31bb61f835b6acbba5195f77826b1d476611169f47ebfa07fbae7df1f3
5
5
  SHA512:
6
- metadata.gz: e99e247f115ce75ad125e7f4aa0bf1587e67426c424e3767ab856c4a03c9868ebb922a958aaff689f316beb9b2b07ca0d1818b592a300d6a2358af3b1312932a
7
- data.tar.gz: '081fe527bb158cee4c9e8c31d552904b20e1fa39984466a2f7d1851facdbb2f0eb1f3ec865ae6d9cafee79278a392316822d0cdc4aff7a5c3076f96f8907d26a'
6
+ metadata.gz: 76d9e121e971b063d1ca1b6207c9a867cc3c97731197167fc2e4dacf8ff76d92857a5bf3a7d61f22f4d6a8eb2c216c519b5ba4ce7e0fbf728c386e0e96f073a3
7
+ data.tar.gz: b36861b666b72c962b12c35fb8214931a49e422886b03e29ee718dad831114a4ff475a36153997787c01c6d451ca202d34c1d8b563b9a657f5a2447e5e24b2b3
data/HISTORY.md CHANGED
@@ -1,3 +1,60 @@
1
+ ## Unreleased
2
+
3
+ ### Fixed
4
+
5
+ ### Added
6
+
7
+ ## 2.2.1
8
+
9
+ ### Fixed
10
+
11
+ * Escape HTML from the params to avoid XSS (#1790)
12
+ * Remove vegas as a dependency (#1780)
13
+
14
+ ### Added
15
+
16
+ * Add support for specifying queues that workers should ignore when using globs
17
+ * Allow plugins to have spaces in their name (#1718)
18
+
19
+ ## 2.2.0
20
+
21
+ ### Added
22
+
23
+ * Add 'Retry Failed Jobs' button to Failed page
24
+
25
+ ### Fixed
26
+
27
+ * Loading railtie when it did not exist #1765
28
+ * Fix closing parent Redis connection in child process after fork
29
+ * Fix the failed queues list on /queues UI when the RedisMultiQueue backend is used #1638
30
+
31
+ ## 2.1.0
32
+
33
+ ### Security
34
+
35
+ * Fix XSS via URL path in admin web UI queues view #1687
36
+ * Replace onclick handlers in server code to support Content Security Policies that don't allow 'unsafe-inline'
37
+ * Update jQuery from 1.12.4 to 3.6.0
38
+
39
+ ### Added
40
+
41
+ * Add requeue_queue method to Resque::Failure::Multiple #1659
42
+ * Confirmation prompt in admin front-end before submitting the retry of all failed jobs. #1753
43
+ * Railtie for default rake task setup when in Rails. #1715
44
+ * Added two new hooks.
45
+ - `queue_empty` when the job queue empties and the worker becomes idle
46
+ - `worker_exit` when the worker exits
47
+
48
+ See [docs/HOOKS.md](http://github.com/resque/resque/blob/master/docs/HOOKS.md) for
49
+ further details. (@jeremywadsack)
50
+
51
+ ### Fixed
52
+
53
+ * live poller shouldn't restart itself until it successds or fails. #1740
54
+ * Fix parsing worker_id when queue name includes colon. #1691
55
+ * Prune workers which haven't been registered but have set a heartbeat. #1751
56
+ * `Resque::Failure::Multiple.remove` did not pass on the queue parameter
57
+
1
58
  ## 2.0.0 (2018-11-06)
2
59
 
3
60
  ### Fixed