sidekiq-cron 1.2.0 → 1.5.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: 30fae647f59944364617d071e3e37b7d2d4b8b8153d4cee4aa05a1cfbfe387e5
4
+ data.tar.gz: c7c6ef11245172570823464e660ce427657ec676e2593b75705deddfed744d5d
5
5
  SHA512:
6
- metadata.gz: d882bd7a34f478fc9ea3eb591c6ffe01df2b360ba501ef2df13aa3d7631f77a97a393bc5a391ec682810766dbfe8790bb8a42ed29fc69a666623753103c4c994
7
- data.tar.gz: 4bbdf927f3830a9a62e2bf622bf34492555e0a8051f303a0a712eda46a818a5dfd78b5de913e137e39b91f046a05247ae2a133cabe1573fa1b4f21307f721b24
6
+ metadata.gz: 161fe2edda57f601085515076a2a6375bcf97018124af3993de70fe16624d7b0fcaeefb1cfeac4d0ae5dbc6292ee299faf67a443b7fd8f8e044ed58f118e98f3
7
+ data.tar.gz: b16fb8618c719b9e9c0d39df2e1b6eb6bbaefe8ce80d1d27fea75f84c9ffc8c3fc9df8860b3409bd3d65eb2b01b3c25917a961ea9911609ed8cff5e6912e2f70
data/Changes.md CHANGED
@@ -1,82 +1,107 @@
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.5.0
6
+
7
+ - Integrate Sidekiq v6.5 breaking changes (https://github.com/ondrejbartas/sidekiq-cron/pull/331)
8
+ - Add portuguese translations (https://github.com/ondrejbartas/sidekiq-cron/pull/332)
9
+
10
+ ## 1.4.0
11
+
12
+ - Fix buttons order in job show view (https://github.com/ondrejbartas/sidekiq-cron/pull/302)
13
+ - Dark Mode support in UI (https://github.com/ondrejbartas/sidekiq-cron/pull/317/282)
14
+ - Remove invocation of deprecated Redis functionality (https://github.com/ondrejbartas/sidekiq-cron/pull/318)
15
+ - Internal code cleanup (https://github.com/ondrejbartas/sidekiq-cron/pull/317)
16
+ - Optimize gem size (https://github.com/ondrejbartas/sidekiq-cron/pull/322)
17
+ - Fix "Show All" button on cron jobs view with Sidekiq 6.3.0+ (https://github.com/ondrejbartas/sidekiq-cron/pull/321)
18
+ - Documentation updates
19
+
20
+ ## 1.3.0
21
+
22
+ - Add confirmation dialog when enquing jobs from UI
23
+ - Start to support Sidekiq `average_scheduled_poll_interval` option (replaced `poll_interval`)
24
+ - Enable to use latest fugit to parse cron notation alowing use of natural language (ie `"every 30 minutes"`)
25
+ - Fix deprecation warning for Redis 4.6.x
26
+ - Fix different response from Redis#exists in different Redis versions
27
+ - All PRs:
28
+ - https://github.com/ondrejbartas/sidekiq-cron/pull/275
29
+ - https://github.com/ondrejbartas/sidekiq-cron/pull/287
30
+ - https://github.com/ondrejbartas/sidekiq-cron/pull/309
31
+ - https://github.com/ondrejbartas/sidekiq-cron/pull/299
32
+ - https://github.com/ondrejbartas/sidekiq-cron/pull/314
33
+ - https://github.com/ondrejbartas/sidekiq-cron/pull/288
34
+
35
+ ## 1.2.0
36
+
37
+ - Updated readme
38
+ - Fix problem with Sidekiq::Launcher and requiring it when not needed
39
+ - Better patching of Sidekiq::Launcher
40
+ - Fixed Dockerfile
41
+
42
+ ## 1.1.0
43
+
44
+ - Updated readme
45
+ - Fix unit tests - changed argument error when getting invalid cron format
46
+ - When fallbacking old job enqueued time use `Time.parse` without format (so ruby can decide best method to parse it)
47
+ - Add option `date_as_argument` which will add to your job arguments on last place `Time.now.to_f` when it was eneuqued
48
+ - Add option `description` which will allow you to add notes to your jobs so in web view you can see it
49
+ - Fixed translations
50
+
51
+ ## 1.0.4
52
+
53
+ - Fix problem with upgrading to 1.0.x - parsing last enqued time didn't count with old time format stored in Redis
54
+
55
+ ## 1.0.0
56
+
57
+ - 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)
58
+ - Better working with Timezones
59
+ - Translations for JA, zh-CN
60
+ - Cron without timezone are considered as UTC, to add Timezone to cron use format `* * * * * Europe/Berlin`
61
+ - 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)
62
+
63
+ ## 0.6.0
64
+
65
+ - Set poller to check jobs every 30s by default (possible to override by `Sidekiq.options[:poll_interval] = 10`)
66
+ - Add group actions (enqueue, enable, disable, delete) all in web view
67
+ - Fix poller to enqueu all jobs in poll start time
68
+ - Add performance test for enqueue of jobs (10 000 jobs in less than 19s)
69
+ - Fix problem with default queue
70
+ - Remove redis-namespace from dependencies
71
+ - Update ruby versions in travis
72
+
73
+ ## 0.5.0
74
+
75
+ - Add Docker support
76
+ - All crons are now evaluated in UTC
77
+ - Fix rufus scheduler & timezones problems
78
+ - Add support for Sidekiq 4.2.1
79
+ - Fix readme
80
+ - Add Russian locale
81
+ - User Rack.env in tests
82
+ - Faster enqueue of jobs
83
+ - Permit to use ActiveJob::Base.queue_name_delimiter
84
+ - Fix problem with multiple times enqueue #84
85
+ - Fix problem with enqueue of unknown class
86
+
87
+ ## 0.4.0
88
+
89
+ - Enable to work with Sidekiq >= 4.0.0
90
+ - Fix readme
91
+
92
+ ## 0.3.1
93
+
94
+ - Add CSRF tags to forms so it will work with Sidekiq >= 3.4.2
95
+ - Remove Tilt dependency
96
+
97
+ ## 0.3.0
98
+
99
+ - Suport for Active Job
100
+ - Sidekiq cron web ui needs to be loaded by: require 'sidekiq/cron/web'
101
+ - Add load_from_hash! and load_from_array! which cleanup jobs before adding new ones
102
+
103
+ ## 0.1.1
104
+
105
+ - Add Web front-end with enabled/disable job, enqueue now, delete job
106
+ - Add cron poller - enqueue cron jobs
107
+ - 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