sidekiq 5.2.6 → 5.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.circleci/config.yml +61 -0
- data/Changes.md +7 -0
- data/README.md +1 -1
- data/lib/sidekiq/client.rb +1 -1
- data/lib/sidekiq/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 408fa69245bc5dbd48894529237ed6bd94fb62f084e12c3cf21c5c2b44466555
|
|
4
|
+
data.tar.gz: 7052699621d277bf59aaee779f93c0f98089a2d0bbc5d40f4d991faa52ef7b90
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e128875c94c37f82fec77c4071e6abafd5326a1a949bff0ff90377d6a54c18b117a7753c439e7d9611e87dfc57c752251f6b2bf3cfb1c799d95016d2a112a211
|
|
7
|
+
data.tar.gz: 5aabe50f97494052e73190fb8aa96f57b253e5855416938ef0644013012678640d620c8e05484c4d945ea558d55413c7c1625967ab40f402680b7ded27133321
|
|
@@ -0,0 +1,61 @@
|
|
|
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"
|
|
61
|
+
- "jruby"
|
data/Changes.md
CHANGED
|
@@ -2,12 +2,19 @@
|
|
|
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
|
+
5.2.7
|
|
6
|
+
---------
|
|
7
|
+
|
|
8
|
+
- Fix stale `enqueued_at` when retrying [#4149]
|
|
9
|
+
- Move build to [Circle CI](https://circleci.com/gh/mperham/sidekiq) [#4120]
|
|
10
|
+
|
|
5
11
|
5.2.6
|
|
6
12
|
---------
|
|
7
13
|
|
|
8
14
|
- Fix edge case where a job failure during Redis outage could result in a lost job [#4141]
|
|
9
15
|
- Better handling of malformed job arguments in payload [#4095]
|
|
10
16
|
- Restore bootstap's dropdown css component [#4099, urkle]
|
|
17
|
+
- Display human-friendly time diff for longer queue latencies [#4111, interlinked]
|
|
11
18
|
- Allow `Sidekiq::Worker#set` to be chained
|
|
12
19
|
|
|
13
20
|
5.2.5
|
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@ Sidekiq
|
|
|
3
3
|
|
|
4
4
|
[](https://rubygems.org/gems/sidekiq)
|
|
5
5
|
[](https://codeclimate.com/github/mperham/sidekiq)
|
|
6
|
-
[](https://circleci.com/gh/mperham/sidekiq/tree/master)
|
|
7
7
|
[](https://gitter.im/mperham/sidekiq)
|
|
8
8
|
|
|
9
9
|
|
data/lib/sidekiq/client.rb
CHANGED
data/lib/sidekiq/version.rb
CHANGED
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: 5.2.
|
|
4
|
+
version: 5.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Perham
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-04-
|
|
11
|
+
date: 2019-04-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: redis
|
|
@@ -87,6 +87,7 @@ executables:
|
|
|
87
87
|
extensions: []
|
|
88
88
|
extra_rdoc_files: []
|
|
89
89
|
files:
|
|
90
|
+
- ".circleci/config.yml"
|
|
90
91
|
- ".github/contributing.md"
|
|
91
92
|
- ".github/issue_template.md"
|
|
92
93
|
- ".gitignore"
|