shoryuken 6.2.1 → 7.0.0.alpha2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/.devcontainer/base.Dockerfile +1 -1
 - data/.github/workflows/push.yml +36 -0
 - data/.github/workflows/specs.yml +40 -30
 - data/.github/workflows/verify-action-pins.yml +16 -0
 - data/.gitignore +2 -1
 - data/.rspec +2 -1
 - data/.rubocop.yml +6 -1
 - data/.ruby-version +1 -0
 - data/Appraisals +8 -27
 - data/CHANGELOG.md +213 -139
 - data/Gemfile +2 -7
 - data/README.md +14 -26
 - data/Rakefile +2 -0
 - data/bin/cli/base.rb +1 -2
 - data/bin/cli/sqs.rb +13 -5
 - data/bin/shoryuken +2 -1
 - data/docker-compose.yml +22 -0
 - data/gemfiles/rails_7_0.gemfile +10 -13
 - data/gemfiles/rails_7_1.gemfile +19 -0
 - data/gemfiles/rails_7_2.gemfile +19 -0
 - data/gemfiles/rails_8_0.gemfile +19 -0
 - data/lib/shoryuken/body_parser.rb +3 -1
 - data/lib/shoryuken/client.rb +2 -0
 - data/lib/shoryuken/default_exception_handler.rb +2 -0
 - data/lib/shoryuken/default_worker_registry.rb +11 -11
 - data/lib/shoryuken/environment_loader.rb +6 -6
 - data/lib/shoryuken/extensions/active_job_adapter.rb +13 -6
 - data/lib/shoryuken/extensions/active_job_concurrent_send_adapter.rb +5 -5
 - data/lib/shoryuken/extensions/active_job_extensions.rb +2 -0
 - data/lib/shoryuken/fetcher.rb +4 -2
 - data/lib/shoryuken/helpers/atomic_boolean.rb +44 -0
 - data/lib/shoryuken/helpers/atomic_counter.rb +104 -0
 - data/lib/shoryuken/helpers/atomic_hash.rb +182 -0
 - data/lib/shoryuken/helpers/hash_utils.rb +56 -0
 - data/lib/shoryuken/helpers/string_utils.rb +65 -0
 - data/lib/shoryuken/inline_message.rb +22 -0
 - data/lib/shoryuken/launcher.rb +2 -0
 - data/lib/shoryuken/logging.rb +19 -5
 - data/lib/shoryuken/manager.rb +15 -5
 - data/lib/shoryuken/message.rb +2 -0
 - data/lib/shoryuken/middleware/chain.rb +2 -0
 - data/lib/shoryuken/middleware/server/active_record.rb +2 -0
 - data/lib/shoryuken/middleware/server/auto_delete.rb +2 -0
 - data/lib/shoryuken/middleware/server/auto_extend_visibility.rb +10 -10
 - data/lib/shoryuken/middleware/server/exponential_backoff_retry.rb +5 -3
 - data/lib/shoryuken/middleware/server/timing.rb +2 -0
 - data/lib/shoryuken/options.rb +14 -5
 - data/lib/shoryuken/polling/base_strategy.rb +126 -0
 - data/lib/shoryuken/polling/queue_configuration.rb +103 -0
 - data/lib/shoryuken/polling/strict_priority.rb +2 -0
 - data/lib/shoryuken/polling/weighted_round_robin.rb +2 -0
 - data/lib/shoryuken/processor.rb +5 -2
 - data/lib/shoryuken/queue.rb +6 -4
 - data/lib/shoryuken/runner.rb +9 -12
 - data/lib/shoryuken/util.rb +6 -6
 - data/lib/shoryuken/version.rb +3 -1
 - data/lib/shoryuken/worker/default_executor.rb +2 -0
 - data/lib/shoryuken/worker/inline_executor.rb +9 -2
 - data/lib/shoryuken/worker.rb +2 -0
 - data/lib/shoryuken/worker_registry.rb +2 -0
 - data/lib/shoryuken.rb +11 -34
 - data/renovate.json +16 -0
 - data/shoryuken.gemspec +7 -4
 - data/spec/integration/launcher_spec.rb +3 -4
 - data/spec/shared_examples_for_active_job.rb +13 -8
 - data/spec/shoryuken/body_parser_spec.rb +2 -4
 - data/spec/shoryuken/client_spec.rb +1 -1
 - data/spec/shoryuken/default_exception_handler_spec.rb +9 -10
 - data/spec/shoryuken/default_worker_registry_spec.rb +1 -2
 - data/spec/shoryuken/environment_loader_spec.rb +9 -8
 - data/spec/shoryuken/extensions/active_job_adapter_spec.rb +2 -1
 - data/spec/shoryuken/extensions/active_job_base_spec.rb +2 -1
 - data/spec/shoryuken/extensions/active_job_concurrent_send_adapter_spec.rb +2 -1
 - data/spec/shoryuken/extensions/active_job_wrapper_spec.rb +2 -1
 - data/spec/shoryuken/fetcher_spec.rb +23 -26
 - data/spec/shoryuken/helpers/atomic_boolean_spec.rb +196 -0
 - data/spec/shoryuken/helpers/atomic_counter_spec.rb +177 -0
 - data/spec/shoryuken/helpers/atomic_hash_spec.rb +307 -0
 - data/spec/shoryuken/helpers/hash_utils_spec.rb +145 -0
 - data/spec/shoryuken/helpers/string_utils_spec.rb +124 -0
 - data/spec/shoryuken/helpers_integration_spec.rb +96 -0
 - data/spec/shoryuken/inline_message_spec.rb +196 -0
 - data/spec/shoryuken/launcher_spec.rb +1 -2
 - data/spec/shoryuken/manager_spec.rb +1 -2
 - data/spec/shoryuken/middleware/chain_spec.rb +1 -1
 - data/spec/shoryuken/middleware/server/auto_delete_spec.rb +1 -1
 - data/spec/shoryuken/middleware/server/auto_extend_visibility_spec.rb +1 -1
 - data/spec/shoryuken/middleware/server/exponential_backoff_retry_spec.rb +1 -1
 - data/spec/shoryuken/middleware/server/timing_spec.rb +1 -1
 - data/spec/shoryuken/options_spec.rb +4 -4
 - data/spec/shoryuken/polling/base_strategy_spec.rb +280 -0
 - data/spec/shoryuken/polling/queue_configuration_spec.rb +195 -0
 - data/spec/shoryuken/polling/strict_priority_spec.rb +1 -1
 - data/spec/shoryuken/polling/weighted_round_robin_spec.rb +1 -1
 - data/spec/shoryuken/processor_spec.rb +1 -1
 - data/spec/shoryuken/queue_spec.rb +2 -3
 - data/spec/shoryuken/runner_spec.rb +1 -3
 - data/spec/shoryuken/util_spec.rb +1 -1
 - data/spec/shoryuken/worker/default_executor_spec.rb +1 -1
 - data/spec/shoryuken/worker/inline_executor_spec.rb +57 -1
 - data/spec/shoryuken/worker_spec.rb +15 -11
 - data/spec/shoryuken_spec.rb +1 -1
 - data/spec/spec_helper.rb +19 -4
 - metadata +79 -35
 - data/.codeclimate.yml +0 -20
 - data/.github/FUNDING.yml +0 -12
 - data/.github/dependabot.yml +0 -6
 - data/.github/workflows/stale.yml +0 -20
 - data/.reek.yml +0 -5
 - data/gemfiles/aws_sdk_core_2.gemfile +0 -21
 - data/gemfiles/rails_4_2.gemfile +0 -20
 - data/gemfiles/rails_5_2.gemfile +0 -21
 - data/gemfiles/rails_6_0.gemfile +0 -21
 - data/gemfiles/rails_6_1.gemfile +0 -21
 - data/lib/shoryuken/core_ext.rb +0 -69
 - data/lib/shoryuken/polling/base.rb +0 -67
 - data/shoryuken.jpg +0 -0
 - data/spec/shoryuken/core_ext_spec.rb +0 -40
 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,3 +1,77 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ## [7.0.0] - Unreleased
         
     | 
| 
      
 2 
     | 
    
         
            +
            - Enhancement: Replace Concurrent::AtomicFixnum with pure Ruby AtomicCounter
         
     | 
| 
      
 3 
     | 
    
         
            +
              - Removes external dependency on concurrent-ruby for atomic fixnum operations
         
     | 
| 
      
 4 
     | 
    
         
            +
              - Introduces Shoryuken::Helpers::AtomicCounter as a thread-safe alternative using Mutex
         
     | 
| 
      
 5 
     | 
    
         
            +
              - Reduces gem footprint while maintaining full functionality
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            - Enhancement: Replace Concurrent::AtomicBoolean with pure Ruby AtomicBoolean
         
     | 
| 
      
 8 
     | 
    
         
            +
              - Removes external dependency on concurrent-ruby for atomic boolean operations
         
     | 
| 
      
 9 
     | 
    
         
            +
              - Introduces Shoryuken::Helpers::AtomicBoolean extending AtomicCounter
         
     | 
| 
      
 10 
     | 
    
         
            +
              - Further reduces gem footprint while maintaining full functionality
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            - Enhancement: Replace Concurrent::Hash with pure Ruby AtomicHash
         
     | 
| 
      
 13 
     | 
    
         
            +
              - Removes external dependency on concurrent-ruby for hash operations
         
     | 
| 
      
 14 
     | 
    
         
            +
              - Introduces Shoryuken::Helpers::AtomicHash with mutex-protected writes and concurrent reads
         
     | 
| 
      
 15 
     | 
    
         
            +
              - Ensures JRuby compatibility while maintaining high performance for read-heavy workloads
         
     | 
| 
      
 16 
     | 
    
         
            +
              - [#866](https://github.com/ruby-shoryuken/shoryuken/pull/866)
         
     | 
| 
      
 17 
     | 
    
         
            +
              - [#867](https://github.com/ruby-shoryuken/shoryuken/pull/867)
         
     | 
| 
      
 18 
     | 
    
         
            +
              - [#868](https://github.com/ruby-shoryuken/shoryuken/pull/868)
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            - Enhancement: Replace core class extensions with helper utilities
         
     | 
| 
      
 21 
     | 
    
         
            +
              - Removes all core Ruby class monkey-patching (Hash and String extensions)
         
     | 
| 
      
 22 
     | 
    
         
            +
              - Introduces Shoryuken::Helpers::HashUtils.deep_symbolize_keys for configuration processing
         
     | 
| 
      
 23 
     | 
    
         
            +
              - Introduces Shoryuken::Helpers::StringUtils.constantize for dynamic class loading
         
     | 
| 
      
 24 
     | 
    
         
            +
              - Eliminates unnecessary ActiveSupport dependencies
         
     | 
| 
      
 25 
     | 
    
         
            +
              - Completely removes lib/shoryuken/core_ext.rb file
         
     | 
| 
      
 26 
     | 
    
         
            +
              - Maintains all existing functionality while following Ruby best practices
         
     | 
| 
      
 27 
     | 
    
         
            +
              - Improves code maintainability and reduces global namespace pollution
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            - Enhancement: Implement Zeitwerk autoloading
         
     | 
| 
      
 30 
     | 
    
         
            +
              - Replaces manual require statements with Zeitwerk-based autoloading
         
     | 
| 
      
 31 
     | 
    
         
            +
              - Adds zeitwerk dependency for modern Ruby module loading
         
     | 
| 
      
 32 
     | 
    
         
            +
              - Splits polling classes into properly named files (BaseStrategy, QueueConfiguration)
         
     | 
| 
      
 33 
     | 
    
         
            +
              - Reduces startup overhead and improves code organization
         
     | 
| 
      
 34 
     | 
    
         
            +
              - Maintains backward compatibility while modernizing the codebase
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
            - Enhancement: Increase `SendMessageBatch` to 1MB to align with AWS
         
     | 
| 
      
 37 
     | 
    
         
            +
              - [#864](https://github.com/ruby-shoryuken/shoryuken/pull/864)
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
            - Enhancement: Replace OpenStruct usage with Struct for inline execution
         
     | 
| 
      
 40 
     | 
    
         
            +
              - [#860](https://github.com/ruby-shoryuken/shoryuken/pull/860)
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
            - Enhancement: Configure server side logging (BenMorganMY)
         
     | 
| 
      
 43 
     | 
    
         
            +
              - [#844](https://github.com/ruby-shoryuken/shoryuken/pull/844)
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
            - Enhancement: Use -1 as thread priority
         
     | 
| 
      
 46 
     | 
    
         
            +
              - [#825](https://github.com/ruby-shoryuken/shoryuken/pull/825)
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
            - Enhancement: Add Support for message_attributes to InlineExecutor
         
     | 
| 
      
 49 
     | 
    
         
            +
              - [#835](https://github.com/ruby-shoryuken/shoryuken/pull/835)
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
            - Enhancement: Introduce trusted publishing
         
     | 
| 
      
 52 
     | 
    
         
            +
              - [#840](https://github.com/ruby-shoryuken/shoryuken/pull/840)
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
            - Enhancement: Add enqueue_after_transaction_commit? for Rails 7.2 compatibility
         
     | 
| 
      
 55 
     | 
    
         
            +
              - [#777](https://github.com/ruby-shoryuken/shoryuken/pull/777)
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
            - Enhancement: Bring Ruby 3.4 into the CI
         
     | 
| 
      
 58 
     | 
    
         
            +
              - [#805](https://github.com/ruby-shoryuken/shoryuken/pull/805)
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
            - Fix integration tests by updating aws-sdk-sqs and replacing moto with LocalStack
         
     | 
| 
      
 61 
     | 
    
         
            +
              - [#782](https://github.com/ruby-shoryuken/shoryuken/pull/782)
         
     | 
| 
      
 62 
     | 
    
         
            +
              - [#783](https://github.com/ruby-shoryuken/shoryuken/pull/783)
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
            - Breaking: Remove support of Ruby versions older than 3.1
         
     | 
| 
      
 65 
     | 
    
         
            +
              - [#783](https://github.com/ruby-shoryuken/shoryuken/pull/783)
         
     | 
| 
      
 66 
     | 
    
         
            +
              - [#850](https://github.com/ruby-shoryuken/shoryuken/pull/850)
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
            - Breaking: Remove support of Rails versions older than 7.0
         
     | 
| 
      
 69 
     | 
    
         
            +
              - [#783](https://github.com/ruby-shoryuken/shoryuken/pull/783)
         
     | 
| 
      
 70 
     | 
    
         
            +
              - [#850](https://github.com/ruby-shoryuken/shoryuken/pull/850)
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
            - Breaking: Require `aws-sdk-sqs` `>=` `1.66`:
         
     | 
| 
      
 73 
     | 
    
         
            +
              - [#783](https://github.com/ruby-shoryuken/shoryuken/pull/783)
         
     | 
| 
      
 74 
     | 
    
         
            +
             
     | 
| 
       1 
75 
     | 
    
         
             
            ## [v6.2.1] - 2024-02-09
         
     | 
| 
       2 
76 
     | 
    
         | 
| 
       3 
77 
     | 
    
         
             
            - Bugfix: Not able to use extended polling strategy (#759)
         
     | 
| 
         @@ -108,590 +182,590 @@ 
     | 
|
| 
       108 
182 
     | 
    
         
             
            ## [v5.2.0] - 2021-02-26
         
     | 
| 
       109 
183 
     | 
    
         | 
| 
       110 
184 
     | 
    
         
             
            - Set `executions` correctly for ActiveJob jobs
         
     | 
| 
       111 
     | 
    
         
            -
              - [#657](https://github.com/ 
     | 
| 
      
 185 
     | 
    
         
            +
              - [#657](https://github.com/ruby-shoryuken/shoryuken/pull/657)
         
     | 
| 
       112 
186 
     | 
    
         | 
| 
       113 
187 
     | 
    
         
             
            ## [v5.1.1] - 2021-02-10
         
     | 
| 
       114 
188 
     | 
    
         | 
| 
       115 
189 
     | 
    
         
             
            - Fix regression in Ruby 3.0 introduced in Shoryuken 5.1.0, where enqueueing jobs with ActiveJob to workers that used keyword arguments would fail
         
     | 
| 
       116 
     | 
    
         
            -
              - [#654](https://github.com/ 
     | 
| 
      
 190 
     | 
    
         
            +
              - [#654](https://github.com/ruby-shoryuken/shoryuken/pull/654)
         
     | 
| 
       117 
191 
     | 
    
         | 
| 
       118 
192 
     | 
    
         
             
            ## [v5.1.0] - 2021-02-06
         
     | 
| 
       119 
193 
     | 
    
         | 
| 
       120 
194 
     | 
    
         
             
            - Add support for specifying SQS SendMessage parameters with ActiveJob `.set`
         
     | 
| 
       121 
195 
     | 
    
         | 
| 
       122 
     | 
    
         
            -
              - [#635](https://github.com/ 
     | 
| 
       123 
     | 
    
         
            -
              - [#648](https://github.com/ 
     | 
| 
       124 
     | 
    
         
            -
              - [#651](https://github.com/ 
     | 
| 
      
 196 
     | 
    
         
            +
              - [#635](https://github.com/ruby-shoryuken/shoryuken/pull/635)
         
     | 
| 
      
 197 
     | 
    
         
            +
              - [#648](https://github.com/ruby-shoryuken/shoryuken/pull/648)
         
     | 
| 
      
 198 
     | 
    
         
            +
              - [#651](https://github.com/ruby-shoryuken/shoryuken/pull/651)
         
     | 
| 
       125 
199 
     | 
    
         | 
| 
       126 
200 
     | 
    
         
             
            - Unpause FIFO queues on worker completion
         
     | 
| 
       127 
201 
     | 
    
         | 
| 
       128 
     | 
    
         
            -
              - [#644](https://github.com/ 
     | 
| 
      
 202 
     | 
    
         
            +
              - [#644](https://github.com/ruby-shoryuken/shoryuken/pull/644)
         
     | 
| 
       129 
203 
     | 
    
         | 
| 
       130 
204 
     | 
    
         
             
            - Add multiple versions of Rails to test matrix
         
     | 
| 
       131 
205 
     | 
    
         | 
| 
       132 
     | 
    
         
            -
              - [#647](https://github.com/ 
     | 
| 
      
 206 
     | 
    
         
            +
              - [#647](https://github.com/ruby-shoryuken/shoryuken/pull/647)
         
     | 
| 
       133 
207 
     | 
    
         | 
| 
       134 
208 
     | 
    
         
             
            - Migrate from Travis CI to Github Actions
         
     | 
| 
       135 
     | 
    
         
            -
              - [#649](https://github.com/ 
     | 
| 
       136 
     | 
    
         
            -
              - [#650](https://github.com/ 
     | 
| 
       137 
     | 
    
         
            -
              - [#652](https://github.com/ 
     | 
| 
      
 209 
     | 
    
         
            +
              - [#649](https://github.com/ruby-shoryuken/shoryuken/pull/649)
         
     | 
| 
      
 210 
     | 
    
         
            +
              - [#650](https://github.com/ruby-shoryuken/shoryuken/pull/650)
         
     | 
| 
      
 211 
     | 
    
         
            +
              - [#652](https://github.com/ruby-shoryuken/shoryuken/pull/652)
         
     | 
| 
       138 
212 
     | 
    
         | 
| 
       139 
213 
     | 
    
         
             
            ## [v5.0.6] - 2020-12-30
         
     | 
| 
       140 
214 
     | 
    
         | 
| 
       141 
215 
     | 
    
         
             
            - Load ShoryukenConcurrentSendAdapter when loading Rails
         
     | 
| 
       142 
     | 
    
         
            -
              - [#642](https://github.com/ 
     | 
| 
      
 216 
     | 
    
         
            +
              - [#642](https://github.com/ruby-shoryuken/shoryuken/pull/642)
         
     | 
| 
       143 
217 
     | 
    
         | 
| 
       144 
218 
     | 
    
         
             
            ## [v5.0.5] - 2020-06-07
         
     | 
| 
       145 
219 
     | 
    
         | 
| 
       146 
220 
     | 
    
         
             
            - Add ability to configure queue by ARN
         
     | 
| 
       147 
     | 
    
         
            -
              - [#603](https://github.com/ 
     | 
| 
      
 221 
     | 
    
         
            +
              - [#603](https://github.com/ruby-shoryuken/shoryuken/pull/603)
         
     | 
| 
       148 
222 
     | 
    
         | 
| 
       149 
223 
     | 
    
         
             
            ## [v5.0.4] - 2020-02-20
         
     | 
| 
       150 
224 
     | 
    
         | 
| 
       151 
225 
     | 
    
         
             
            - Add endpoint option to SQS CLI
         
     | 
| 
       152 
     | 
    
         
            -
              - [#595](https://github.com/ 
     | 
| 
      
 226 
     | 
    
         
            +
              - [#595](https://github.com/ruby-shoryuken/shoryuken/pull/595)
         
     | 
| 
       153 
227 
     | 
    
         | 
| 
       154 
228 
     | 
    
         
             
            ## [v5.0.3] - 2019-11-30
         
     | 
| 
       155 
229 
     | 
    
         | 
| 
       156 
230 
     | 
    
         
             
            - Add support for sending messages asynchronous with Active Job using `shoryuken_concurrent_send`
         
     | 
| 
       157 
     | 
    
         
            -
              - [#589](https://github.com/ 
     | 
| 
       158 
     | 
    
         
            -
              - [#588](https://github.com/ 
     | 
| 
      
 231 
     | 
    
         
            +
              - [#589](https://github.com/ruby-shoryuken/shoryuken/pull/589)
         
     | 
| 
      
 232 
     | 
    
         
            +
              - [#588](https://github.com/ruby-shoryuken/shoryuken/pull/588)
         
     | 
| 
       159 
233 
     | 
    
         | 
| 
       160 
234 
     | 
    
         
             
            ## [v5.0.2] - 2019-11-02
         
     | 
| 
       161 
235 
     | 
    
         | 
| 
       162 
236 
     | 
    
         
             
            - Fix Queue order is reversed if passed through CLI
         
     | 
| 
       163 
     | 
    
         
            -
              - [#571](https://github.com/ 
     | 
| 
      
 237 
     | 
    
         
            +
              - [#571](https://github.com/ruby-shoryuken/shoryuken/pull/583)
         
     | 
| 
       164 
238 
     | 
    
         | 
| 
       165 
239 
     | 
    
         
             
            ## [v5.0.1] - 2019-06-19
         
     | 
| 
       166 
240 
     | 
    
         | 
| 
       167 
241 
     | 
    
         
             
            - Add back attr_accessor for `stop_callback`
         
     | 
| 
       168 
     | 
    
         
            -
              - [#571](https://github.com/ 
     | 
| 
      
 242 
     | 
    
         
            +
              - [#571](https://github.com/ruby-shoryuken/shoryuken/pull/571)
         
     | 
| 
       169 
243 
     | 
    
         | 
| 
       170 
244 
     | 
    
         
             
            ## [v5.0.0] - 2019-06-18
         
     | 
| 
       171 
245 
     | 
    
         | 
| 
       172 
246 
     | 
    
         
             
            - Fix bug where empty queues were not paused in batch processing mode
         
     | 
| 
       173 
247 
     | 
    
         | 
| 
       174 
     | 
    
         
            -
              - [#569](https://github.com/ 
     | 
| 
      
 248 
     | 
    
         
            +
              - [#569](https://github.com/ruby-shoryuken/shoryuken/pull/569)
         
     | 
| 
       175 
249 
     | 
    
         | 
| 
       176 
250 
     | 
    
         
             
            - Preserve batch limit when receiving messages from a FIFO queue
         
     | 
| 
       177 
251 
     | 
    
         | 
| 
       178 
     | 
    
         
            -
              - [#563](https://github.com/ 
     | 
| 
      
 252 
     | 
    
         
            +
              - [#563](https://github.com/ruby-shoryuken/shoryuken/pull/563)
         
     | 
| 
       179 
253 
     | 
    
         | 
| 
       180 
254 
     | 
    
         
             
            - Replace static options with instance options
         
     | 
| 
       181 
     | 
    
         
            -
              - [#534](https://github.com/ 
     | 
| 
      
 255 
     | 
    
         
            +
              - [#534](https://github.com/ruby-shoryuken/shoryuken/pull/534)
         
     | 
| 
       182 
256 
     | 
    
         | 
| 
       183 
257 
     | 
    
         
             
            ## [v4.0.3] - 2019-01-06
         
     | 
| 
       184 
258 
     | 
    
         | 
| 
       185 
259 
     | 
    
         
             
            - Support delay per processing group
         
     | 
| 
       186 
     | 
    
         
            -
              - [#543](https://github.com/ 
     | 
| 
      
 260 
     | 
    
         
            +
              - [#543](https://github.com/ruby-shoryuken/shoryuken/pull/543)
         
     | 
| 
       187 
261 
     | 
    
         | 
| 
       188 
262 
     | 
    
         
             
            ## [v4.0.2] - 2018-11-26
         
     | 
| 
       189 
263 
     | 
    
         | 
| 
       190 
264 
     | 
    
         
             
            - Fix the delegated methods to public warning
         
     | 
| 
       191 
265 
     | 
    
         | 
| 
       192 
     | 
    
         
            -
              - [#536](https://github.com/ 
     | 
| 
      
 266 
     | 
    
         
            +
              - [#536](https://github.com/ruby-shoryuken/shoryuken/pull/536)
         
     | 
| 
       193 
267 
     | 
    
         | 
| 
       194 
268 
     | 
    
         
             
            - Specify exception class to `raise_error` matcher warning
         
     | 
| 
       195 
269 
     | 
    
         | 
| 
       196 
     | 
    
         
            -
              - [#537](https://github.com/ 
     | 
| 
      
 270 
     | 
    
         
            +
              - [#537](https://github.com/ruby-shoryuken/shoryuken/pull/537)
         
     | 
| 
       197 
271 
     | 
    
         | 
| 
       198 
272 
     | 
    
         
             
            - Fix spelling of "visibility"
         
     | 
| 
       199 
     | 
    
         
            -
              - [#538](https://github.com/ 
     | 
| 
      
 273 
     | 
    
         
            +
              - [#538](https://github.com/ruby-shoryuken/shoryuken/pull/538)
         
     | 
| 
       200 
274 
     | 
    
         | 
| 
       201 
275 
     | 
    
         
             
            ## [v4.0.1] - 2018-11-21
         
     | 
| 
       202 
276 
     | 
    
         | 
| 
       203 
277 
     | 
    
         
             
            - Allow caching visibility_timeout lookups
         
     | 
| 
       204 
278 
     | 
    
         | 
| 
       205 
     | 
    
         
            -
              - [#533](https://github.com/ 
     | 
| 
      
 279 
     | 
    
         
            +
              - [#533](https://github.com/ruby-shoryuken/shoryuken/pull/533)
         
     | 
| 
       206 
280 
     | 
    
         | 
| 
       207 
281 
     | 
    
         
             
            - Add queue name to inline executor
         
     | 
| 
       208 
     | 
    
         
            -
              - [#532](https://github.com/ 
     | 
| 
      
 282 
     | 
    
         
            +
              - [#532](https://github.com/ruby-shoryuken/shoryuken/pull/532)
         
     | 
| 
       209 
283 
     | 
    
         | 
| 
       210 
284 
     | 
    
         
             
            ## [v4.0.0] - 2018-11-01
         
     | 
| 
       211 
285 
     | 
    
         | 
| 
       212 
286 
     | 
    
         
             
            - Process messages to the same message group ID one by one
         
     | 
| 
       213 
     | 
    
         
            -
              - [#530](https://github.com/ 
     | 
| 
      
 287 
     | 
    
         
            +
              - [#530](https://github.com/ruby-shoryuken/shoryuken/pull/530)
         
     | 
| 
       214 
288 
     | 
    
         | 
| 
       215 
289 
     | 
    
         
             
            ## [v3.3.1] - 2018-10-30
         
     | 
| 
       216 
290 
     | 
    
         | 
| 
       217 
291 
     | 
    
         
             
            - Memoization of boolean causes extra calls to SQS
         
     | 
| 
       218 
     | 
    
         
            -
              - [#529](https://github.com/ 
     | 
| 
      
 292 
     | 
    
         
            +
              - [#529](https://github.com/ruby-shoryuken/shoryuken/pull/529)
         
     | 
| 
       219 
293 
     | 
    
         | 
| 
       220 
294 
     | 
    
         
             
            ## [v3.3.0] - 2018-09-30
         
     | 
| 
       221 
295 
     | 
    
         | 
| 
       222 
296 
     | 
    
         
             
            - Add support for TSTP
         
     | 
| 
       223 
297 
     | 
    
         | 
| 
       224 
     | 
    
         
            -
              - [#492](https://github.com/ 
     | 
| 
      
 298 
     | 
    
         
            +
              - [#492](https://github.com/ruby-shoryuken/shoryuken/pull/492)
         
     | 
| 
       225 
299 
     | 
    
         | 
| 
       226 
300 
     | 
    
         
             
            - Support an empty list of queues as a CLI argument
         
     | 
| 
       227 
301 
     | 
    
         | 
| 
       228 
     | 
    
         
            -
              - [#507](https://github.com/ 
     | 
| 
      
 302 
     | 
    
         
            +
              - [#507](https://github.com/ruby-shoryuken/shoryuken/pull/507)
         
     | 
| 
       229 
303 
     | 
    
         | 
| 
       230 
304 
     | 
    
         
             
            - Add batch support for inline workers
         
     | 
| 
       231 
305 
     | 
    
         | 
| 
       232 
     | 
    
         
            -
              - [#514](https://github.com/ 
     | 
| 
      
 306 
     | 
    
         
            +
              - [#514](https://github.com/ruby-shoryuken/shoryuken/pull/514)
         
     | 
| 
       233 
307 
     | 
    
         | 
| 
       234 
308 
     | 
    
         
             
            - Make InlineExecutor to behave as the DefaultExecutor when calling perform_in
         
     | 
| 
       235 
     | 
    
         
            -
              - [#518](https://github.com/ 
     | 
| 
      
 309 
     | 
    
         
            +
              - [#518](https://github.com/ruby-shoryuken/shoryuken/pull/518)
         
     | 
| 
       236 
310 
     | 
    
         | 
| 
       237 
311 
     | 
    
         
             
            ## [v3.2.3] - 2018-03-25
         
     | 
| 
       238 
312 
     | 
    
         | 
| 
       239 
313 
     | 
    
         
             
            - Don't force eager load for Rails 5
         
     | 
| 
       240 
314 
     | 
    
         | 
| 
       241 
     | 
    
         
            -
              - [#480](https://github.com/ 
     | 
| 
      
 315 
     | 
    
         
            +
              - [#480](https://github.com/ruby-shoryuken/shoryuken/pull/480)
         
     | 
| 
       242 
316 
     | 
    
         | 
| 
       243 
317 
     | 
    
         
             
            - Allow Batch Size to be Specified for Requeue
         
     | 
| 
       244 
318 
     | 
    
         | 
| 
       245 
     | 
    
         
            -
              - [#478](https://github.com/ 
     | 
| 
      
 319 
     | 
    
         
            +
              - [#478](https://github.com/ruby-shoryuken/shoryuken/pull/478)
         
     | 
| 
       246 
320 
     | 
    
         | 
| 
       247 
321 
     | 
    
         
             
            - Support FIFO queues in `shoryuken sqs` commands
         
     | 
| 
       248 
     | 
    
         
            -
              - [#473](https://github.com/ 
     | 
| 
      
 322 
     | 
    
         
            +
              - [#473](https://github.com/ruby-shoryuken/shoryuken/pull/473)
         
     | 
| 
       249 
323 
     | 
    
         | 
| 
       250 
324 
     | 
    
         
             
            ## [v3.2.2] - 2018-02-13
         
     | 
| 
       251 
325 
     | 
    
         | 
| 
       252 
326 
     | 
    
         
             
            - Fix requeue' for FIFO queues
         
     | 
| 
       253 
     | 
    
         
            -
              - [#48fcb42](https://github.com/ 
     | 
| 
      
 327 
     | 
    
         
            +
              - [#48fcb42](https://github.com/ruby-shoryuken/shoryuken/commit/48fcb4260c3b41a9e45fa29bb857e8fa37dcee82)
         
     | 
| 
       254 
328 
     | 
    
         | 
| 
       255 
329 
     | 
    
         
             
            ## [v3.2.1] - 2018-02-12
         
     | 
| 
       256 
330 
     | 
    
         | 
| 
       257 
331 
     | 
    
         
             
            - Support FIFO queues in `shoryuken sqs` commands
         
     | 
| 
       258 
332 
     | 
    
         | 
| 
       259 
     | 
    
         
            -
              - [#473](https://github.com/ 
     | 
| 
      
 333 
     | 
    
         
            +
              - [#473](https://github.com/ruby-shoryuken/shoryuken/pull/473)
         
     | 
| 
       260 
334 
     | 
    
         | 
| 
       261 
335 
     | 
    
         
             
            - Allow customizing the default executor launcher
         
     | 
| 
       262 
336 
     | 
    
         | 
| 
       263 
     | 
    
         
            -
              - [#469](https://github.com/ 
     | 
| 
      
 337 
     | 
    
         
            +
              - [#469](https://github.com/ruby-shoryuken/shoryuken/pull/469)
         
     | 
| 
       264 
338 
     | 
    
         | 
| 
       265 
339 
     | 
    
         
             
            - Exclude job_id from message deduplication when ActiveJob
         
     | 
| 
       266 
     | 
    
         
            -
              - [#462](https://github.com/ 
     | 
| 
      
 340 
     | 
    
         
            +
              - [#462](https://github.com/ruby-shoryuken/shoryuken/pull/462)
         
     | 
| 
       267 
341 
     | 
    
         | 
| 
       268 
342 
     | 
    
         
             
            ## [v3.2.0] - 2018-01-03
         
     | 
| 
       269 
343 
     | 
    
         | 
| 
       270 
344 
     | 
    
         
             
            - Preserve parent worker class options
         
     | 
| 
       271 
345 
     | 
    
         | 
| 
       272 
     | 
    
         
            -
              - [#451](https://github.com/ 
     | 
| 
      
 346 
     | 
    
         
            +
              - [#451](https://github.com/ruby-shoryuken/shoryuken/pull/451)
         
     | 
| 
       273 
347 
     | 
    
         | 
| 
       274 
348 
     | 
    
         
             
            - Add -t (shutdown timeout) option to CL
         
     | 
| 
       275 
349 
     | 
    
         | 
| 
       276 
     | 
    
         
            -
              - [#449](https://github.com/ 
     | 
| 
      
 350 
     | 
    
         
            +
              - [#449](https://github.com/ruby-shoryuken/shoryuken/pull/449)
         
     | 
| 
       277 
351 
     | 
    
         | 
| 
       278 
352 
     | 
    
         
             
            - Support inline (Active Job like) for standard workers
         
     | 
| 
       279 
     | 
    
         
            -
              - [#448](https://github.com/ 
     | 
| 
      
 353 
     | 
    
         
            +
              - [#448](https://github.com/ruby-shoryuken/shoryuken/pull/448)
         
     | 
| 
       280 
354 
     | 
    
         | 
| 
       281 
355 
     | 
    
         
             
            ## [v3.1.12] - 2017-09-25
         
     | 
| 
       282 
356 
     | 
    
         | 
| 
       283 
357 
     | 
    
         
             
            - Reduce fetch log verbosity
         
     | 
| 
       284 
     | 
    
         
            -
              - [#436](https://github.com/ 
     | 
| 
      
 358 
     | 
    
         
            +
              - [#436](https://github.com/ruby-shoryuken/shoryuken/pull/436)
         
     | 
| 
       285 
359 
     | 
    
         | 
| 
       286 
360 
     | 
    
         
             
            ## [v3.1.11] - 2017-09-02
         
     | 
| 
       287 
361 
     | 
    
         | 
| 
       288 
362 
     | 
    
         
             
            - Auto retry (up to 3 times) fetch errors
         
     | 
| 
       289 
     | 
    
         
            -
              - [#429](https://github.com/ 
     | 
| 
      
 363 
     | 
    
         
            +
              - [#429](https://github.com/ruby-shoryuken/shoryuken/pull/429)
         
     | 
| 
       290 
364 
     | 
    
         | 
| 
       291 
365 
     | 
    
         
             
            ## [v3.1.10] - 2017-09-02
         
     | 
| 
       292 
366 
     | 
    
         | 
| 
       293 
367 
     | 
    
         
             
            - Make Shoryuken compatible with AWS SDK 3 and 2
         
     | 
| 
       294 
     | 
    
         
            -
              - [#433](https://github.com/ 
     | 
| 
      
 368 
     | 
    
         
            +
              - [#433](https://github.com/ruby-shoryuken/shoryuken/pull/433)
         
     | 
| 
       295 
369 
     | 
    
         | 
| 
       296 
370 
     | 
    
         
             
            ## [v3.1.9] - 2017-08-24
         
     | 
| 
       297 
371 
     | 
    
         | 
| 
       298 
372 
     | 
    
         
             
            - Add support for adding a middleware to the front of chain
         
     | 
| 
       299 
373 
     | 
    
         | 
| 
       300 
     | 
    
         
            -
              - [#427](https://github.com/ 
     | 
| 
      
 374 
     | 
    
         
            +
              - [#427](https://github.com/ruby-shoryuken/shoryuken/pull/427)
         
     | 
| 
       301 
375 
     | 
    
         | 
| 
       302 
376 
     | 
    
         
             
            - Add support for dispatch fire event
         
     | 
| 
       303 
     | 
    
         
            -
              - [#426](https://github.com/ 
     | 
| 
      
 377 
     | 
    
         
            +
              - [#426](https://github.com/ruby-shoryuken/shoryuken/pull/426)
         
     | 
| 
       304 
378 
     | 
    
         | 
| 
       305 
379 
     | 
    
         
             
            ## [v3.1.8] - 2017-08-17
         
     | 
| 
       306 
380 
     | 
    
         | 
| 
       307 
381 
     | 
    
         
             
            - Make Polling strategy backward compatibility
         
     | 
| 
       308 
     | 
    
         
            -
              - [#424](https://github.com/ 
     | 
| 
      
 382 
     | 
    
         
            +
              - [#424](https://github.com/ruby-shoryuken/shoryuken/pull/424)
         
     | 
| 
       309 
383 
     | 
    
         | 
| 
       310 
384 
     | 
    
         
             
            ## [v3.1.7] - 2017-07-31
         
     | 
| 
       311 
385 
     | 
    
         | 
| 
       312 
386 
     | 
    
         
             
            - Allow polling strategy per group
         
     | 
| 
       313 
387 
     | 
    
         | 
| 
       314 
     | 
    
         
            -
              - [#417](https://github.com/ 
     | 
| 
      
 388 
     | 
    
         
            +
              - [#417](https://github.com/ruby-shoryuken/shoryuken/pull/417)
         
     | 
| 
       315 
389 
     | 
    
         | 
| 
       316 
390 
     | 
    
         
             
            - Add support for creating FIFO queues
         
     | 
| 
       317 
391 
     | 
    
         | 
| 
       318 
     | 
    
         
            -
              - [#419](https://github.com/ 
     | 
| 
      
 392 
     | 
    
         
            +
              - [#419](https://github.com/ruby-shoryuken/shoryuken/pull/419)
         
     | 
| 
       319 
393 
     | 
    
         | 
| 
       320 
394 
     | 
    
         
             
            - Allow receive message options per queue
         
     | 
| 
       321 
     | 
    
         
            -
              - [#420](https://github.com/ 
     | 
| 
      
 395 
     | 
    
         
            +
              - [#420](https://github.com/ruby-shoryuken/shoryuken/pull/420)
         
     | 
| 
       322 
396 
     | 
    
         | 
| 
       323 
397 
     | 
    
         
             
            ## [v3.1.6] - 2017-07-24
         
     | 
| 
       324 
398 
     | 
    
         | 
| 
       325 
399 
     | 
    
         
             
            - Fix issue with dispatch_loop and delays
         
     | 
| 
       326 
     | 
    
         
            -
              - [#416](https://github.com/ 
     | 
| 
      
 400 
     | 
    
         
            +
              - [#416](https://github.com/ruby-shoryuken/shoryuken/pull/416)
         
     | 
| 
       327 
401 
     | 
    
         | 
| 
       328 
402 
     | 
    
         
             
            ## [v3.1.5] - 2017-07-23
         
     | 
| 
       329 
403 
     | 
    
         | 
| 
       330 
404 
     | 
    
         
             
            - Fix memory leak
         
     | 
| 
       331 
405 
     | 
    
         | 
| 
       332 
     | 
    
         
            -
              - [#414](https://github.com/ 
     | 
| 
      
 406 
     | 
    
         
            +
              - [#414](https://github.com/ruby-shoryuken/shoryuken/pull/414)
         
     | 
| 
       333 
407 
     | 
    
         | 
| 
       334 
408 
     | 
    
         
             
            - Fail fast on bad queue URLs
         
     | 
| 
       335 
     | 
    
         
            -
              - [#413](https://github.com/ 
     | 
| 
      
 409 
     | 
    
         
            +
              - [#413](https://github.com/ruby-shoryuken/shoryuken/pull/413)
         
     | 
| 
       336 
410 
     | 
    
         | 
| 
       337 
411 
     | 
    
         
             
            ## [v3.1.4] - 2017-07-14
         
     | 
| 
       338 
412 
     | 
    
         | 
| 
       339 
413 
     | 
    
         
             
            - Require forwardable allowding to call `shoryuken` without `bundle exec`
         
     | 
| 
       340 
     | 
    
         
            -
              - [#409](https://github.com/ 
     | 
| 
      
 414 
     | 
    
         
            +
              - [#409](https://github.com/ruby-shoryuken/shoryuken/pull/409)
         
     | 
| 
       341 
415 
     | 
    
         | 
| 
       342 
416 
     | 
    
         
             
            ## [v3.1.3] - 2017-07-11
         
     | 
| 
       343 
417 
     | 
    
         | 
| 
       344 
418 
     | 
    
         
             
            - Add queue prefixing support for groups
         
     | 
| 
       345 
419 
     | 
    
         | 
| 
       346 
     | 
    
         
            -
              - [#405](https://github.com/ 
     | 
| 
      
 420 
     | 
    
         
            +
              - [#405](https://github.com/ruby-shoryuken/shoryuken/pull/405)
         
     | 
| 
       347 
421 
     | 
    
         | 
| 
       348 
422 
     | 
    
         
             
            - Remove dead code
         
     | 
| 
       349 
     | 
    
         
            -
              - [#402](https://github.com/ 
     | 
| 
      
 423 
     | 
    
         
            +
              - [#402](https://github.com/ruby-shoryuken/shoryuken/pull/402)
         
     | 
| 
       350 
424 
     | 
    
         | 
| 
       351 
425 
     | 
    
         
             
            ## [v3.1.2] - 2017-07-06
         
     | 
| 
       352 
426 
     | 
    
         | 
| 
       353 
427 
     | 
    
         
             
            - Fix stack level too deep on Ubuntu
         
     | 
| 
       354 
     | 
    
         
            -
              - [#400](https://github.com/ 
     | 
| 
      
 428 
     | 
    
         
            +
              - [#400](https://github.com/ruby-shoryuken/shoryuken/pull/400)
         
     | 
| 
       355 
429 
     | 
    
         | 
| 
       356 
430 
     | 
    
         
             
            ## [v3.1.1] - 2017-07-05
         
     | 
| 
       357 
431 
     | 
    
         | 
| 
       358 
432 
     | 
    
         
             
            - Reduce log verbosity introduced in 3.1.0
         
     | 
| 
       359 
433 
     | 
    
         | 
| 
       360 
     | 
    
         
            -
              - [#397](https://github.com/ 
     | 
| 
      
 434 
     | 
    
         
            +
              - [#397](https://github.com/ruby-shoryuken/shoryuken/pull/397)
         
     | 
| 
       361 
435 
     | 
    
         | 
| 
       362 
436 
     | 
    
         
             
            - Try to prevent stack level too deep on Ubuntu
         
     | 
| 
       363 
     | 
    
         
            -
              - [#396](https://github.com/ 
     | 
| 
      
 437 
     | 
    
         
            +
              - [#396](https://github.com/ruby-shoryuken/shoryuken/pull/396)
         
     | 
| 
       364 
438 
     | 
    
         | 
| 
       365 
439 
     | 
    
         
             
            ## [v3.1.0] - 2017-07-02
         
     | 
| 
       366 
440 
     | 
    
         | 
| 
       367 
441 
     | 
    
         
             
            - Add shoryuken sqs delete command
         
     | 
| 
       368 
442 
     | 
    
         | 
| 
       369 
     | 
    
         
            -
              - [#395](https://github.com/ 
     | 
| 
      
 443 
     | 
    
         
            +
              - [#395](https://github.com/ruby-shoryuken/shoryuken/pull/395)
         
     | 
| 
       370 
444 
     | 
    
         | 
| 
       371 
445 
     | 
    
         
             
            - Add processing groups support; Concurrency per queue support
         
     | 
| 
       372 
446 
     | 
    
         | 
| 
       373 
     | 
    
         
            -
              - [#389](https://github.com/ 
     | 
| 
      
 447 
     | 
    
         
            +
              - [#389](https://github.com/ruby-shoryuken/shoryuken/pull/389)
         
     | 
| 
       374 
448 
     | 
    
         | 
| 
       375 
449 
     | 
    
         
             
            - Terminate Shoryuken if the fetcher crashes
         
     | 
| 
       376 
     | 
    
         
            -
              - [#389](https://github.com/ 
     | 
| 
      
 450 
     | 
    
         
            +
              - [#389](https://github.com/ruby-shoryuken/shoryuken/pull/389)
         
     | 
| 
       377 
451 
     | 
    
         | 
| 
       378 
452 
     | 
    
         
             
            ## [v3.0.11] - 2017-06-24
         
     | 
| 
       379 
453 
     | 
    
         | 
| 
       380 
454 
     | 
    
         
             
            - Add shoryuken sqs create command
         
     | 
| 
       381 
     | 
    
         
            -
              - [#388](https://github.com/ 
     | 
| 
      
 455 
     | 
    
         
            +
              - [#388](https://github.com/ruby-shoryuken/shoryuken/pull/388)
         
     | 
| 
       382 
456 
     | 
    
         | 
| 
       383 
457 
     | 
    
         
             
            ## [v3.0.10] - 2017-06-24
         
     | 
| 
       384 
458 
     | 
    
         | 
| 
       385 
459 
     | 
    
         
             
            - Allow aws sdk v3
         
     | 
| 
       386 
460 
     | 
    
         | 
| 
       387 
     | 
    
         
            -
              - [#381](https://github.com/ 
     | 
| 
      
 461 
     | 
    
         
            +
              - [#381](https://github.com/ruby-shoryuken/shoryuken/pull/381)
         
     | 
| 
       388 
462 
     | 
    
         | 
| 
       389 
463 
     | 
    
         
             
            - Allow configuring Rails via the config file
         
     | 
| 
       390 
     | 
    
         
            -
              - [#387](https://github.com/ 
     | 
| 
      
 464 
     | 
    
         
            +
              - [#387](https://github.com/ruby-shoryuken/shoryuken/pull/387)
         
     | 
| 
       391 
465 
     | 
    
         | 
| 
       392 
466 
     | 
    
         
             
            ## [v3.0.9] - 2017-06-05
         
     | 
| 
       393 
467 
     | 
    
         | 
| 
       394 
468 
     | 
    
         
             
            - Allow configuring queue URLs instead of names
         
     | 
| 
       395 
     | 
    
         
            -
              - [#378](https://github.com/ 
     | 
| 
      
 469 
     | 
    
         
            +
              - [#378](https://github.com/ruby-shoryuken/shoryuken/pull/378)
         
     | 
| 
       396 
470 
     | 
    
         | 
| 
       397 
471 
     | 
    
         
             
            ## [v3.0.8] - 2017-06-02
         
     | 
| 
       398 
472 
     | 
    
         | 
| 
       399 
473 
     | 
    
         
             
            - Fix miss handling empty batch fetches
         
     | 
| 
       400 
474 
     | 
    
         | 
| 
       401 
     | 
    
         
            -
              - [#376](https://github.com/ 
     | 
| 
      
 475 
     | 
    
         
            +
              - [#376](https://github.com/ruby-shoryuken/shoryuken/pull/376)
         
     | 
| 
       402 
476 
     | 
    
         | 
| 
       403 
477 
     | 
    
         
             
            - Various minor styling changes :lipstick:
         
     | 
| 
       404 
478 
     | 
    
         | 
| 
       405 
     | 
    
         
            -
              - [#373](https://github.com/ 
     | 
| 
      
 479 
     | 
    
         
            +
              - [#373](https://github.com/ruby-shoryuken/shoryuken/pull/373)
         
     | 
| 
       406 
480 
     | 
    
         | 
| 
       407 
481 
     | 
    
         
             
            - Logout when batch delete returns any failure
         
     | 
| 
       408 
     | 
    
         
            -
              - [#371](https://github.com/ 
     | 
| 
      
 482 
     | 
    
         
            +
              - [#371](https://github.com/ruby-shoryuken/shoryuken/pull/371)
         
     | 
| 
       409 
483 
     | 
    
         | 
| 
       410 
484 
     | 
    
         
             
            ## [v3.0.7] - 2017-05-18
         
     | 
| 
       411 
485 
     | 
    
         | 
| 
       412 
486 
     | 
    
         
             
            - Trigger events for dispatch
         
     | 
| 
       413 
487 
     | 
    
         | 
| 
       414 
     | 
    
         
            -
              - [#362](https://github.com/ 
     | 
| 
      
 488 
     | 
    
         
            +
              - [#362](https://github.com/ruby-shoryuken/shoryuken/pull/362)
         
     | 
| 
       415 
489 
     | 
    
         | 
| 
       416 
490 
     | 
    
         
             
            - Log (warn) exponential backoff tries
         
     | 
| 
       417 
491 
     | 
    
         | 
| 
       418 
     | 
    
         
            -
              - [#365](https://github.com/ 
     | 
| 
      
 492 
     | 
    
         
            +
              - [#365](https://github.com/ruby-shoryuken/shoryuken/pull/365)
         
     | 
| 
       419 
493 
     | 
    
         | 
| 
       420 
494 
     | 
    
         
             
            - Fix displaying of long queue names in `shoryuken sqs ls`
         
     | 
| 
       421 
     | 
    
         
            -
              - [#366](https://github.com/ 
     | 
| 
      
 495 
     | 
    
         
            +
              - [#366](https://github.com/ruby-shoryuken/shoryuken/pull/366)
         
     | 
| 
       422 
496 
     | 
    
         | 
| 
       423 
497 
     | 
    
         
             
            ## [v3.0.6] - 2017-04-11
         
     | 
| 
       424 
498 
     | 
    
         | 
| 
       425 
499 
     | 
    
         
             
            - Fix delay option type
         
     | 
| 
       426 
     | 
    
         
            -
              - [#356](https://github.com/ 
     | 
| 
      
 500 
     | 
    
         
            +
              - [#356](https://github.com/ruby-shoryuken/shoryuken/pull/356)
         
     | 
| 
       427 
501 
     | 
    
         | 
| 
       428 
502 
     | 
    
         
             
            ## [v3.0.5] - 2017-04-09
         
     | 
| 
       429 
503 
     | 
    
         | 
| 
       430 
504 
     | 
    
         
             
            - Pause endless dispatcher to avoid CPU overload
         
     | 
| 
       431 
505 
     | 
    
         | 
| 
       432 
     | 
    
         
            -
              - [#354](https://github.com/ 
     | 
| 
      
 506 
     | 
    
         
            +
              - [#354](https://github.com/ruby-shoryuken/shoryuken/pull/354)
         
     | 
| 
       433 
507 
     | 
    
         | 
| 
       434 
508 
     | 
    
         
             
            - Auto log processor errors
         
     | 
| 
       435 
509 
     | 
    
         | 
| 
       436 
     | 
    
         
            -
              - [#355](https://github.com/ 
     | 
| 
      
 510 
     | 
    
         
            +
              - [#355](https://github.com/ruby-shoryuken/shoryuken/pull/355)
         
     | 
| 
       437 
511 
     | 
    
         | 
| 
       438 
512 
     | 
    
         
             
            - Add a delay as a CLI param
         
     | 
| 
       439 
513 
     | 
    
         | 
| 
       440 
     | 
    
         
            -
              - [#350](https://github.com/ 
     | 
| 
      
 514 
     | 
    
         
            +
              - [#350](https://github.com/ruby-shoryuken/shoryuken/pull/350)
         
     | 
| 
       441 
515 
     | 
    
         | 
| 
       442 
516 
     | 
    
         
             
            - Add `sqs purge` command. See https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_PurgeQueue.html
         
     | 
| 
       443 
     | 
    
         
            -
              - [#344](https://github.com/ 
     | 
| 
      
 517 
     | 
    
         
            +
              - [#344](https://github.com/ruby-shoryuken/shoryuken/pull/344)
         
     | 
| 
       444 
518 
     | 
    
         | 
| 
       445 
519 
     | 
    
         
             
            ## [v3.0.4] - 2017-03-24
         
     | 
| 
       446 
520 
     | 
    
         | 
| 
       447 
521 
     | 
    
         
             
            - Add `sqs purge` command. See https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_PurgeQueue.html
         
     | 
| 
       448 
522 
     | 
    
         | 
| 
       449 
     | 
    
         
            -
              - [#344](https://github.com/ 
     | 
| 
      
 523 
     | 
    
         
            +
              - [#344](https://github.com/ruby-shoryuken/shoryuken/pull/344)
         
     | 
| 
       450 
524 
     | 
    
         | 
| 
       451 
525 
     | 
    
         
             
            - Fix "Thread exhaustion" error. This issue was most noticed when using long polling. @waynerobinson :beers: for pairing up on this.
         
     | 
| 
       452 
     | 
    
         
            -
              - [#345](https://github.com/ 
     | 
| 
      
 526 
     | 
    
         
            +
              - [#345](https://github.com/ruby-shoryuken/shoryuken/pull/345)
         
     | 
| 
       453 
527 
     | 
    
         | 
| 
       454 
528 
     | 
    
         
             
            ## [v3.0.3] - 2017-03-19
         
     | 
| 
       455 
529 
     | 
    
         | 
| 
       456 
530 
     | 
    
         
             
            - Update `sqs` CLI commands to use `get_queue_url` when appropriated
         
     | 
| 
       457 
     | 
    
         
            -
              - [#341](https://github.com/ 
     | 
| 
      
 531 
     | 
    
         
            +
              - [#341](https://github.com/ruby-shoryuken/shoryuken/pull/341)
         
     | 
| 
       458 
532 
     | 
    
         | 
| 
       459 
533 
     | 
    
         
             
            ## [v3.0.2] - 2017-03-19
         
     | 
| 
       460 
534 
     | 
    
         | 
| 
       461 
535 
     | 
    
         
             
            - Fix custom SQS client initialization
         
     | 
| 
       462 
     | 
    
         
            -
              - [#335](https://github.com/ 
     | 
| 
      
 536 
     | 
    
         
            +
              - [#335](https://github.com/ruby-shoryuken/shoryuken/pull/335)
         
     | 
| 
       463 
537 
     | 
    
         | 
| 
       464 
538 
     | 
    
         
             
            ## [v3.0.1] - 2017-03-13
         
     | 
| 
       465 
539 
     | 
    
         | 
| 
       466 
540 
     | 
    
         
             
            - Fix commands sqs mv and dump `options.delete` checker
         
     | 
| 
       467 
     | 
    
         
            -
              - [#332](https://github.com/ 
     | 
| 
      
 541 
     | 
    
         
            +
              - [#332](https://github.com/ruby-shoryuken/shoryuken/pull/332)
         
     | 
| 
       468 
542 
     | 
    
         | 
| 
       469 
543 
     | 
    
         
             
            ## [v3.0.0] - 2017-03-12
         
     | 
| 
       470 
544 
     | 
    
         | 
| 
       471 
545 
     | 
    
         
             
            - Replace Celluloid with Concurrent Ruby
         
     | 
| 
       472 
546 
     | 
    
         | 
| 
       473 
     | 
    
         
            -
              - [#291](https://github.com/ 
     | 
| 
      
 547 
     | 
    
         
            +
              - [#291](https://github.com/ruby-shoryuken/shoryuken/pull/291)
         
     | 
| 
       474 
548 
     | 
    
         | 
| 
       475 
     | 
    
         
            -
            - Remove AWS configuration from Shoryuken. Now AWS should be configured from outside. Check [this](https://github.com/ 
     | 
| 
      
 549 
     | 
    
         
            +
            - Remove AWS configuration from Shoryuken. Now AWS should be configured from outside. Check [this](https://github.com/ruby-shoryuken/shoryuken/wiki/Configure-the-AWS-Client) for more details
         
     | 
| 
       476 
550 
     | 
    
         | 
| 
       477 
     | 
    
         
            -
              - [#317](https://github.com/ 
     | 
| 
      
 551 
     | 
    
         
            +
              - [#317](https://github.com/ruby-shoryuken/shoryuken/pull/317)
         
     | 
| 
       478 
552 
     | 
    
         | 
| 
       479 
553 
     | 
    
         
             
            - Remove deprecation warnings
         
     | 
| 
       480 
554 
     | 
    
         | 
| 
       481 
     | 
    
         
            -
              - [#326](https://github.com/ 
     | 
| 
      
 555 
     | 
    
         
            +
              - [#326](https://github.com/ruby-shoryuken/shoryuken/pull/326)
         
     | 
| 
       482 
556 
     | 
    
         | 
| 
       483 
557 
     | 
    
         
             
            - Allow dynamic adding queues
         
     | 
| 
       484 
558 
     | 
    
         | 
| 
       485 
     | 
    
         
            -
              - [#322](https://github.com/ 
     | 
| 
      
 559 
     | 
    
         
            +
              - [#322](https://github.com/ruby-shoryuken/shoryuken/pull/322)
         
     | 
| 
       486 
560 
     | 
    
         | 
| 
       487 
561 
     | 
    
         
             
            - Support retry_intervals passed in as a lambda. Auto coerce intervals into integer
         
     | 
| 
       488 
562 
     | 
    
         | 
| 
       489 
     | 
    
         
            -
              - [#329](https://github.com/ 
     | 
| 
      
 563 
     | 
    
         
            +
              - [#329](https://github.com/ruby-shoryuken/shoryuken/pull/329)
         
     | 
| 
       490 
564 
     | 
    
         | 
| 
       491 
565 
     | 
    
         
             
            - Add SQS commands `shoryuken help sqs`, such as `ls`, `mv`, `dump` and `requeue`
         
     | 
| 
       492 
     | 
    
         
            -
              - [#330](https://github.com/ 
     | 
| 
      
 566 
     | 
    
         
            +
              - [#330](https://github.com/ruby-shoryuken/shoryuken/pull/330)
         
     | 
| 
       493 
567 
     | 
    
         | 
| 
       494 
568 
     | 
    
         
             
            ## [v2.1.3] - 2017-01-27
         
     | 
| 
       495 
569 
     | 
    
         | 
| 
       496 
570 
     | 
    
         
             
            - Show a warn message when batch isn't supported
         
     | 
| 
       497 
571 
     | 
    
         | 
| 
       498 
     | 
    
         
            -
              - [#302](https://github.com/ 
     | 
| 
      
 572 
     | 
    
         
            +
              - [#302](https://github.com/ruby-shoryuken/shoryuken/pull/302)
         
     | 
| 
       499 
573 
     | 
    
         | 
| 
       500 
574 
     | 
    
         
             
            - Require Celluloid ~> 17
         
     | 
| 
       501 
575 
     | 
    
         | 
| 
       502 
     | 
    
         
            -
              - [#305](https://github.com/ 
     | 
| 
      
 576 
     | 
    
         
            +
              - [#305](https://github.com/ruby-shoryuken/shoryuken/pull/305)
         
     | 
| 
       503 
577 
     | 
    
         | 
| 
       504 
578 
     | 
    
         
             
            - Fix excessive logging when 0 messages found
         
     | 
| 
       505 
     | 
    
         
            -
              - [#307](https://github.com/ 
     | 
| 
      
 579 
     | 
    
         
            +
              - [#307](https://github.com/ruby-shoryuken/shoryuken/pull/307)
         
     | 
| 
       506 
580 
     | 
    
         | 
| 
       507 
581 
     | 
    
         
             
            ## [v2.1.2] - 2016-12-22
         
     | 
| 
       508 
582 
     | 
    
         | 
| 
       509 
583 
     | 
    
         
             
            - Fix loading `logfile` from shoryuken.yml
         
     | 
| 
       510 
584 
     | 
    
         | 
| 
       511 
     | 
    
         
            -
              - [#296](https://github.com/ 
     | 
| 
      
 585 
     | 
    
         
            +
              - [#296](https://github.com/ruby-shoryuken/shoryuken/pull/296)
         
     | 
| 
       512 
586 
     | 
    
         | 
| 
       513 
587 
     | 
    
         
             
            - Add support for Strict priority polling (pending documentation)
         
     | 
| 
       514 
588 
     | 
    
         | 
| 
       515 
     | 
    
         
            -
              - [#288](https://github.com/ 
     | 
| 
      
 589 
     | 
    
         
            +
              - [#288](https://github.com/ruby-shoryuken/shoryuken/pull/288)
         
     | 
| 
       516 
590 
     | 
    
         | 
| 
       517 
591 
     | 
    
         
             
            - Add `test_workers` for end-to-end testing supporting
         
     | 
| 
       518 
592 
     | 
    
         | 
| 
       519 
     | 
    
         
            -
              - [#286](https://github.com/ 
     | 
| 
      
 593 
     | 
    
         
            +
              - [#286](https://github.com/ruby-shoryuken/shoryuken/pull/286)
         
     | 
| 
       520 
594 
     | 
    
         | 
| 
       521 
595 
     | 
    
         
             
            - Update README documenting `configure_client` and `configure_server`
         
     | 
| 
       522 
596 
     | 
    
         | 
| 
       523 
     | 
    
         
            -
              - [#283](https://github.com/ 
     | 
| 
      
 597 
     | 
    
         
            +
              - [#283](https://github.com/ruby-shoryuken/shoryuken/pull/283)
         
     | 
| 
       524 
598 
     | 
    
         | 
| 
       525 
599 
     | 
    
         
             
            - Fix memory leak caused by async tracking busy threads
         
     | 
| 
       526 
600 
     | 
    
         | 
| 
       527 
     | 
    
         
            -
              - [#289](https://github.com/ 
     | 
| 
      
 601 
     | 
    
         
            +
              - [#289](https://github.com/ruby-shoryuken/shoryuken/pull/289)
         
     | 
| 
       528 
602 
     | 
    
         | 
| 
       529 
603 
     | 
    
         
             
            - Refactor fetcher, polling strategy and manager
         
     | 
| 
       530 
     | 
    
         
            -
              - [#284](https://github.com/ 
     | 
| 
      
 604 
     | 
    
         
            +
              - [#284](https://github.com/ruby-shoryuken/shoryuken/pull/284)
         
     | 
| 
       531 
605 
     | 
    
         | 
| 
       532 
606 
     | 
    
         
             
            ## [v2.1.1] - 2016-12-05
         
     | 
| 
       533 
607 
     | 
    
         | 
| 
       534 
608 
     | 
    
         
             
            - Fix aws deprecation warning message
         
     | 
| 
       535 
     | 
    
         
            -
              - [#279](https://github.com/ 
     | 
| 
      
 609 
     | 
    
         
            +
              - [#279](https://github.com/ruby-shoryuken/shoryuken/pull/279)
         
     | 
| 
       536 
610 
     | 
    
         | 
| 
       537 
611 
     | 
    
         
             
            ## [v2.1.0] - 2016-12-03
         
     | 
| 
       538 
612 
     | 
    
         | 
| 
       539 
613 
     | 
    
         
             
            - Fix celluloid "running in BACKPORTED mode" warning
         
     | 
| 
       540 
614 
     | 
    
         | 
| 
       541 
     | 
    
         
            -
              - [#260](https://github.com/ 
     | 
| 
      
 615 
     | 
    
         
            +
              - [#260](https://github.com/ruby-shoryuken/shoryuken/pull/260)
         
     | 
| 
       542 
616 
     | 
    
         | 
| 
       543 
617 
     | 
    
         
             
            - Allow setting the aws configuration in 'Shoryuken.configure_server'
         
     | 
| 
       544 
618 
     | 
    
         | 
| 
       545 
     | 
    
         
            -
              - [#252](https://github.com/ 
     | 
| 
      
 619 
     | 
    
         
            +
              - [#252](https://github.com/ruby-shoryuken/shoryuken/pull/252)
         
     | 
| 
       546 
620 
     | 
    
         | 
| 
       547 
621 
     | 
    
         
             
            - Allow requiring a file or dir a through `-r`
         
     | 
| 
       548 
622 
     | 
    
         | 
| 
       549 
     | 
    
         
            -
              - [#248](https://github.com/ 
     | 
| 
      
 623 
     | 
    
         
            +
              - [#248](https://github.com/ruby-shoryuken/shoryuken/pull/248)
         
     | 
| 
       550 
624 
     | 
    
         | 
| 
       551 
625 
     | 
    
         
             
            - Reduce info log verbosity
         
     | 
| 
       552 
626 
     | 
    
         | 
| 
       553 
     | 
    
         
            -
              - [#243](https://github.com/ 
     | 
| 
      
 627 
     | 
    
         
            +
              - [#243](https://github.com/ruby-shoryuken/shoryuken/pull/243)
         
     | 
| 
       554 
628 
     | 
    
         | 
| 
       555 
629 
     | 
    
         
             
            - Fix auto extender when using ActiveJob
         
     | 
| 
       556 
630 
     | 
    
         | 
| 
       557 
     | 
    
         
            -
              - [#3213](https://github.com/ 
     | 
| 
      
 631 
     | 
    
         
            +
              - [#3213](https://github.com/ruby-shoryuken/shoryuken/pull/213)
         
     | 
| 
       558 
632 
     | 
    
         | 
| 
       559 
633 
     | 
    
         
             
            - Add FIFO queue support
         
     | 
| 
       560 
634 
     | 
    
         | 
| 
       561 
     | 
    
         
            -
              - [#272](https://github.com/ 
     | 
| 
      
 635 
     | 
    
         
            +
              - [#272](https://github.com/ruby-shoryuken/shoryuken/issues/272)
         
     | 
| 
       562 
636 
     | 
    
         | 
| 
       563 
637 
     | 
    
         
             
            - Deprecates initialize_aws
         
     | 
| 
       564 
638 
     | 
    
         | 
| 
       565 
     | 
    
         
            -
              - [#269](https://github.com/ 
     | 
| 
      
 639 
     | 
    
         
            +
              - [#269](https://github.com/ruby-shoryuken/shoryuken/pull/269)
         
     | 
| 
       566 
640 
     | 
    
         | 
| 
       567 
     | 
    
         
            -
            - [Other miscellaneous updates](https://github.com/ 
     | 
| 
      
 641 
     | 
    
         
            +
            - [Other miscellaneous updates](https://github.com/ruby-shoryuken/shoryuken/compare/v2.0.11...v2.1.0)
         
     | 
| 
       568 
642 
     | 
    
         | 
| 
       569 
643 
     | 
    
         
             
            ## [v2.0.11] - 2016-07-02
         
     | 
| 
       570 
644 
     | 
    
         | 
| 
       571 
645 
     | 
    
         
             
            - Same as 2.0.10. Unfortunately 2.0.10 was removed `yanked` by mistake from RubyGems.
         
     | 
| 
       572 
     | 
    
         
            -
              - [#b255bc3](https://github.com/ 
     | 
| 
      
 646 
     | 
    
         
            +
              - [#b255bc3](https://github.com/ruby-shoryuken/shoryuken/commit/b255bc3)
         
     | 
| 
       573 
647 
     | 
    
         | 
| 
       574 
648 
     | 
    
         
             
            ## [v2.0.10] - 2016-06-09
         
     | 
| 
       575 
649 
     | 
    
         | 
| 
       576 
650 
     | 
    
         
             
            - Fix manager #225
         
     | 
| 
       577 
     | 
    
         
            -
              - [#226](https://github.com/ 
     | 
| 
      
 651 
     | 
    
         
            +
              - [#226](https://github.com/ruby-shoryuken/shoryuken/pull/226)
         
     | 
| 
       578 
652 
     | 
    
         | 
| 
       579 
653 
     | 
    
         
             
            ## [v2.0.9] - 2016-06-08
         
     | 
| 
       580 
654 
     | 
    
         | 
| 
       581 
655 
     | 
    
         
             
            - Fix daemonization broken in #219
         
     | 
| 
       582 
     | 
    
         
            -
              - [#224](https://github.com/ 
     | 
| 
      
 656 
     | 
    
         
            +
              - [#224](https://github.com/ruby-shoryuken/shoryuken/pull/224)
         
     | 
| 
       583 
657 
     | 
    
         | 
| 
       584 
658 
     | 
    
         
             
            ## [v2.0.8] - 2016-06-07
         
     | 
| 
       585 
659 
     | 
    
         | 
| 
       586 
660 
     | 
    
         
             
            - Fix daemonization
         
     | 
| 
       587 
     | 
    
         
            -
              - [#223](https://github.com/ 
     | 
| 
      
 661 
     | 
    
         
            +
              - [#223](https://github.com/ruby-shoryuken/shoryuken/pull/223)
         
     | 
| 
       588 
662 
     | 
    
         | 
| 
       589 
663 
     | 
    
         
             
            ## [v2.0.7] - 2016-06-06
         
     | 
| 
       590 
664 
     | 
    
         | 
| 
       591 
665 
     | 
    
         
             
            - Daemonize before loading environment
         
     | 
| 
       592 
666 
     | 
    
         | 
| 
       593 
     | 
    
         
            -
              - [#219](https://github.com/ 
     | 
| 
      
 667 
     | 
    
         
            +
              - [#219](https://github.com/ruby-shoryuken/shoryuken/pull/219)
         
     | 
| 
       594 
668 
     | 
    
         | 
| 
       595 
669 
     | 
    
         
             
            - Fix initialization when using rails
         
     | 
| 
       596 
670 
     | 
    
         | 
| 
       597 
     | 
    
         
            -
              - [#197](https://github.com/ 
     | 
| 
      
 671 
     | 
    
         
            +
              - [#197](https://github.com/ruby-shoryuken/shoryuken/pull/197)
         
     | 
| 
       598 
672 
     | 
    
         | 
| 
       599 
673 
     | 
    
         
             
            - Improve message fetching
         
     | 
| 
       600 
674 
     | 
    
         | 
| 
       601 
     | 
    
         
            -
              - [#214](https://github.com/ 
     | 
| 
       602 
     | 
    
         
            -
              - [#f4640d9](https://github.com/ 
     | 
| 
      
 675 
     | 
    
         
            +
              - [#214](https://github.com/ruby-shoryuken/shoryuken/pull/214)
         
     | 
| 
      
 676 
     | 
    
         
            +
              - [#f4640d9](https://github.com/ruby-shoryuken/shoryuken/commit/f4640d9)
         
     | 
| 
       603 
677 
     | 
    
         | 
| 
       604 
678 
     | 
    
         
             
            - Fix hard shutdown if there are some busy workers when signal received
         
     | 
| 
       605 
679 
     | 
    
         | 
| 
       606 
     | 
    
         
            -
              - [#215](https://github.com/ 
     | 
| 
      
 680 
     | 
    
         
            +
              - [#215](https://github.com/ruby-shoryuken/shoryuken/pull/215)
         
     | 
| 
       607 
681 
     | 
    
         | 
| 
       608 
682 
     | 
    
         
             
            - Fix `rake console` task
         
     | 
| 
       609 
683 
     | 
    
         | 
| 
       610 
     | 
    
         
            -
              - [#208](https://github.com/ 
     | 
| 
      
 684 
     | 
    
         
            +
              - [#208](https://github.com/ruby-shoryuken/shoryuken/pull/208)
         
     | 
| 
       611 
685 
     | 
    
         | 
| 
       612 
686 
     | 
    
         
             
            - Isolate `MessageVisibilityExtender` as new middleware
         
     | 
| 
       613 
687 
     | 
    
         | 
| 
       614 
     | 
    
         
            -
              - [#199](https://github.com/ 
     | 
| 
      
 688 
     | 
    
         
            +
              - [#199](https://github.com/ruby-shoryuken/shoryuken/pull/190)
         
     | 
| 
       615 
689 
     | 
    
         | 
| 
       616 
690 
     | 
    
         
             
            - Fail on non-existent queues
         
     | 
| 
       617 
     | 
    
         
            -
              - [#196](https://github.com/ 
     | 
| 
      
 691 
     | 
    
         
            +
              - [#196](https://github.com/ruby-shoryuken/shoryuken/pull/196)
         
     | 
| 
       618 
692 
     | 
    
         | 
| 
       619 
693 
     | 
    
         
             
            ## [v2.0.6] - 2016-04-18
         
     | 
| 
       620 
694 
     | 
    
         | 
| 
       621 
695 
     | 
    
         
             
            - Fix log initialization introduced by #191
         
     | 
| 
       622 
     | 
    
         
            -
              - [#195](https://github.com/ 
     | 
| 
      
 696 
     | 
    
         
            +
              - [#195](https://github.com/ruby-shoryuken/shoryuken/pull/195)
         
     | 
| 
       623 
697 
     | 
    
         | 
| 
       624 
698 
     | 
    
         
             
            ## [v2.0.5] - 2016-04-17
         
     | 
| 
       625 
699 
     | 
    
         | 
| 
       626 
700 
     | 
    
         
             
            - Fix log initialization when using `Shoryuken::EnvironmentLoader#load`
         
     | 
| 
       627 
701 
     | 
    
         | 
| 
       628 
     | 
    
         
            -
              - [#191](https://github.com/ 
     | 
| 
      
 702 
     | 
    
         
            +
              - [#191](https://github.com/ruby-shoryuken/shoryuken/pull/191)
         
     | 
| 
       629 
703 
     | 
    
         | 
| 
       630 
704 
     | 
    
         
             
              - Fix `enqueue_at` in the ActiveJob Adapter
         
     | 
| 
       631 
     | 
    
         
            -
              - [#182](https://github.com/ 
     | 
| 
      
 705 
     | 
    
         
            +
              - [#182](https://github.com/ruby-shoryuken/shoryuken/pull/182)
         
     | 
| 
       632 
706 
     | 
    
         | 
| 
       633 
707 
     | 
    
         
             
            ## [v2.0.4] - 2016-02-04
         
     | 
| 
       634 
708 
     | 
    
         | 
| 
       635 
709 
     | 
    
         
             
            - Add Rails 3 support
         
     | 
| 
       636 
710 
     | 
    
         | 
| 
       637 
     | 
    
         
            -
              - [#175](https://github.com/ 
     | 
| 
      
 711 
     | 
    
         
            +
              - [#175](https://github.com/ruby-shoryuken/shoryuken/pull/175)
         
     | 
| 
       638 
712 
     | 
    
         | 
| 
       639 
713 
     | 
    
         
             
            - Allow symbol as a queue name in shoryuken_options
         
     | 
| 
       640 
714 
     | 
    
         | 
| 
       641 
     | 
    
         
            -
              - [#177](https://github.com/ 
     | 
| 
      
 715 
     | 
    
         
            +
              - [#177](https://github.com/ruby-shoryuken/shoryuken/pull/177)
         
     | 
| 
       642 
716 
     | 
    
         | 
| 
       643 
717 
     | 
    
         
             
            - Make sure bundler is always updated on Travis CI
         
     | 
| 
       644 
718 
     | 
    
         | 
| 
       645 
     | 
    
         
            -
              - [#176](https://github.com/ 
     | 
| 
      
 719 
     | 
    
         
            +
              - [#176](https://github.com/ruby-shoryuken/shoryuken/pull/176)
         
     | 
| 
       646 
720 
     | 
    
         | 
| 
       647 
721 
     | 
    
         
             
            - Add Rails 5 compatibility
         
     | 
| 
       648 
     | 
    
         
            -
              - [#174](https://github.com/ 
     | 
| 
      
 722 
     | 
    
         
            +
              - [#174](https://github.com/ruby-shoryuken/shoryuken/pull/174)
         
     | 
| 
       649 
723 
     | 
    
         | 
| 
       650 
724 
     | 
    
         
             
            ## [v2.0.3] - 2015-12-30
         
     | 
| 
       651 
725 
     | 
    
         | 
| 
       652 
726 
     | 
    
         
             
            - Allow multiple queues per worker
         
     | 
| 
       653 
727 
     | 
    
         | 
| 
       654 
     | 
    
         
            -
              - [#164](https://github.com/ 
     | 
| 
      
 728 
     | 
    
         
            +
              - [#164](https://github.com/ruby-shoryuken/shoryuken/pull/164)
         
     | 
| 
       655 
729 
     | 
    
         | 
| 
       656 
730 
     | 
    
         
             
            - Fix typo
         
     | 
| 
       657 
     | 
    
         
            -
              - [#166](https://github.com/ 
     | 
| 
      
 731 
     | 
    
         
            +
              - [#166](https://github.com/ruby-shoryuken/shoryuken/pull/166)
         
     | 
| 
       658 
732 
     | 
    
         | 
| 
       659 
733 
     | 
    
         
             
            ## [v2.0.2] - 2015-10-27
         
     | 
| 
       660 
734 
     | 
    
         | 
| 
       661 
735 
     | 
    
         
             
            - Fix warnings that are triggered in some cases with the raise_error matcher
         
     | 
| 
       662 
736 
     | 
    
         | 
| 
       663 
     | 
    
         
            -
              - [#144](https://github.com/ 
     | 
| 
      
 737 
     | 
    
         
            +
              - [#144](https://github.com/ruby-shoryuken/shoryuken/pull/144)
         
     | 
| 
       664 
738 
     | 
    
         | 
| 
       665 
739 
     | 
    
         
             
            - Add lifecycle event registration support
         
     | 
| 
       666 
740 
     | 
    
         | 
| 
       667 
     | 
    
         
            -
              - [#141](https://github.com/ 
     | 
| 
      
 741 
     | 
    
         
            +
              - [#141](https://github.com/ruby-shoryuken/shoryuken/pull/141)
         
     | 
| 
       668 
742 
     | 
    
         | 
| 
       669 
743 
     | 
    
         
             
            - Allow passing array of messages to send_messages
         
     | 
| 
       670 
744 
     | 
    
         | 
| 
       671 
     | 
    
         
            -
              - [#140](https://github.com/ 
     | 
| 
      
 745 
     | 
    
         
            +
              - [#140](https://github.com/ruby-shoryuken/shoryuken/pull/140)
         
     | 
| 
       672 
746 
     | 
    
         | 
| 
       673 
747 
     | 
    
         
             
            - Fix Active Job queue prefixing in Rails apps
         
     | 
| 
       674 
748 
     | 
    
         | 
| 
       675 
     | 
    
         
            -
              - [#139](https://github.com/ 
     | 
| 
      
 749 
     | 
    
         
            +
              - [#139](https://github.com/ruby-shoryuken/shoryuken/pull/139)
         
     | 
| 
       676 
750 
     | 
    
         | 
| 
       677 
751 
     | 
    
         
             
            - Enable override the default queue with a :queue option
         
     | 
| 
       678 
     | 
    
         
            -
              - [#147](https://github.com/ 
     | 
| 
      
 752 
     | 
    
         
            +
              - [#147](https://github.com/ruby-shoryuken/shoryuken/pull/147)
         
     | 
| 
       679 
753 
     | 
    
         | 
| 
       680 
754 
     | 
    
         
             
            ## [v2.0.1] - 2015-10-09
         
     | 
| 
       681 
755 
     | 
    
         | 
| 
       682 
756 
     | 
    
         
             
            - Bump aws-sdk to ~> 2
         
     | 
| 
       683 
     | 
    
         
            -
              - [#138](https://github.com/ 
     | 
| 
      
 757 
     | 
    
         
            +
              - [#138](https://github.com/ruby-shoryuken/shoryuken/pull/138)
         
     | 
| 
       684 
758 
     | 
    
         | 
| 
       685 
759 
     | 
    
         
             
            ## [v2.0.0] - 2015-09-22
         
     | 
| 
       686 
760 
     | 
    
         | 
| 
       687 
761 
     | 
    
         
             
            - Allow configuration of SQS/SNS endpoints via environment variables
         
     | 
| 
       688 
762 
     | 
    
         | 
| 
       689 
     | 
    
         
            -
              - [#130](https://github.com/ 
     | 
| 
      
 763 
     | 
    
         
            +
              - [#130](https://github.com/ruby-shoryuken/shoryuken/pull/130)
         
     | 
| 
       690 
764 
     | 
    
         | 
| 
       691 
765 
     | 
    
         
             
            - Expose queue_name in the message object
         
     | 
| 
       692 
766 
     | 
    
         | 
| 
       693 
     | 
    
         
            -
              - [#127](https://github.com/ 
     | 
| 
      
 767 
     | 
    
         
            +
              - [#127](https://github.com/ruby-shoryuken/shoryuken/pull/127)
         
     | 
| 
       694 
768 
     | 
    
         | 
| 
       695 
769 
     | 
    
         
             
            - README updates
         
     | 
| 
       696 
     | 
    
         
            -
              - [#122](https://github.com/ 
     | 
| 
       697 
     | 
    
         
            -
              - [#120](https://github.com/ 
     | 
| 
      
 770 
     | 
    
         
            +
              - [#122](https://github.com/ruby-shoryuken/shoryuken/pull/122)
         
     | 
| 
      
 771 
     | 
    
         
            +
              - [#120](https://github.com/ruby-shoryuken/shoryuken/pull/120)
         
     |