All Versions
45
Latest Version
Avg Release Cycle
152 days
Latest Release
1069 days ago
Changelog History
Page 5
Changelog History
Page 5
-
v2.0.3 Changes
April 16, 2010- ๐ Fix initialization for Rails 2.x
-
v2.0.2 Changes
April 08, 2010- ๐ท Fixes to Mongo Mapper backend [ "14be7a24":http://github.com/collectiveidea/delayed_job/commit/14be7a24, "dafd5f46":http://github.com/collectiveidea/delayed_job/commit/dafd5f46, "54d40913":http://github.com/collectiveidea/delayed_job/commit/54d40913 ]
- ๐ท DataMapper backend performance improvements [ "93833cce":http://github.com/collectiveidea/delayed_job/commit/93833cce, "e9b1573e":http://github.com/collectiveidea/delayed_job/commit/e9b1573e, "37a16d11":http://github.com/collectiveidea/delayed_job/commit/37a16d11, "803f2bfa":http://github.com/collectiveidea/delayed_job/commit/803f2bfa ]
- ๐ Fixed Delayed::Command to create tmp/pids directory [ "8ec8ca41":http://github.com/collectiveidea/delayed_job/commit/8ec8ca41 ]
- ๐ท Railtie to perform Rails 3 initialization [ "3e0fc41f":http://github.com/collectiveidea/delayed_job/commit/3e0fc41f ]
- Added on_permanent_failure hook [ "d2f14cd6":http://github.com/collectiveidea/delayed_job/commit/d2f14cd6 ]
-
v2.0.1 Changes
April 03, 2010- ๐ Bug fix for using ActiveRecord backend with daemon [martinbtt]
-
v2.0.0 Changes
April 03, 2010- ๐ Multiple backend support (See README for more details)
- โ Added MongoMapper backend [zbelzer, moneypools]
- โ Added DataMapper backend [lpetre]
- 0๏ธโฃ Reverse priority so the jobs table can be indexed. Lower numbers have higher priority. The default priority is 0, so increase it for jobs that are not important.
- โฑ Move most of the heavy lifting from Job to Worker (#work_off, #reschedule, #run, #min_priority, #max_priority, #max_run_time, #max_attempts, #worker_name) [albus522]
- โ Remove EvaledJob. Implement your own if you need this functionality.
- Only use Time.zone if it is set. Closes #20
- Fix for last_error recording when destroy_failed_jobs = false, max_attempts = 1
- ๐ท Implemented worker name_prefix to maintain dynamic nature of pid detection
- ๐ Some Rails 3 compatibility fixes [fredwu]
-
v1.8.5 Changes
March 15, 2010- ๐ Set auto_flushing=true on Rails logger to fix logging in production
- ๐ Fix error message when trying to send_later on a method that doesn't exist
- ๐ Don't use rails_env in capistrano if it's not set. closes #22
- ๐ท Delayed job should append to delayed_job.log not overwrite
- ๐ Version bump to 1.8.5
- ๐ fixing Time.now to be Time.zone.now if set to honor the app set local TimeZone
- ๐ท Replaced @Worker::SLEEP@, @Job::MAX_ATTEMPTS@, and @Job::MAX_RUN_TIME@ with class methods that can be overridden.