- Allow overridden worker to set a queue name
- [#190] Respect Carrierwave's enable_processing flag if set to false [jherdman]
- [#216] Fix for NoMethodError: undefined method `read' for nil:NilClass [kntmrkm]
- [#179] Set column_processing to false instead of nil [mockdeep]
- [#175] SuckerPunch v1.0 support (no longer support < 1.0). [janko-m]
- [#176] Check if record exists before running backgrounder [gdott9]
- [#169] Correctly remove files on update if marked for deletion [sunny]
- [#123] Fail silently when record not found in worker. [DouweM]
- [#141] Fix naming collisions of support module by namespacing.
- [#119] Add support for SuckerPunch [rewritten].
- [#115] column_remove! should not trigger a background job
- [#112] Raise a NoMethodError when using backend= instead of silent failure.
- [Breaking Change] Require configure block to be set in an initializer removing autodetect backend.
- [#108] Remove the need to set an order in the Gemfile when using sidekiq [matthewsmart].
- [Revert #108] This is a breaking change and will be released in 0.2.0.
- [#109] Fix issue where setting Carrierwave.cache_dir to a full path would raise an exception [Sastopher].
- CarrierWave::Workers::ProcessAsset now uses #update_attribute when setting [column]_processing.
- [#104] Change the Sidekiq integration to use client_push [petergoldstein]
- [#103] Fix determine_backend behavior so that it doesn't throw an exception [petergoldstein].
- Add a rails generator to generate the config file.
rails g carrierwave_backgrounder:install
- Check [column]_cache to make sure we are processing when a form fails and [column]_cache is used.
- Allow passing of all options to sidekiq in config file.
- Revert where sidekiq was broken due to Sidekiq::Worker not properly being included.
- Add support to pass options to backends allowing queue names to be set in the initializer.
- Make threadsafe. [gitt]
- Add support to immediately process jobs if :immediate is set in config backend. [Antiarchitect]
- Girl Friday incorrectly referenses class #92
- Add documentation for testing with rspec #84.