Skip to content

Latest commit

 

History

History
161 lines (116 loc) · 7.25 KB

CHANGELOG.md

File metadata and controls

161 lines (116 loc) · 7.25 KB

Changelog

All notable changes to this project will be documented in this file.

1.12.0

  • Remove Sidekiq.server? check from schedule loader (#436)
  • Parse arguments on args= method (#442)
  • Only check out a Redis connection if necessary (#438)

1.11.0

  • Differentiates b/w "schedule" vs "dynamic" jobs (#431)
  • Clears scheduled jobs upon schedule load (#431)
  • Reduce gem size by excluding test files (#414)

1.10.1

  • Use hset instead of deprecated hmset (#410)

1.10.0

  • Remove EOL Ruby 2.6 support (#399)
  • Add a logo for the project! (#402)
  • Added support for ActiveRecord serialize/deserialize using GlobalID (#395)
  • Allow for keyword args (embedded: true) in Poller (#398)
  • Make last_enqueue_time be always an instance of Time (#354)
  • Fix argument error problem update from 1.6.0 to newer (#392)
  • Clear old jobs while loading the jobs from schedule via the schedule loader (#405)

1.9.1

  • Always enqueue via Active Job interface when defined in cron job config (#381)
  • Fix schedule.yml YAML load errors on Ruby 3.1 (#386)
  • Require Fugit v1.8 to refactor internals (#385)

1.9.0

  • Sidekiq v7 support (#369)
  • Add support for ERB templates in the auto schedule loader (#373)

1.8.0

  • Fix deprecation warnings with redis-rb v4.8.0 (#356)
  • Fix poller affecting Sidekiq scheduled set poller (#359)
  • Fix default polling interval (#362)
  • Add italian locale (#367)
  • Allow disabling of cron polling (#368)

1.7.0

  • Enable to use cron notation in natural language (ie every 30 minutes) (#312)
  • Fix date_as_argument feature to add timestamp argument at every cron job execution (#329)
  • Introduce Sidekiq::Options to centralize reading/writing options from different Sidekiq versions (#341)
  • Make auto schedule loading compatible with Array format (#345)

1.6.0

  • Adds support for auto-loading the config/schedule.yml file (#337)
  • Fix Sidekiq.options deprecation warning (#338)

1.5.1

  • Fixes an issue that prevented the gem to work in previous Sidekiq versions (#335)

1.5.0

  • Integrate Sidekiq v6.5 breaking changes (#331)
  • Add portuguese translations (#332)

1.4.0

  • Fix buttons order in job show view (#302)
  • Dark Mode support in UI (#282)
  • Remove invocation of deprecated Redis functionality (#318)
  • Internal code cleanup (#317)
  • Optimize gem size (#322)
  • Fix "Show All" button on cron jobs view with Sidekiq 6.3.0+ (#321)
  • Documentation updates

1.3.0

  • Add confirmation dialog when enquing jobs from UI
  • Start to support Sidekiq average_scheduled_poll_interval option (replaced poll_interval)
  • Fix deprecation warning for Redis 4.6.x
  • Fix different response from Redis#exists in different Redis versions
  • All PRs:

1.2.0

  • Updated readme
  • Fix problem with Sidekiq::Launcher and requiring it when not needed
  • Better patching of Sidekiq::Launcher
  • Fixed Dockerfile

1.1.0

  • 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 place Time.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

1.0.4

  • Fix problem with upgrading to 1.0.x - parsing last enqued time didn't count with old time format stored in Redis

1.0.0

  • 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)

0.6.0

  • 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

0.5.0

  • 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 enqueue of jobs
  • Permit to use ActiveJob::Base.queue_name_delimiter
  • Fix problem with multiple times enqueue #84
  • Fix problem with enqueue of unknown class

0.4.0

  • Enable to work with Sidekiq >= 4.0.0
  • Fix readme

0.3.1

  • Add CSRF tags to forms so it will work with Sidekiq >= 3.4.2
  • Remove Tilt dependency

0.3.0

  • Support 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