shoryuken 7.0.0.alpha1 → 7.0.0.rc1

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