Skip to content

Latest commit

 

History

History
274 lines (164 loc) · 9.91 KB

CHANGELOG.md

File metadata and controls

274 lines (164 loc) · 9.91 KB

5.1.1 (2024-08-21)

5.1.0 (2024-04-07)

  • Explicit Rails 7.0 and 7.1 support #474

5.0.0 (2024-03-10)

  • Add primary key to audit enqueued table #456. Note, this requires a migration version "8" to be run which will lock and rewrite the que_scheduler_audit_enqueued table. Check how large your table is before running this migration.

4.6.0 (2024-03-10)

  • Add tests for ruby 3.2 and 3.3 and remove ruby 2.7 and AR 5 #453

4.4.0 (2022-09-24)

  • Que 2.x support #363

4.3.1 (2022-04-28)

  • Que 2.0 beta support and remove warning log lines in Que 1.4 #332

4.3.0 (2022-04-04)

  • Formalise que_scheduler_check_job_exists function change #334
  • Remove Ruby 2.5, Ruby 2.6 and Que 0.12.x support #334

4.2.2 (2022-02-23)

  • Add Ruby 2.5 functionality and more tests #320
  • Add support for Ruby 3.0 #317
  • Ensure migration error message is reported correctly under new versions of Que #316
  • Check ActiveJob is defined #315

4.2.1 (2022-02-02)

  • Add support for que 1.0.0 #308

4.2.0 (2022-01-06)

  • Move to Github actions #283
  • Remove support for Ruby 2.5 #281
  • Add tests for Ruby 2.7 #272
  • Add support for que 1.0.0.beta5 #303

4.1.0 (2021-01-31)

  • Check for row count option using String and Symbols #236
  • Handle multiple key types #237
  • Remove Postgres 9.4 support #238
  • Upgrade Rubocop to 1.x and remove Ruby 2.4 support #239
  • Remove Rails 4 support #240
  • Add broad spectrum integration tests #242

4.0.3 (2021-01-03)

  • Add time_zone configuration option to simplify running outside of Rails #229

4.0.2 (2020-11-29)

  • Add method to reenqueue scheduler in squashed migrations #226

4.0.1 (2020-11-29)

  • Move setting schedule hash directly to config block #225

4.0.0 (2020-11-29)

  • Enforce single scheduler job existence at the DB level with triggers and an index #224

3.4.3 (2020-10-28)

  • Allow programmatically specifying schedule #220

3.4.2 (2020-09-17)

  • Fix NoMethodError in a non-Rails app #213

3.4.1 (2020-07-11)

  • Handle jobs using hashes with indifferent access #205, #206

3.4.0 (2020-06-07)

  • Add built in QueSchedulerAuditClearDownJob #193
  • Add support for hash arguments or a nil argument #192
  • Drop redundant index (thanks @krzyzak) #188
  • Include new support for queue names in Rails 6 #180
  • Remove backports gem #170

3.3.0 (2020-04-04)

  • General bundle update of test gems #154
  • Support ActiveJob #164
  • Support Rubocop RSpec #165

3.2.8 (2020-02-09)

  • Check for synchronous que #134
  • Ensure reliable backoff semantics for Que 1.0 #135
  • Add support for Que 1.0.0.beta4 #151

3.2.7 (2019-10-19)

  • Add support for Que 1.0.0.beta3 #18

3.2.6 (2019-10-19)

  • Add support for Rails 6 #117

3.2.5 (2019-07-26)

  • Add facade to handle Que.execute differences between versions #101
  • Add facade to handle default queue differences between versions #103

3.2.4 (2019-07-14)

  • Add re-enqueue checks #76
  • Introduction of initial que 1.0 handling code #95
  • Add tests for Que 0.14 #97

3.2.3 (2019-03-06)

  • Namespace support modules #54
  • Add Ruby 2.6 tests #58
  • Remove Ruby 2.2 tests #58
  • Bump rubocop from 0.62.0 to 0.63.0 #63
  • Update Fugit to 1.1.8 #62
  • Switch from Travis to Gitlab #64

3.2.2 (2018-08-01)

Commits

  • Add direct access to the schedule for spec tests. #40
  • Do nothing if migrate! is called on a test database. #39

3.2.1 (2018-07-01)

Commits

  • Add support for ruby 2.5
  • Drop support for ruby 2.1 and rails 3.x
  • Improve DB migration state detection and error reporting

3.1.1 (2018-06-05)

Commits

  • Remove railtie #30

3.1.0 (2018-06-01)

Commits

  • Addition of a gem config initializer #29
  • Allow configuration of the transaction block adapter #29
  • Handling middle overriding enqueue that prevents a job from being enqueued #28

3.0.0 (2018-05-23)

Commits

  • Use bigint for audit logs #22
  • Store enqueued job_id in the audit table #23
  • Store enqueued job run_at time in audit table
  • Store actual DB priority value of enqueued job (ie, default priority value instead of NULL if none provided)
  • Store actual DB queue value of enqueued job (ie, '' instead of NULL if none provided)

2.1.2 (2018-05-18)

  • Remove use of ActiveRecord

2.1.1 (2018-05-18)

  • Use more exact json cast when migrating
  • Adding more code quality tools

2.1.0 (2018-05-02)

  • Split the audit table into job execution event and multiple enqueued job rows

2.0.2 (2018-04-29)

  • Moved pg gem to development dependencies

2.0.0 (2018-04-29)

  • Added que_scheduler_audit table
  • Added managed migrations
  • Add gemspec metadata
  • Code cleanup
  • Major version change
  • Use a real postgres DB in specs

1.2.0 (2018-03-29)

  • Upgraded fugit to allow timezones in cron lines

1.1.0 (2018-03-24)

  • Switched to use DB time to find "now" so as to match que queries
  • Added more tests for various ways of supplying args

1.0.3 (2018-03-15)

  • Enforced a minimum version of et-orbi to supply #to_local_time methods. Thanks to @jish.
  • Clarified config syntax

1.0.2 (2018-01-15)

  • Added ORM adapter layer to allow use of Sequel

1.0.1 (2018-01-06)

  • Refactoring and code cleanup

1.0.0 (2017-12-19)

  • Remove legacy config keys

0.10.1 (2017-12-03)

  • Added schedule_type config key

0.9.1 (2017-12-03)

  • Added a ::Rails::Engine to ensure the schedule config is validated at worker start time

0.8.1 (2017-11-18)

  • Scheduler config check for valid Que::Job subclasses

0.8.0 (2017-11-11)

  • Added multiple scheduler job detection
  • Added more tests

0.7.0 (2017-11-05)

  • Update dependencies
  • Added more tests
  • Add additional checks for worker clock skew

0.6.0 (2017-11-05)

  • Formalised all internal args as Hashies
  • Enforced correct yml values

0.5.0 (2017-11-05)

  • Refactored to take a hash as SchedulerJob args
  • Formalised SchedulerJob args as a Hashie
  • Formalised using ISO8601 everywhere

0.4.0 (2017-10-27)

  • Added CI Travis builds

0.3.0 (2017-10-27)

  • Added more tests and refactored

0.2.0 (2017-10-27)

  • Added README.md

0.1.0 (2017-10-27)

  • First release.