sidekiq 6.0.6 → 6.1.3

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.

Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE/bug_report.md +20 -0
  3. data/.github/workflows/ci.yml +41 -0
  4. data/5.0-Upgrade.md +1 -1
  5. data/Changes.md +48 -1
  6. data/Ent-Changes.md +54 -1
  7. data/Gemfile +1 -1
  8. data/Gemfile.lock +97 -112
  9. data/Pro-Changes.md +34 -3
  10. data/README.md +2 -6
  11. data/bin/sidekiq +26 -2
  12. data/lib/sidekiq.rb +5 -3
  13. data/lib/sidekiq/api.rb +16 -10
  14. data/lib/sidekiq/cli.rb +24 -8
  15. data/lib/sidekiq/client.rb +16 -11
  16. data/lib/sidekiq/extensions/action_mailer.rb +3 -2
  17. data/lib/sidekiq/extensions/active_record.rb +4 -3
  18. data/lib/sidekiq/extensions/class_methods.rb +5 -4
  19. data/lib/sidekiq/fetch.rb +20 -20
  20. data/lib/sidekiq/job_retry.rb +1 -0
  21. data/lib/sidekiq/launcher.rb +47 -13
  22. data/lib/sidekiq/logger.rb +3 -2
  23. data/lib/sidekiq/manager.rb +4 -4
  24. data/lib/sidekiq/middleware/chain.rb +1 -1
  25. data/lib/sidekiq/processor.rb +4 -4
  26. data/lib/sidekiq/rails.rb +16 -18
  27. data/lib/sidekiq/redis_connection.rb +18 -13
  28. data/lib/sidekiq/sd_notify.rb +1 -1
  29. data/lib/sidekiq/systemd.rb +1 -15
  30. data/lib/sidekiq/testing.rb +1 -1
  31. data/lib/sidekiq/version.rb +1 -1
  32. data/lib/sidekiq/web.rb +15 -7
  33. data/lib/sidekiq/web/application.rb +2 -4
  34. data/lib/sidekiq/web/csrf_protection.rb +156 -0
  35. data/lib/sidekiq/web/helpers.rb +15 -6
  36. data/lib/sidekiq/web/router.rb +1 -1
  37. data/lib/sidekiq/worker.rb +2 -5
  38. data/sidekiq.gemspec +2 -3
  39. data/web/assets/javascripts/application.js +3 -8
  40. data/web/assets/stylesheets/application-dark.css +60 -33
  41. data/web/assets/stylesheets/application.css +19 -6
  42. data/web/locales/fr.yml +3 -3
  43. data/web/locales/pl.yml +4 -4
  44. data/web/locales/ru.yml +4 -0
  45. data/web/locales/vi.yml +83 -0
  46. data/web/views/busy.erb +4 -2
  47. data/web/views/morgue.erb +1 -1
  48. data/web/views/queues.erb +1 -1
  49. data/web/views/retries.erb +1 -1
  50. data/web/views/scheduled.erb +1 -1
  51. metadata +13 -25
  52. data/.circleci/config.yml +0 -60
  53. data/.github/issue_template.md +0 -11
@@ -14,10 +14,11 @@
14
14
  </div>
15
15
 
16
16
  <div class="table_container">
17
- <table class="processes table table-hover table-bordered table-striped table-white">
17
+ <table class="processes table table-hover table-bordered table-striped">
18
18
  <thead>
19
19
  <th><%= t('Name') %></th>
20
20
  <th><%= t('Started') %></th>
21
+ <th><%= t('RSS') %><a href="https://github.com/mperham/sidekiq/wiki/Memory#rss"><span class="circled" title="Click to learn more about RSS">?</span></a></th>
21
22
  <th><%= t('Threads') %></th>
22
23
  <th><%= t('Busy') %></th>
23
24
  <th>&nbsp;</th>
@@ -42,6 +43,7 @@
42
43
  <%= process['queues'] * ", " %>
43
44
  </td>
44
45
  <td><%= relative_time(Time.at(process['started_at'])) %></td>
46
+ <td><%= format_memory(process['rss'].to_i) %></td>
45
47
  <td><%= process['concurrency'] %></td>
46
48
  <td><%= process['busy'] %></td>
47
49
  <td>
@@ -68,7 +70,7 @@
68
70
  </div>
69
71
 
70
72
  <div class="table_container">
71
- <table class="workers table table-hover table-bordered table-striped table-white">
73
+ <table class="workers table table-hover table-bordered table-striped">
72
74
  <thead>
73
75
  <th><%= t('Process') %></th>
74
76
  <th><%= t('TID') %></th>
@@ -14,7 +14,7 @@
14
14
  <form action="<%= root_path %>morgue" method="post">
15
15
  <%= csrf_tag %>
16
16
  <div class="table_container">
17
- <table class="table table-striped table-bordered table-white">
17
+ <table class="table table-striped table-bordered">
18
18
  <thead>
19
19
  <tr>
20
20
  <th class="table-checkbox checkbox-column">
@@ -1,7 +1,7 @@
1
1
  <h3><%= t('Queues') %></h3>
2
2
 
3
3
  <div class="table_container">
4
- <table class="queues table table-hover table-bordered table-striped table-white">
4
+ <table class="queues table table-hover table-bordered table-striped">
5
5
  <thead>
6
6
  <th><%= t('Queue') %></th>
7
7
  <th><%= t('Size') %></th>
@@ -14,7 +14,7 @@
14
14
  <form action="<%= root_path %>retries" method="post">
15
15
  <%= csrf_tag %>
16
16
  <div class="table_container">
17
- <table class="table table-striped table-bordered table-white">
17
+ <table class="table table-striped table-bordered">
18
18
  <thead>
19
19
  <tr>
20
20
  <th class="table-checkbox checkbox-column">
@@ -15,7 +15,7 @@
15
15
  <form action="<%= root_path %>scheduled" method="post">
16
16
  <%= csrf_tag %>
17
17
  <div class="table_container">
18
- <table class="table table-striped table-bordered table-white">
18
+ <table class="table table-striped table-bordered">
19
19
  <thead>
20
20
  <tr>
21
21
  <th class="checkbox-column">
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidekiq
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.6
4
+ version: 6.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Perham
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-23 00:00:00.000000000 Z
11
+ date: 2021-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 4.1.0
19
+ version: 4.2.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 4.1.0
26
+ version: 4.2.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: connection_pool
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -52,20 +52,6 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '2.0'
55
- - !ruby/object:Gem::Dependency
56
- name: rack-protection
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: 2.0.0
62
- type: :runtime
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- version: 2.0.0
69
55
  description: Simple, efficient background processing for Ruby.
70
56
  email:
71
57
  - mperham@gmail.com
@@ -75,9 +61,9 @@ executables:
75
61
  extensions: []
76
62
  extra_rdoc_files: []
77
63
  files:
78
- - ".circleci/config.yml"
64
+ - ".github/ISSUE_TEMPLATE/bug_report.md"
79
65
  - ".github/contributing.md"
80
- - ".github/issue_template.md"
66
+ - ".github/workflows/ci.yml"
81
67
  - ".gitignore"
82
68
  - ".standard.yml"
83
69
  - 3.0-Upgrade.md
@@ -139,6 +125,7 @@ files:
139
125
  - lib/sidekiq/web.rb
140
126
  - lib/sidekiq/web/action.rb
141
127
  - lib/sidekiq/web/application.rb
128
+ - lib/sidekiq/web/csrf_protection.rb
142
129
  - lib/sidekiq/web/helpers.rb
143
130
  - lib/sidekiq/web/router.rb
144
131
  - lib/sidekiq/worker.rb
@@ -178,6 +165,7 @@ files:
178
165
  - web/locales/ta.yml
179
166
  - web/locales/uk.yml
180
167
  - web/locales/ur.yml
168
+ - web/locales/vi.yml
181
169
  - web/locales/zh-cn.yml
182
170
  - web/locales/zh-tw.yml
183
171
  - web/views/_footer.erb
@@ -198,11 +186,11 @@ files:
198
186
  - web/views/retry.erb
199
187
  - web/views/scheduled.erb
200
188
  - web/views/scheduled_job_info.erb
201
- homepage: http://sidekiq.org
189
+ homepage: https://sidekiq.org
202
190
  licenses:
203
191
  - LGPL-3.0
204
192
  metadata: {}
205
- post_install_message:
193
+ post_install_message:
206
194
  rdoc_options: []
207
195
  require_paths:
208
196
  - lib
@@ -217,8 +205,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
217
205
  - !ruby/object:Gem::Version
218
206
  version: '0'
219
207
  requirements: []
220
- rubygems_version: 3.0.3
221
- signing_key:
208
+ rubygems_version: 3.1.4
209
+ signing_key:
222
210
  specification_version: 4
223
211
  summary: Simple, efficient background processing for Ruby
224
212
  test_files: []
@@ -1,60 +0,0 @@
1
- version: 2
2
- references:
3
- unit: &unit
4
- run:
5
- name: Run test suite
6
- command: bundle exec rake
7
- restore: &restore
8
- restore_cache:
9
- keys:
10
- - v1-dependencies-{{ checksum "Gemfile.lock" }}
11
- # fallback to using the latest cache if no exact match is found
12
- - v1-dependencies-
13
- bundle: &bundle
14
- run:
15
- name: install dependencies
16
- command: |
17
- bundle install --jobs=4 --retry=3 --path vendor/bundle
18
- save: &save
19
- save_cache:
20
- paths:
21
- - ./vendor/bundle
22
- key: v1-dependencies-{{ checksum "Gemfile.lock" }}
23
- jobs:
24
- "ruby-2.5":
25
- docker:
26
- - image: circleci/ruby:2.5
27
- - image: circleci/redis:4.0
28
- steps:
29
- - checkout
30
- - <<: *restore
31
- - <<: *bundle
32
- - <<: *save
33
- - <<: *unit
34
- "ruby-2.6":
35
- docker:
36
- - image: circleci/ruby:2.6
37
- - image: circleci/redis:4.0
38
- steps:
39
- - checkout
40
- - <<: *restore
41
- - <<: *bundle
42
- - <<: *save
43
- - <<: *unit
44
- "jruby":
45
- docker:
46
- - image: circleci/jruby:latest
47
- - image: circleci/redis:4.0
48
- steps:
49
- - checkout
50
- - <<: *restore
51
- - <<: *bundle
52
- - <<: *save
53
- - <<: *unit
54
-
55
- workflows:
56
- version: 2
57
- build:
58
- jobs:
59
- - "ruby-2.5"
60
- - "ruby-2.6"
@@ -1,11 +0,0 @@
1
- Ruby version:
2
- Sidekiq / Pro / Enterprise version(s):
3
-
4
- Please include your initializer and any error message with the full backtrace.
5
-
6
- Are you using an old version?
7
- Have you checked the changelogs to see if your issue has been fixed in a later version?
8
-
9
- https://github.com/mperham/sidekiq/blob/master/Changes.md
10
- https://github.com/mperham/sidekiq/blob/master/Pro-Changes.md
11
- https://github.com/mperham/sidekiq/blob/master/Ent-Changes.md