sidekiq-scheduler 4.0.0.alpha1 → 4.0.0
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/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/sidekiq-scheduler/extensions/web.rb +7 -4
- data/lib/sidekiq-scheduler/version.rb +1 -1
- data/web/views/recurring_jobs.erb +25 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 12c3e6d705d029b128410b85537a40dcee792f9d90afc0361d9ea252086e97b8
|
|
4
|
+
data.tar.gz: de79ac766a7fd06e7900b7aaa34bc38f0bfcb57092d8ab11a9f859fc7c07d224
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9ff2d4780c49dfb7b07b2fb5dfac2091f6e82dfc348c36f3f587281f75dae427b2415ff1bc24a1e4c68ba88f56fecc20aef5dec8707fb6da030e4c52a7118444
|
|
7
|
+
data.tar.gz: c0fb7595d9a4090205f9cb3069570179a1e35246ac59103eda70f871eb060ae99f3174b18751b8fcc11f66672ce08c8ec3e7c57cf4ddbbbcd339f6fad15db5f8
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# 4.0.0
|
|
2
|
+
|
|
3
|
+
- [**FIX**] Fix CSS not loading on Rails app when Sidekiq < 6 [#377](https://github.com/moove-it/sidekiq-scheduler/pull/377)
|
|
4
|
+
- [**BREAKING CHANGE**] Drop support for Sidekiq 3 [f15e7ca1a5f3ab5b6fd3d7664d67723dba1fa1f1](https://github.com/moove-it/sidekiq-scheduler/commit/f15e7ca1a5f3ab5b6fd3d7664d67723dba1fa1f1)
|
|
5
|
+
|
|
6
|
+
# 4.0.0.alpha1
|
|
7
|
+
|
|
8
|
+
- [**FIX**] Fix deprecated uses of Redis#pipelined [#357](https://github.com/moove-it/sidekiq-scheduler/pull/357)
|
|
9
|
+
- [**DOCS**] Add docs for running multi-sidekiq configurations [#362](https://github.com/moove-it/sidekiq-scheduler/pull/362)
|
|
10
|
+
- [**FIX**] Prevent sidekiq_options from overriding ActiveJob queue settings [#367](https://github.com/moove-it/sidekiq-scheduler/pull/367)
|
|
11
|
+
- [**ENHANCEMENT**] Highlight disabled jobs [#369](https://github.com/moove-it/sidekiq-scheduler/pull/369)
|
|
12
|
+
- [**BREAKING CHANGE**] Require redis 4.2.0 [#370](https://github.com/moove-it/sidekiq-scheduler/pull/370)
|
|
13
|
+
- [**FIX**] Fixes redis deprecation warning regarding `exists` [#370](https://github.com/moove-it/sidekiq-scheduler/pull/370)
|
|
14
|
+
- [**BREAKING CHANGE**] Remove dependecy on thwait and e2mmap [#371](https://github.com/moove-it/sidekiq-scheduler/pull/371)
|
|
15
|
+
- Support Ruby 3.1 [#373](https://github.com/moove-it/sidekiq-scheduler/pull/373)
|
|
16
|
+
- [**BREAKING CHANGE**] Set rufus_scheduler_options via sidekiq.yml file as configuration option [#375](https://github.com/moove-it/sidekiq-scheduler/pull/375)
|
data/README.md
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
`sidekiq-scheduler` is an extension to [Sidekiq](http://github.com/mperham/sidekiq) that
|
|
31
31
|
pushes jobs in a scheduled way, mimicking cron utility.
|
|
32
32
|
|
|
33
|
-
__Note:__ Current branch contains work
|
|
33
|
+
__Note:__ Current branch contains work of the V4 release, if you are looking for version 2.2.* or 3.*, go to [2.2-stable branch](https://github.com/moove-it/sidekiq-scheduler/tree/2.2-stable) / [v3-stable](https://github.com/moove-it/sidekiq-scheduler/tree/v3-stable).
|
|
34
34
|
|
|
35
35
|
## Installation
|
|
36
36
|
|
|
@@ -5,7 +5,10 @@ ASSETS_PATH = File.expand_path('../../../web/assets', __dir__)
|
|
|
5
5
|
Sidekiq::Web.register(SidekiqScheduler::Web)
|
|
6
6
|
Sidekiq::Web.tabs['recurring_jobs'] = 'recurring-jobs'
|
|
7
7
|
Sidekiq::Web.locales << File.expand_path("#{File.dirname(__FILE__)}/../../../web/locales")
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
|
|
9
|
+
if Sidekiq::VERSION >= '6.0.0'
|
|
10
|
+
Sidekiq::Web.use Rack::Static, urls: ['/stylesheets'],
|
|
11
|
+
root: ASSETS_PATH,
|
|
12
|
+
cascade: true,
|
|
13
|
+
header_rules: [[:all, { 'Cache-Control' => 'public, max-age=86400' }]]
|
|
14
|
+
end
|
|
@@ -1,4 +1,28 @@
|
|
|
1
|
-
|
|
1
|
+
<% if Sidekiq::VERSION >= '6.0.0' %>
|
|
2
|
+
<link href="<%= root_path %>stylesheets/recurring_jobs.css" media="screen" rel="stylesheet" type="text/css" />
|
|
3
|
+
<% else %>
|
|
4
|
+
<style>
|
|
5
|
+
.recurring-jobs { border-top-left-radius: 4px; border-top-right-radius: 4px; }
|
|
6
|
+
.recurring-jobs .title { margin-bottom: 5px; }
|
|
7
|
+
.recurring-jobs .title .name { font-weight: bold;}
|
|
8
|
+
.recurring-jobs .info,
|
|
9
|
+
.recurring-jobs .description { margin-bottom: 5px; }
|
|
10
|
+
.recurring-jobs .actions { margin-bottom: 5px; }
|
|
11
|
+
.recurring-jobs .status,
|
|
12
|
+
.recurring-jobs .description { font-size: 12px; }
|
|
13
|
+
.recurring-jobs .enqueue { margin-bottom: 0.5rem }
|
|
14
|
+
|
|
15
|
+
.list-group-item {
|
|
16
|
+
background-color: #f3f3f3;
|
|
17
|
+
color: #585454;
|
|
18
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.list-group-item-disabled {
|
|
22
|
+
background-color: #f3d3d3;
|
|
23
|
+
}
|
|
24
|
+
</style>
|
|
25
|
+
<% end %>
|
|
2
26
|
|
|
3
27
|
<h3><%= t('recurring_jobs') %></h3>
|
|
4
28
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sidekiq-scheduler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.0
|
|
4
|
+
version: 4.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Morton Jonuschat
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2022-04-
|
|
13
|
+
date: 2022-04-28 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: sidekiq
|
|
@@ -18,14 +18,14 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: '
|
|
21
|
+
version: '4'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - ">="
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: '
|
|
28
|
+
version: '4'
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: redis
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -217,6 +217,7 @@ executables: []
|
|
|
217
217
|
extensions: []
|
|
218
218
|
extra_rdoc_files: []
|
|
219
219
|
files:
|
|
220
|
+
- CHANGELOG.md
|
|
220
221
|
- MIT-LICENSE
|
|
221
222
|
- README.md
|
|
222
223
|
- Rakefile
|
|
@@ -263,9 +264,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
263
264
|
version: '2.5'
|
|
264
265
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
265
266
|
requirements:
|
|
266
|
-
- - "
|
|
267
|
+
- - ">="
|
|
267
268
|
- !ruby/object:Gem::Version
|
|
268
|
-
version:
|
|
269
|
+
version: '0'
|
|
269
270
|
requirements: []
|
|
270
271
|
rubygems_version: 3.2.19
|
|
271
272
|
signing_key:
|