sidekiq-cron 1.2.0 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: cb2f152cb3faf85dbc089e10820fd48d7c23f6ad
4
- data.tar.gz: 4ced419b5c9ddaeb43a6ebd62221cdbd95eb2c91
2
+ SHA256:
3
+ metadata.gz: 437dc35edb85224f5e77eaa73be4adac923adb313f755f3029a4037e92a9c523
4
+ data.tar.gz: 517c8dd23943edb6c1e6e3059b4b6f7044ff85d13594447dbb097ff7438afc63
5
5
  SHA512:
6
- metadata.gz: d882bd7a34f478fc9ea3eb591c6ffe01df2b360ba501ef2df13aa3d7631f77a97a393bc5a391ec682810766dbfe8790bb8a42ed29fc69a666623753103c4c994
7
- data.tar.gz: 4bbdf927f3830a9a62e2bf622bf34492555e0a8051f303a0a712eda46a818a5dfd78b5de913e137e39b91f046a05247ae2a133cabe1573fa1b4f21307f721b24
6
+ metadata.gz: 8d943877a3c9577b060ccbc86fca6e256ac6e12e7ab4ef5428091960d82d119b8087264b3fd20afcd2a191dc722f42deab5701557aa5d1fd9e0f2cfe10357b26
7
+ data.tar.gz: 39f3b04c168c250f0273796fb1c6f20947114d92030d60fed74d2c5087ee401b35f0b3e1fdea00a6c7eac9116d76204ce439dae7a5ba965b60978034ae472d38
data/Changes.md CHANGED
@@ -1,82 +1,102 @@
1
- v 1.2.0
2
- -------
3
-
4
- - updated readme
5
- - fix problem with Sidekiq::Launcher and requiring it when not needed
6
- - better patching of Sidekiq::Launcher
7
- - fixed Dockerfile
8
-
9
- v 1.1.0
10
- -------
11
-
12
- - updated readme
13
- - fix unit tests - changed argument error when getting invalid cron format
14
- - when fallbacking old job enqueued time use `Time.parse` šwithout format (so ruby can decide best method to parse it)
15
- - add option `date_as_argument` which will add to your job arguments on last place `Time.now.to_f` when it was eneuqued
16
- - add option `description` which will allow you to add notes to your jobs so in web view you can see it
17
- - fixed translations
18
-
19
- v 1.0.4
20
- -------
21
-
22
- - fix problem with upgrading to 1.0.x - parsing last enqued time didn't count with old time format stored in redis
23
-
24
- v 1.0.0
25
- -------
26
-
27
- - use [fugit](https://github.com/floraison/fugit) instead of [rufus-scheduler](https://github.com/jmettraux/rufus-scheduler) - API of cron didn't change (rufus scheduler is using fugit)
28
- - better working with Timezones
29
- - translations for JA, zh-CN
30
- - cron without timezone are considered as UTC, to add Timezone to cron use format `* * * * * Europe/Berlin`
31
- - be aware that this release can change when your jobs are enqueued (for me it didn't change but it is in one project, in other it can shift by different timezone setup)
32
-
33
- v 0.6.0
34
- -------
35
-
36
- - set poller to check jobs every 30s by default (possible to override by `Sidekiq.options[:poll_interval] = 10`)
37
- - add group actions (enqueue, enable, disable, delete) all in web view
38
- - fix poller to enqueu all jobs in poll start time
39
- - add performance test for enqueue of jobs (10 000 jobs in less than 19s)
40
- - fix problem with default queue
41
- - remove redis-namespace from dependencies
42
- - update ruby versions in travis
43
-
44
- v 0.5.0
45
- -------
46
- - add docker support
47
- - all crons are now evaluated in UTC
48
- - fix rufus scheduler & timezones problems
49
- - add support for sidekiq 4.2.1
50
- - fix readme
51
- - add Russian locale
52
- - user Rack.env in tests
53
- - faster enque of jobs
54
- - permit to use ActiveJob::Base.queue_name_delimiter
55
- - fix problem with multiple times enque #84
56
- - fix problem with enque of unknown class
57
-
58
- v 0.4.0
59
- -------
60
-
61
- - enable to work with sidekiq >= 4.0.0
62
- - fix readme
63
-
64
- v 0.3.1
65
- -------
66
-
67
- - add CSRF tags to forms so it will work with sidekiq >= 3.4.2
68
- - remove tilt dependency
69
-
70
- v 0.3.0
71
- -------
72
-
73
- - suport for Active Job
74
- - sidekiq cron web ui needs to be loaded by: require 'sidekiq/cron/web'
75
- - add load_from_hash! and load_from_array! which cleanup jobs before adding new ones
76
-
77
- v 0.1.1
78
- -------
79
-
80
- - add Web fontend with enabled/disable job, unqueue now, delete job
81
- - add cron poller - enqueu cro jobs
82
- - add cron job - save all needed data to redis
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## 1.4.0
6
+
7
+ - Fix buttons order in job show view (https://github.com/ondrejbartas/sidekiq-cron/pull/302)
8
+ - Dark Mode support in UI (https://github.com/ondrejbartas/sidekiq-cron/pull/317/282)
9
+ - Remove invocation of deprecated Redis functionality (https://github.com/ondrejbartas/sidekiq-cron/pull/318)
10
+ - Internal code cleanup (https://github.com/ondrejbartas/sidekiq-cron/pull/317)
11
+ - Optimize gem size (https://github.com/ondrejbartas/sidekiq-cron/pull/322)
12
+ - Fix "Show All" button on cron jobs view with Sidekiq 6.3.0+ (https://github.com/ondrejbartas/sidekiq-cron/pull/321)
13
+ - Documentation updates
14
+
15
+ ## 1.3.0
16
+
17
+ - Add confirmation dialog when enquing jobs from UI
18
+ - Start to support Sidekiq `average_scheduled_poll_interval` option (replaced `poll_interval`)
19
+ - Enable to use latest fugit to parse cron notation alowing use of natural language (ie `"every 30 minutes"`)
20
+ - Fix deprecation warning for Redis 4.6.x
21
+ - Fix different response from Redis#exists in different Redis versions
22
+ - All PRs:
23
+ - https://github.com/ondrejbartas/sidekiq-cron/pull/275
24
+ - https://github.com/ondrejbartas/sidekiq-cron/pull/287
25
+ - https://github.com/ondrejbartas/sidekiq-cron/pull/309
26
+ - https://github.com/ondrejbartas/sidekiq-cron/pull/299
27
+ - https://github.com/ondrejbartas/sidekiq-cron/pull/314
28
+ - https://github.com/ondrejbartas/sidekiq-cron/pull/288
29
+
30
+ ## 1.2.0
31
+
32
+ - Updated readme
33
+ - Fix problem with Sidekiq::Launcher and requiring it when not needed
34
+ - Better patching of Sidekiq::Launcher
35
+ - Fixed Dockerfile
36
+
37
+ ## 1.1.0
38
+
39
+ - Updated readme
40
+ - Fix unit tests - changed argument error when getting invalid cron format
41
+ - When fallbacking old job enqueued time use `Time.parse` without format (so ruby can decide best method to parse it)
42
+ - Add option `date_as_argument` which will add to your job arguments on last place `Time.now.to_f` when it was eneuqued
43
+ - Add option `description` which will allow you to add notes to your jobs so in web view you can see it
44
+ - Fixed translations
45
+
46
+ ## 1.0.4
47
+
48
+ - Fix problem with upgrading to 1.0.x - parsing last enqued time didn't count with old time format stored in Redis
49
+
50
+ ## 1.0.0
51
+
52
+ - Use [fugit](https://github.com/floraison/fugit) instead of [rufus-scheduler](https://github.com/jmettraux/rufus-scheduler) - API of cron didn't change (rufus scheduler is using fugit)
53
+ - Better working with Timezones
54
+ - Translations for JA, zh-CN
55
+ - Cron without timezone are considered as UTC, to add Timezone to cron use format `* * * * * Europe/Berlin`
56
+ - Be aware that this release can change when your jobs are enqueued (for me it didn't change but it is in one project, in other it can shift by different timezone setup)
57
+
58
+ ## 0.6.0
59
+
60
+ - Set poller to check jobs every 30s by default (possible to override by `Sidekiq.options[:poll_interval] = 10`)
61
+ - Add group actions (enqueue, enable, disable, delete) all in web view
62
+ - Fix poller to enqueu all jobs in poll start time
63
+ - Add performance test for enqueue of jobs (10 000 jobs in less than 19s)
64
+ - Fix problem with default queue
65
+ - Remove redis-namespace from dependencies
66
+ - Update ruby versions in travis
67
+
68
+ ## 0.5.0
69
+
70
+ - Add Docker support
71
+ - All crons are now evaluated in UTC
72
+ - Fix rufus scheduler & timezones problems
73
+ - Add support for Sidekiq 4.2.1
74
+ - Fix readme
75
+ - Add Russian locale
76
+ - User Rack.env in tests
77
+ - Faster enqueue of jobs
78
+ - Permit to use ActiveJob::Base.queue_name_delimiter
79
+ - Fix problem with multiple times enqueue #84
80
+ - Fix problem with enqueue of unknown class
81
+
82
+ ## 0.4.0
83
+
84
+ - Enable to work with Sidekiq >= 4.0.0
85
+ - Fix readme
86
+
87
+ ## 0.3.1
88
+
89
+ - Add CSRF tags to forms so it will work with Sidekiq >= 3.4.2
90
+ - Remove Tilt dependency
91
+
92
+ ## 0.3.0
93
+
94
+ - Suport for Active Job
95
+ - Sidekiq cron web ui needs to be loaded by: require 'sidekiq/cron/web'
96
+ - Add load_from_hash! and load_from_array! which cleanup jobs before adding new ones
97
+
98
+ ## 0.1.1
99
+
100
+ - Add Web front-end with enabled/disable job, enqueue now, delete job
101
+ - Add cron poller - enqueue cron jobs
102
+ - Add cron job - save all needed data to Redis
data/Gemfile CHANGED
@@ -1,32 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'sidekiq', '>= 4.2.1'
4
- gem 'fugit', '~> 1.1'
5
-
6
- group :development do
7
- gem 'bundler'
8
- gem 'simplecov'
9
-
10
- gem 'redis-namespace', '>= 1.5.2'
11
- gem 'shoulda-context'
12
-
13
- gem 'rack'
14
- gem 'rack-test'
15
-
16
- gem 'jeweler'
17
-
18
- gem 'minitest'
19
- gem 'test-unit'
20
- gem 'sdoc' # sdoc -N .
21
-
22
- gem 'slim'
23
- gem 'sinatra'
24
-
25
- gem 'mocha'
26
- gem 'coveralls'
27
-
28
- gem 'shotgun'
29
-
30
- gem 'guard'
31
- gem 'guard-minitest'
32
- end
3
+ gemspec