sidekiq 6.0.7 → 6.1.1

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

Potentially problematic release.


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

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3dd5d7a0dd8a7d877484df4ae3b9988f15e9cc4bc0bb4da23224be0049fa733e
4
- data.tar.gz: e2b7ddb4c045817837e996356851648bf32108b37fa1abcfb72795a185b4a238
3
+ metadata.gz: 3e65c309b08d7da496e7181ff91980d43d8cf56e226fcd921c00e392dbecc22f
4
+ data.tar.gz: 45ff998fd67a0ca37c99176bc1a92c4160569106ff406d75c37e2a5968501d25
5
5
  SHA512:
6
- metadata.gz: 5ce3f911b835b38ce212309bcdf81b4789e24a12898a0f2071b9adb9cbcdfa23a33bb7216c2f7c6dcab26d484f79a1271594d3218f63ed041f0027deab5a26f3
7
- data.tar.gz: 685a6890a43c990b2fd9709c49f9c82c96a487cdcf6fc0607ab15b9dbb47d52c9f797ec5094d3f92ec35c5737e661f966a6b81006ee4b7d99a7f31285180b3db
6
+ metadata.gz: fd592b7657c04d8ff7363157a965233a0e6a74889d7ae44a9bf398143ab7847776dbb52cd5e1328125afabe25be79f6c72ae9f03283672e49ae3868bc99037ec
7
+ data.tar.gz: 10b3e967c94933d8a8b269499a71d9690759504398855edde5197ef6f6648d26fa201e131d9c7650c64b6baa2b5306cd40fe618c50e122d11247d8cd2e7a8bbb
@@ -3,7 +3,7 @@ references:
3
3
  unit: &unit
4
4
  run:
5
5
  name: Run test suite
6
- command: bundle exec rake
6
+ command: bundle exec rake COVERAGE=1
7
7
  restore: &restore
8
8
  restore_cache:
9
9
  keys:
@@ -34,7 +34,17 @@ jobs:
34
34
  "ruby-2.6":
35
35
  docker:
36
36
  - image: circleci/ruby:2.6
37
- - image: circleci/redis:4.0
37
+ - image: circleci/redis:5.0
38
+ steps:
39
+ - checkout
40
+ - <<: *restore
41
+ - <<: *bundle
42
+ - <<: *save
43
+ - <<: *unit
44
+ "ruby-2.7":
45
+ docker:
46
+ - image: circleci/ruby:2.7
47
+ - image: circleci/redis:6.0
38
48
  steps:
39
49
  - checkout
40
50
  - <<: *restore
@@ -58,3 +68,4 @@ workflows:
58
68
  jobs:
59
69
  - "ruby-2.5"
60
70
  - "ruby-2.6"
71
+ - "ruby-2.7"
data/Changes.md CHANGED
@@ -2,6 +2,24 @@
2
2
 
3
3
  [Sidekiq Changes](https://github.com/mperham/sidekiq/blob/master/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md)
4
4
 
5
+ HEAD
6
+ ---------
7
+
8
+ - Jobs are now sorted by age in the Busy Workers table. [#4641]
9
+ - Fix "check all" JS logic in Web UI [#4619]
10
+
11
+ 6.1.0
12
+ ---------
13
+
14
+ - Web UI - Dark Mode fixes [#4543, natematykiewicz]
15
+ - Ensure `Rack::ContentLength` is loaded as middleware for correct Web UI responses [#4541]
16
+ - Avoid exception dumping SSL store in Redis connection logging [#4532]
17
+ - Better error messages in Sidekiq::Client [#4549]
18
+ - Remove rack-protection, reimplement CSRF protection [#4588]
19
+ - Require redis-rb 4.2 [#4591]
20
+ - Update to jquery 1.12.4 [#4593]
21
+ - Refactor internal fetch logic and API [#4602]
22
+
5
23
  6.0.7
6
24
  ---------
7
25
 
@@ -160,6 +178,12 @@ See the [Logging wiki page](https://github.com/mperham/sidekiq/wiki/Logging) for
160
178
  - Integrate the StandardRB code formatter to ensure consistent code
161
179
  styling. [#4114, gearnode]
162
180
 
181
+ 5.2.9
182
+ ---------
183
+
184
+ - Release Rack lock due to a cascade of CVEs. [#4566]
185
+ Pro-tip: don't lock Rack.
186
+
163
187
  5.2.8
164
188
  ---------
165
189
 
@@ -2,7 +2,26 @@
2
2
 
3
3
  [Sidekiq Changes](https://github.com/mperham/sidekiq/blob/master/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md)
4
4
 
5
- Please see [http://sidekiq.org/](http://sidekiq.org/) for more details and how to buy.
5
+ Please see [sidekiq.org](https://sidekiq.org) for more details and how to buy.
6
+
7
+ 2.1.1
8
+ -------------
9
+
10
+ - Add optional **app preload** in swarm, saves even more memory [#4646]
11
+ - Fix incorrect queue tags in historical metrics [#4377]
12
+
13
+ 2.1.0
14
+ -------------
15
+
16
+ - Move historical metrics to use tags rather than interpolating name [#4377]
17
+ ```
18
+ sidekiq.enqueued.#{name} -> sidekiq.queue.size with tag queue:#{name}
19
+ sidekiq.latency.#{name} -> sidekiq.queue.latency with tag queue:#{name}
20
+ ```
21
+ - Remove `concurrent-ruby` gem dependency [#4586]
22
+ - Add systemd `Type=notify` support for swarm [#4511]
23
+ - Length swarm's boot timeout to 60 sec [#4544]
24
+ - Add NL locale
6
25
 
7
26
  2.0.1
8
27
  -------------
data/Gemfile CHANGED
@@ -11,10 +11,10 @@ gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
11
11
  group :test do
12
12
  gem "minitest"
13
13
  gem "simplecov"
14
+ gem "codecov", require: false
14
15
  end
15
16
 
16
17
  group :development, :test do
17
- gem "pry-byebug", platforms: :mri
18
18
  gem "standard"
19
19
  end
20
20
 
@@ -1,81 +1,82 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sidekiq (6.0.7)
4
+ sidekiq (6.1.1)
5
5
  connection_pool (>= 2.2.2)
6
6
  rack (~> 2.0)
7
- rack-protection (>= 2.0.0)
8
- redis (>= 4.1.0)
7
+ redis (>= 4.2.0)
9
8
 
10
9
  GEM
11
10
  remote: https://rubygems.org/
12
11
  specs:
13
- actioncable (6.0.2.1)
14
- actionpack (= 6.0.2.1)
12
+ actioncable (6.0.3.1)
13
+ actionpack (= 6.0.3.1)
15
14
  nio4r (~> 2.0)
16
15
  websocket-driver (>= 0.6.1)
17
- actionmailbox (6.0.2.1)
18
- actionpack (= 6.0.2.1)
19
- activejob (= 6.0.2.1)
20
- activerecord (= 6.0.2.1)
21
- activestorage (= 6.0.2.1)
22
- activesupport (= 6.0.2.1)
16
+ actionmailbox (6.0.3.1)
17
+ actionpack (= 6.0.3.1)
18
+ activejob (= 6.0.3.1)
19
+ activerecord (= 6.0.3.1)
20
+ activestorage (= 6.0.3.1)
21
+ activesupport (= 6.0.3.1)
23
22
  mail (>= 2.7.1)
24
- actionmailer (6.0.2.1)
25
- actionpack (= 6.0.2.1)
26
- actionview (= 6.0.2.1)
27
- activejob (= 6.0.2.1)
23
+ actionmailer (6.0.3.1)
24
+ actionpack (= 6.0.3.1)
25
+ actionview (= 6.0.3.1)
26
+ activejob (= 6.0.3.1)
28
27
  mail (~> 2.5, >= 2.5.4)
29
28
  rails-dom-testing (~> 2.0)
30
- actionpack (6.0.2.1)
31
- actionview (= 6.0.2.1)
32
- activesupport (= 6.0.2.1)
29
+ actionpack (6.0.3.1)
30
+ actionview (= 6.0.3.1)
31
+ activesupport (= 6.0.3.1)
33
32
  rack (~> 2.0, >= 2.0.8)
34
33
  rack-test (>= 0.6.3)
35
34
  rails-dom-testing (~> 2.0)
36
35
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
37
- actiontext (6.0.2.1)
38
- actionpack (= 6.0.2.1)
39
- activerecord (= 6.0.2.1)
40
- activestorage (= 6.0.2.1)
41
- activesupport (= 6.0.2.1)
36
+ actiontext (6.0.3.1)
37
+ actionpack (= 6.0.3.1)
38
+ activerecord (= 6.0.3.1)
39
+ activestorage (= 6.0.3.1)
40
+ activesupport (= 6.0.3.1)
42
41
  nokogiri (>= 1.8.5)
43
- actionview (6.0.2.1)
44
- activesupport (= 6.0.2.1)
42
+ actionview (6.0.3.1)
43
+ activesupport (= 6.0.3.1)
45
44
  builder (~> 3.1)
46
45
  erubi (~> 1.4)
47
46
  rails-dom-testing (~> 2.0)
48
47
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
49
- activejob (6.0.2.1)
50
- activesupport (= 6.0.2.1)
48
+ activejob (6.0.3.1)
49
+ activesupport (= 6.0.3.1)
51
50
  globalid (>= 0.3.6)
52
- activemodel (6.0.2.1)
53
- activesupport (= 6.0.2.1)
54
- activerecord (6.0.2.1)
55
- activemodel (= 6.0.2.1)
56
- activesupport (= 6.0.2.1)
51
+ activemodel (6.0.3.1)
52
+ activesupport (= 6.0.3.1)
53
+ activerecord (6.0.3.1)
54
+ activemodel (= 6.0.3.1)
55
+ activesupport (= 6.0.3.1)
57
56
  activerecord-jdbc-adapter (60.1-java)
58
57
  activerecord (~> 6.0.0)
59
58
  activerecord-jdbcsqlite3-adapter (60.1-java)
60
59
  activerecord-jdbc-adapter (= 60.1)
61
60
  jdbc-sqlite3 (~> 3.8, < 3.30)
62
- activestorage (6.0.2.1)
63
- actionpack (= 6.0.2.1)
64
- activejob (= 6.0.2.1)
65
- activerecord (= 6.0.2.1)
61
+ activestorage (6.0.3.1)
62
+ actionpack (= 6.0.3.1)
63
+ activejob (= 6.0.3.1)
64
+ activerecord (= 6.0.3.1)
66
65
  marcel (~> 0.3.1)
67
- activesupport (6.0.2.1)
66
+ activesupport (6.0.3.1)
68
67
  concurrent-ruby (~> 1.0, >= 1.0.2)
69
68
  i18n (>= 0.7, < 2)
70
69
  minitest (~> 5.1)
71
70
  tzinfo (~> 1.1)
72
- zeitwerk (~> 2.2)
73
- ast (2.4.0)
71
+ zeitwerk (~> 2.2, >= 2.2.2)
72
+ ast (2.4.1)
74
73
  builder (3.2.4)
75
- byebug (11.1.1)
76
- coderay (1.1.2)
74
+ codecov (0.1.17)
75
+ json
76
+ simplecov
77
+ url
77
78
  concurrent-ruby (1.1.6)
78
- connection_pool (2.2.2)
79
+ connection_pool (2.2.3)
79
80
  crass (1.0.6)
80
81
  docile (1.3.2)
81
82
  erubi (1.9.0)
@@ -85,10 +86,10 @@ GEM
85
86
  hiredis (0.6.3-java)
86
87
  i18n (1.8.2)
87
88
  concurrent-ruby (~> 1.0)
88
- jaro_winkler (1.5.4)
89
- jaro_winkler (1.5.4-java)
90
89
  jdbc-sqlite3 (3.28.0)
91
- loofah (2.4.0)
90
+ json (2.3.0)
91
+ json (2.3.0-java)
92
+ loofah (2.5.0)
92
93
  crass (~> 1.0.2)
93
94
  nokogiri (>= 1.5.9)
94
95
  mail (2.7.1)
@@ -96,74 +97,72 @@ GEM
96
97
  marcel (0.3.3)
97
98
  mimemagic (~> 0.3.2)
98
99
  method_source (0.9.2)
99
- mimemagic (0.3.4)
100
+ mimemagic (0.3.5)
100
101
  mini_mime (1.0.2)
101
102
  mini_portile2 (2.4.0)
102
- minitest (5.14.0)
103
+ minitest (5.14.1)
103
104
  nio4r (2.5.2)
104
105
  nio4r (2.5.2-java)
105
- nokogiri (1.10.8)
106
+ nokogiri (1.10.9)
106
107
  mini_portile2 (~> 2.4.0)
107
- nokogiri (1.10.8-java)
108
- parallel (1.19.1)
109
- parser (2.7.0.4)
108
+ nokogiri (1.10.9-java)
109
+ parallel (1.19.2)
110
+ parser (2.7.1.3)
110
111
  ast (~> 2.4.0)
111
- pry (0.12.2)
112
- coderay (~> 1.1.0)
113
- method_source (~> 0.9.0)
114
- pry-byebug (3.8.0)
115
- byebug (~> 11.0)
116
- pry (~> 0.10)
117
112
  rack (2.2.2)
118
- rack-protection (2.0.8.1)
119
- rack
120
113
  rack-test (1.1.0)
121
114
  rack (>= 1.0, < 3)
122
- rails (6.0.2.1)
123
- actioncable (= 6.0.2.1)
124
- actionmailbox (= 6.0.2.1)
125
- actionmailer (= 6.0.2.1)
126
- actionpack (= 6.0.2.1)
127
- actiontext (= 6.0.2.1)
128
- actionview (= 6.0.2.1)
129
- activejob (= 6.0.2.1)
130
- activemodel (= 6.0.2.1)
131
- activerecord (= 6.0.2.1)
132
- activestorage (= 6.0.2.1)
133
- activesupport (= 6.0.2.1)
115
+ rails (6.0.3.1)
116
+ actioncable (= 6.0.3.1)
117
+ actionmailbox (= 6.0.3.1)
118
+ actionmailer (= 6.0.3.1)
119
+ actionpack (= 6.0.3.1)
120
+ actiontext (= 6.0.3.1)
121
+ actionview (= 6.0.3.1)
122
+ activejob (= 6.0.3.1)
123
+ activemodel (= 6.0.3.1)
124
+ activerecord (= 6.0.3.1)
125
+ activestorage (= 6.0.3.1)
126
+ activesupport (= 6.0.3.1)
134
127
  bundler (>= 1.3.0)
135
- railties (= 6.0.2.1)
128
+ railties (= 6.0.3.1)
136
129
  sprockets-rails (>= 2.0.0)
137
130
  rails-dom-testing (2.0.3)
138
131
  activesupport (>= 4.2.0)
139
132
  nokogiri (>= 1.6)
140
133
  rails-html-sanitizer (1.3.0)
141
134
  loofah (~> 2.3)
142
- railties (6.0.2.1)
143
- actionpack (= 6.0.2.1)
144
- activesupport (= 6.0.2.1)
135
+ railties (6.0.3.1)
136
+ actionpack (= 6.0.3.1)
137
+ activesupport (= 6.0.3.1)
145
138
  method_source
146
139
  rake (>= 0.8.7)
147
140
  thor (>= 0.20.3, < 2.0)
148
141
  rainbow (3.0.0)
149
142
  rake (13.0.1)
150
- redis (4.1.3)
143
+ redis (4.2.0)
151
144
  redis-namespace (1.7.0)
152
145
  redis (>= 3.0.4)
153
- rubocop (0.79.0)
154
- jaro_winkler (~> 1.5.1)
146
+ regexp_parser (1.7.1)
147
+ rexml (3.2.4)
148
+ rubocop (0.85.1)
155
149
  parallel (~> 1.10)
156
150
  parser (>= 2.7.0.1)
157
151
  rainbow (>= 2.2.2, < 4.0)
152
+ regexp_parser (>= 1.7)
153
+ rexml
154
+ rubocop-ast (>= 0.0.3)
158
155
  ruby-progressbar (~> 1.7)
159
- unicode-display_width (>= 1.4.0, < 1.7)
160
- rubocop-performance (1.5.2)
156
+ unicode-display_width (>= 1.4.0, < 2.0)
157
+ rubocop-ast (0.0.3)
158
+ parser (>= 2.7.0.1)
159
+ rubocop-performance (1.6.1)
161
160
  rubocop (>= 0.71.0)
162
161
  ruby-progressbar (1.10.1)
163
- simplecov (0.18.2)
162
+ simplecov (0.18.5)
164
163
  docile (~> 1.1)
165
164
  simplecov-html (~> 0.11)
166
- simplecov-html (0.12.0)
165
+ simplecov-html (0.12.2)
167
166
  sprockets (4.0.0)
168
167
  concurrent-ruby (~> 1.0)
169
168
  rack (> 1, < 3)
@@ -172,22 +171,23 @@ GEM
172
171
  activesupport (>= 4.0)
173
172
  sprockets (>= 3.0.0)
174
173
  sqlite3 (1.4.2)
175
- standard (0.2.1)
176
- rubocop (~> 0.79.0)
177
- rubocop-performance (~> 1.5.1)
174
+ standard (0.4.7)
175
+ rubocop (~> 0.85.0)
176
+ rubocop-performance (~> 1.6.0)
178
177
  thor (1.0.1)
179
178
  thread_safe (0.3.6)
180
179
  thread_safe (0.3.6-java)
181
180
  toxiproxy (1.0.3)
182
- tzinfo (1.2.6)
181
+ tzinfo (1.2.7)
183
182
  thread_safe (~> 0.1)
184
- unicode-display_width (1.6.1)
185
- websocket-driver (0.7.1)
183
+ unicode-display_width (1.7.0)
184
+ url (0.3.2)
185
+ websocket-driver (0.7.2)
186
186
  websocket-extensions (>= 0.1.0)
187
- websocket-driver (0.7.1-java)
187
+ websocket-driver (0.7.2-java)
188
188
  websocket-extensions (>= 0.1.0)
189
189
  websocket-extensions (0.1.4)
190
- zeitwerk (2.2.2)
190
+ zeitwerk (2.3.0)
191
191
 
192
192
  PLATFORMS
193
193
  java
@@ -195,9 +195,9 @@ PLATFORMS
195
195
 
196
196
  DEPENDENCIES
197
197
  activerecord-jdbcsqlite3-adapter
198
+ codecov
198
199
  hiredis
199
200
  minitest
200
- pry-byebug
201
201
  rails (>= 6.0.2)
202
202
  rake
203
203
  redis-namespace
@@ -2,13 +2,26 @@
2
2
 
3
3
  [Sidekiq Changes](https://github.com/mperham/sidekiq/blob/master/Changes.md) | [Sidekiq Pro Changes](https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md) | [Sidekiq Enterprise Changes](https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md)
4
4
 
5
- Please see [http://sidekiq.org](http://sidekiq.org) for more details and how to buy.
5
+ Please see [sidekiq.org](https://sidekiq.org/) for more details and how to buy.
6
6
 
7
- HEAD
7
+ 5.1.1
8
8
  ---------
9
9
 
10
- - Update `constantize` for batch callbacks. [#4469]
10
+ - Fix broken basic fetcher [#4616]
11
+
12
+ 5.1.0
13
+ ---------
11
14
 
15
+ - Remove old Statsd metrics with `WorkerName` in the name [#4377]
16
+ ```
17
+ job.WorkerName.count -> job.count with tag worker:WorkerName
18
+ job.WorkerName.perform -> job.perform with tag worker:WorkerName
19
+ job.WorkerName.failure -> job.failure with tag worker:WorkerName
20
+ ```
21
+ - Remove `concurrent-ruby` gem dependency [#4586]
22
+ - Update `constantize` for batch callbacks. [#4469]
23
+ - Add queue tag to `jobs.recovered.fetch` metric [#4594]
24
+ - Refactor Pro's fetch infrastructure [#4602]
12
25
 
13
26
  5.0.1
14
27
  ---------
data/README.md CHANGED
@@ -2,11 +2,8 @@ Sidekiq
2
2
  ==============
3
3
 
4
4
  [![Gem Version](https://badge.fury.io/rb/sidekiq.svg)](https://rubygems.org/gems/sidekiq)
5
- [![Code Climate](https://codeclimate.com/github/mperham/sidekiq.svg)](https://codeclimate.com/github/mperham/sidekiq)
6
- [![Test Coverage](https://codeclimate.com/github/mperham/sidekiq/badges/coverage.svg)](https://codeclimate.com/github/mperham/sidekiq/coverage)
5
+ [![Codecov](https://codecov.io/gh/mperham/sidekiq/branch/master/graph/badge.svg)](https://codecov.io/gh/mperham/sidekiq)
7
6
  [![Build Status](https://circleci.com/gh/mperham/sidekiq/tree/master.svg?style=svg)](https://circleci.com/gh/mperham/sidekiq/tree/master)
8
- [![Gitter Chat](https://badges.gitter.im/mperham/sidekiq.svg)](https://gitter.im/mperham/sidekiq)
9
-
10
7
 
11
8
  Simple, efficient background processing for Ruby.
12
9
 
@@ -94,4 +91,4 @@ Please see [LICENSE](https://github.com/mperham/sidekiq/blob/master/LICENSE) for
94
91
  Author
95
92
  -----------------
96
93
 
97
- Mike Perham, [@mperham@mastodon.xyz](https://mastodon.xyz/@mperham) / [@sidekiq](https://twitter.com/sidekiq), [https://www.mikeperham.com](https://www.mikeperham.com) / [https://www.contribsys.com](https://www.contribsys.com)
94
+ Mike Perham, [@getajobmike](https://twitter.com/getajobmike) / [@sidekiq](https://twitter.com/sidekiq), [https://www.mikeperham.com](https://www.mikeperham.com) / [https://www.contribsys.com](https://www.contribsys.com)