sidekiq 7.0.8 → 7.1.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,12 +5,9 @@
5
5
 
6
6
  <%
7
7
  job_result = @query_result.job_results[@name]
8
- hist_totals = job_result.hist.values.first.zip(*job_result.hist.values[1..-1]).map(&:sum)
9
- bucket_labels =Sidekiq::Metrics::Histogram::LABELS
10
- bucket_intervals =Sidekiq::Metrics::Histogram::BUCKET_INTERVALS.reverse
11
-
12
- # Replace INFINITY since it can't be represented as JSON
13
- bucket_intervals[0] = bucket_intervals[1] * 2
8
+ hist_totals = job_result.hist.values.first.zip(*job_result.hist.values[1..-1]).map(&:sum).reverse
9
+ bucket_labels = Sidekiq::Metrics::Histogram::LABELS
10
+ bucket_intervals = Sidekiq::Metrics::Histogram::BUCKET_INTERVALS
14
11
  %>
15
12
 
16
13
  <% if job_result.totals["s"] > 0 %>
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: 7.0.8
4
+ version: 7.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Perham
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-05 00:00:00.000000000 Z
11
+ date: 2023-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis-client
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.11.0
19
+ version: 0.14.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: 0.11.0
26
+ version: 0.14.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: connection_pool
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -156,6 +156,7 @@ files:
156
156
  - web/locales/es.yml
157
157
  - web/locales/fa.yml
158
158
  - web/locales/fr.yml
159
+ - web/locales/gd.yml
159
160
  - web/locales/he.yml
160
161
  - web/locales/hi.yml
161
162
  - web/locales/it.yml
@@ -206,14 +207,7 @@ metadata:
206
207
  changelog_uri: https://github.com/sidekiq/sidekiq/blob/main/Changes.md
207
208
  source_code_uri: https://github.com/sidekiq/sidekiq
208
209
  rubygems_mfa_required: 'true'
209
- post_install_message: |2+
210
-
211
- Welcome to Sidekiq 7.0!
212
-
213
- 1. Use `gem 'sidekiq', '<7'` in your Gemfile if you don't want this new version.
214
- 2. Read the release notes at https://github.com/sidekiq/sidekiq/blob/main/docs/7.0-Upgrade.md
215
- 3. If you have problems, search for open/closed issues at https://github.com/sidekiq/sidekiq/issues/
216
-
210
+ post_install_message:
217
211
  rdoc_options: []
218
212
  require_paths:
219
213
  - lib
@@ -233,4 +227,3 @@ signing_key:
233
227
  specification_version: 4
234
228
  summary: Simple, efficient background processing for Ruby
235
229
  test_files: []
236
- ...