- add confirmation dialog when enquing jobs from UI
- updated readme
- fix problem with Sidekiq::Launcher and requiring it when not needed
- better patching of Sidekiq::Launcher
- fixed Dockerfile
- updated readme
- fix unit tests - changed argument error when getting invalid cron format
- when fallbacking old job enqueued time use
Time.parse
šwithout format (so ruby can decide best method to parse it) - add option
date_as_argument
which will add to your job arguments on last placeTime.now.to_f
when it was eneuqued - add option
description
which will allow you to add notes to your jobs so in web view you can see it - fixed translations
- fix problem with upgrading to 1.0.x - parsing last enqued time didn't count with old time format stored in redis
- use fugit instead of rufus-scheduler - API of cron didn't change (rufus scheduler is using fugit)
- better working with Timezones
- translations for JA, zh-CN
- cron without timezone are considered as UTC, to add Timezone to cron use format
* * * * * Europe/Berlin
- 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)
- set poller to check jobs every 30s by default (possible to override by
Sidekiq.options[:poll_interval] = 10
) - add group actions (enqueue, enable, disable, delete) all in web view
- fix poller to enqueu all jobs in poll start time
- add performance test for enqueue of jobs (10 000 jobs in less than 19s)
- fix problem with default queue
- remove redis-namespace from dependencies
- update ruby versions in travis
- add docker support
- all crons are now evaluated in UTC
- fix rufus scheduler & timezones problems
- add support for sidekiq 4.2.1
- fix readme
- add Russian locale
- user Rack.env in tests
- faster enque of jobs
- permit to use ActiveJob::Base.queue_name_delimiter
- fix problem with multiple times enque #84
- fix problem with enque of unknown class
- enable to work with sidekiq >= 4.0.0
- fix readme
- add CSRF tags to forms so it will work with sidekiq >= 3.4.2
- remove tilt dependency
- suport for Active Job
- sidekiq cron web ui needs to be loaded by: require 'sidekiq/cron/web'
- add load_from_hash! and load_from_array! which cleanup jobs before adding new ones
- add Web fontend with enabled/disable job, unqueue now, delete job
- add cron poller - enqueu cro jobs
- add cron job - save all needed data to redis