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.
Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/.devcontainer/base.Dockerfile +1 -1
  3. data/.github/workflows/push.yml +36 -0
  4. data/.github/workflows/specs.yml +40 -30
  5. data/.github/workflows/verify-action-pins.yml +16 -0
  6. data/.gitignore +2 -1
  7. data/.rspec +2 -1
  8. data/.rubocop.yml +6 -1
  9. data/.ruby-version +1 -0
  10. data/Appraisals +8 -27
  11. data/CHANGELOG.md +213 -139
  12. data/Gemfile +2 -7
  13. data/README.md +14 -26
  14. data/Rakefile +2 -0
  15. data/bin/cli/base.rb +1 -2
  16. data/bin/cli/sqs.rb +13 -5
  17. data/bin/shoryuken +2 -1
  18. data/docker-compose.yml +22 -0
  19. data/gemfiles/rails_7_0.gemfile +10 -13
  20. data/gemfiles/rails_7_1.gemfile +19 -0
  21. data/gemfiles/rails_7_2.gemfile +19 -0
  22. data/gemfiles/rails_8_0.gemfile +19 -0
  23. data/lib/shoryuken/body_parser.rb +3 -1
  24. data/lib/shoryuken/client.rb +2 -0
  25. data/lib/shoryuken/default_exception_handler.rb +2 -0
  26. data/lib/shoryuken/default_worker_registry.rb +11 -11
  27. data/lib/shoryuken/environment_loader.rb +6 -6
  28. data/lib/shoryuken/extensions/active_job_adapter.rb +13 -6
  29. data/lib/shoryuken/extensions/active_job_concurrent_send_adapter.rb +5 -5
  30. data/lib/shoryuken/extensions/active_job_extensions.rb +2 -0
  31. data/lib/shoryuken/fetcher.rb +4 -2
  32. data/lib/shoryuken/helpers/atomic_boolean.rb +44 -0
  33. data/lib/shoryuken/helpers/atomic_counter.rb +104 -0
  34. data/lib/shoryuken/helpers/atomic_hash.rb +182 -0
  35. data/lib/shoryuken/helpers/hash_utils.rb +56 -0
  36. data/lib/shoryuken/helpers/string_utils.rb +65 -0
  37. data/lib/shoryuken/inline_message.rb +22 -0
  38. data/lib/shoryuken/launcher.rb +2 -0
  39. data/lib/shoryuken/logging.rb +19 -5
  40. data/lib/shoryuken/manager.rb +15 -5
  41. data/lib/shoryuken/message.rb +2 -0
  42. data/lib/shoryuken/middleware/chain.rb +2 -0
  43. data/lib/shoryuken/middleware/server/active_record.rb +2 -0
  44. data/lib/shoryuken/middleware/server/auto_delete.rb +2 -0
  45. data/lib/shoryuken/middleware/server/auto_extend_visibility.rb +10 -10
  46. data/lib/shoryuken/middleware/server/exponential_backoff_retry.rb +5 -3
  47. data/lib/shoryuken/middleware/server/timing.rb +2 -0
  48. data/lib/shoryuken/options.rb +14 -5
  49. data/lib/shoryuken/polling/base_strategy.rb +126 -0
  50. data/lib/shoryuken/polling/queue_configuration.rb +103 -0
  51. data/lib/shoryuken/polling/strict_priority.rb +2 -0
  52. data/lib/shoryuken/polling/weighted_round_robin.rb +2 -0
  53. data/lib/shoryuken/processor.rb +5 -2
  54. data/lib/shoryuken/queue.rb +6 -4
  55. data/lib/shoryuken/runner.rb +9 -12
  56. data/lib/shoryuken/util.rb +6 -6
  57. data/lib/shoryuken/version.rb +3 -1
  58. data/lib/shoryuken/worker/default_executor.rb +2 -0
  59. data/lib/shoryuken/worker/inline_executor.rb +9 -2
  60. data/lib/shoryuken/worker.rb +2 -0
  61. data/lib/shoryuken/worker_registry.rb +2 -0
  62. data/lib/shoryuken.rb +11 -34
  63. data/renovate.json +16 -0
  64. data/shoryuken.gemspec +7 -4
  65. data/spec/integration/launcher_spec.rb +3 -4
  66. data/spec/shared_examples_for_active_job.rb +13 -8
  67. data/spec/shoryuken/body_parser_spec.rb +2 -4
  68. data/spec/shoryuken/client_spec.rb +1 -1
  69. data/spec/shoryuken/default_exception_handler_spec.rb +9 -10
  70. data/spec/shoryuken/default_worker_registry_spec.rb +1 -2
  71. data/spec/shoryuken/environment_loader_spec.rb +9 -8
  72. data/spec/shoryuken/extensions/active_job_adapter_spec.rb +2 -1
  73. data/spec/shoryuken/extensions/active_job_base_spec.rb +2 -1
  74. data/spec/shoryuken/extensions/active_job_concurrent_send_adapter_spec.rb +2 -1
  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_integration_spec.rb +96 -0
  83. data/spec/shoryuken/inline_message_spec.rb +196 -0
  84. data/spec/shoryuken/launcher_spec.rb +1 -2
  85. data/spec/shoryuken/manager_spec.rb +1 -2
  86. data/spec/shoryuken/middleware/chain_spec.rb +1 -1
  87. data/spec/shoryuken/middleware/server/auto_delete_spec.rb +1 -1
  88. data/spec/shoryuken/middleware/server/auto_extend_visibility_spec.rb +1 -1
  89. data/spec/shoryuken/middleware/server/exponential_backoff_retry_spec.rb +1 -1
  90. data/spec/shoryuken/middleware/server/timing_spec.rb +1 -1
  91. data/spec/shoryuken/options_spec.rb +4 -4
  92. data/spec/shoryuken/polling/base_strategy_spec.rb +280 -0
  93. data/spec/shoryuken/polling/queue_configuration_spec.rb +195 -0
  94. data/spec/shoryuken/polling/strict_priority_spec.rb +1 -1
  95. data/spec/shoryuken/polling/weighted_round_robin_spec.rb +1 -1
  96. data/spec/shoryuken/processor_spec.rb +1 -1
  97. data/spec/shoryuken/queue_spec.rb +2 -3
  98. data/spec/shoryuken/runner_spec.rb +1 -3
  99. data/spec/shoryuken/util_spec.rb +1 -1
  100. data/spec/shoryuken/worker/default_executor_spec.rb +1 -1
  101. data/spec/shoryuken/worker/inline_executor_spec.rb +57 -1
  102. data/spec/shoryuken/worker_spec.rb +15 -11
  103. data/spec/shoryuken_spec.rb +1 -1
  104. data/spec/spec_helper.rb +19 -4
  105. metadata +79 -35
  106. data/.codeclimate.yml +0 -20
  107. data/.github/FUNDING.yml +0 -12
  108. data/.github/dependabot.yml +0 -6
  109. data/.github/workflows/stale.yml +0 -20
  110. data/.reek.yml +0 -5
  111. data/gemfiles/aws_sdk_core_2.gemfile +0 -21
  112. data/gemfiles/rails_4_2.gemfile +0 -20
  113. data/gemfiles/rails_5_2.gemfile +0 -21
  114. data/gemfiles/rails_6_0.gemfile +0 -21
  115. data/gemfiles/rails_6_1.gemfile +0 -21
  116. data/lib/shoryuken/core_ext.rb +0 -69
  117. data/lib/shoryuken/polling/base.rb +0 -67
  118. data/shoryuken.jpg +0 -0
  119. 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/phstc/shoryuken/pull/657)
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/phstc/shoryuken/pull/654)
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/phstc/shoryuken/pull/635)
123
- - [#648](https://github.com/phstc/shoryuken/pull/648)
124
- - [#651](https://github.com/phstc/shoryuken/pull/651)
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/phstc/shoryuken/pull/644)
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/phstc/shoryuken/pull/647)
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/phstc/shoryuken/pull/649)
136
- - [#650](https://github.com/phstc/shoryuken/pull/650)
137
- - [#652](https://github.com/phstc/shoryuken/pull/652)
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/phstc/shoryuken/pull/642)
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/phstc/shoryuken/pull/603)
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/phstc/shoryuken/pull/595)
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/phstc/shoryuken/pull/589)
158
- - [#588](https://github.com/phstc/shoryuken/pull/588)
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/phstc/shoryuken/pull/583)
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/phstc/shoryuken/pull/571)
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/phstc/shoryuken/pull/569)
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/phstc/shoryuken/pull/563)
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/phstc/shoryuken/pull/534)
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/phstc/shoryuken/pull/543)
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/phstc/shoryuken/pull/536)
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/phstc/shoryuken/pull/537)
270
+ - [#537](https://github.com/ruby-shoryuken/shoryuken/pull/537)
197
271
 
198
272
  - Fix spelling of "visibility"
199
- - [#538](https://github.com/phstc/shoryuken/pull/538)
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/phstc/shoryuken/pull/533)
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/phstc/shoryuken/pull/532)
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/phstc/shoryuken/pull/530)
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/phstc/shoryuken/pull/529)
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/phstc/shoryuken/pull/492)
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/phstc/shoryuken/pull/507)
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/phstc/shoryuken/pull/514)
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/phstc/shoryuken/pull/518)
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/phstc/shoryuken/pull/480)
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/phstc/shoryuken/pull/478)
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/phstc/shoryuken/pull/473)
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/phstc/shoryuken/commit/48fcb4260c3b41a9e45fa29bb857e8fa37dcee82)
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/phstc/shoryuken/pull/473)
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/phstc/shoryuken/pull/469)
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/phstc/shoryuken/pull/462)
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/phstc/shoryuken/pull/451)
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/phstc/shoryuken/pull/449)
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/phstc/shoryuken/pull/448)
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/phstc/shoryuken/pull/436)
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/phstc/shoryuken/pull/429)
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/phstc/shoryuken/pull/433)
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/phstc/shoryuken/pull/427)
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/phstc/shoryuken/pull/426)
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/phstc/shoryuken/pull/424)
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/phstc/shoryuken/pull/417)
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/phstc/shoryuken/pull/419)
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/phstc/shoryuken/pull/420)
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/phstc/shoryuken/pull/416)
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/phstc/shoryuken/pull/414)
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/phstc/shoryuken/pull/413)
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/phstc/shoryuken/pull/409)
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/phstc/shoryuken/pull/405)
420
+ - [#405](https://github.com/ruby-shoryuken/shoryuken/pull/405)
347
421
 
348
422
  - Remove dead code
349
- - [#402](https://github.com/phstc/shoryuken/pull/402)
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/phstc/shoryuken/pull/400)
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/phstc/shoryuken/pull/397)
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/phstc/shoryuken/pull/396)
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/phstc/shoryuken/pull/395)
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/phstc/shoryuken/pull/389)
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/phstc/shoryuken/pull/389)
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/phstc/shoryuken/pull/388)
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/phstc/shoryuken/pull/381)
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/phstc/shoryuken/pull/387)
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/phstc/shoryuken/pull/378)
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/phstc/shoryuken/pull/376)
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/phstc/shoryuken/pull/373)
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/phstc/shoryuken/pull/371)
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/phstc/shoryuken/pull/362)
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/phstc/shoryuken/pull/365)
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/phstc/shoryuken/pull/366)
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/phstc/shoryuken/pull/356)
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/phstc/shoryuken/pull/354)
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/phstc/shoryuken/pull/355)
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/phstc/shoryuken/pull/350)
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/phstc/shoryuken/pull/344)
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/phstc/shoryuken/pull/344)
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/phstc/shoryuken/pull/345)
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/phstc/shoryuken/pull/341)
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/phstc/shoryuken/pull/335)
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/phstc/shoryuken/pull/332)
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/phstc/shoryuken/pull/291)
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/phstc/shoryuken/wiki/Configure-the-AWS-Client) for more details
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/phstc/shoryuken/pull/317)
551
+ - [#317](https://github.com/ruby-shoryuken/shoryuken/pull/317)
478
552
 
479
553
  - Remove deprecation warnings
480
554
 
481
- - [#326](https://github.com/phstc/shoryuken/pull/326)
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/phstc/shoryuken/pull/322)
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/phstc/shoryuken/pull/329)
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/phstc/shoryuken/pull/330)
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/phstc/shoryuken/pull/302)
572
+ - [#302](https://github.com/ruby-shoryuken/shoryuken/pull/302)
499
573
 
500
574
  - Require Celluloid ~> 17
501
575
 
502
- - [#305](https://github.com/phstc/shoryuken/pull/305)
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/phstc/shoryuken/pull/307)
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/phstc/shoryuken/pull/296)
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/phstc/shoryuken/pull/288)
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/phstc/shoryuken/pull/286)
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/phstc/shoryuken/pull/283)
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/phstc/shoryuken/pull/289)
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/phstc/shoryuken/pull/284)
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/phstc/shoryuken/pull/279)
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/phstc/shoryuken/pull/260)
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/phstc/shoryuken/pull/252)
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/phstc/shoryuken/pull/248)
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/phstc/shoryuken/pull/243)
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/phstc/shoryuken/pull/213)
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/phstc/shoryuken/issues/272)
635
+ - [#272](https://github.com/ruby-shoryuken/shoryuken/issues/272)
562
636
 
563
637
  - Deprecates initialize_aws
564
638
 
565
- - [#269](https://github.com/phstc/shoryuken/pull/269)
639
+ - [#269](https://github.com/ruby-shoryuken/shoryuken/pull/269)
566
640
 
567
- - [Other miscellaneous updates](https://github.com/phstc/shoryuken/compare/v2.0.11...v2.1.0)
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/phstc/shoryuken/commit/b255bc3)
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/phstc/shoryuken/pull/226)
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/phstc/shoryuken/pull/224)
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/phstc/shoryuken/pull/223)
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/phstc/shoryuken/pull/219)
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/phstc/shoryuken/pull/197)
671
+ - [#197](https://github.com/ruby-shoryuken/shoryuken/pull/197)
598
672
 
599
673
  - Improve message fetching
600
674
 
601
- - [#214](https://github.com/phstc/shoryuken/pull/214)
602
- - [#f4640d9](https://github.com/phstc/shoryuken/commit/f4640d9)
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/phstc/shoryuken/pull/215)
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/phstc/shoryuken/pull/208)
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/phstc/shoryuken/pull/190)
688
+ - [#199](https://github.com/ruby-shoryuken/shoryuken/pull/190)
615
689
 
616
690
  - Fail on non-existent queues
617
- - [#196](https://github.com/phstc/shoryuken/pull/196)
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/phstc/shoryuken/pull/195)
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/phstc/shoryuken/pull/191)
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/phstc/shoryuken/pull/182)
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/phstc/shoryuken/pull/175)
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/phstc/shoryuken/pull/177)
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/phstc/shoryuken/pull/176)
719
+ - [#176](https://github.com/ruby-shoryuken/shoryuken/pull/176)
646
720
 
647
721
  - Add Rails 5 compatibility
648
- - [#174](https://github.com/phstc/shoryuken/pull/174)
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/phstc/shoryuken/pull/164)
728
+ - [#164](https://github.com/ruby-shoryuken/shoryuken/pull/164)
655
729
 
656
730
  - Fix typo
657
- - [#166](https://github.com/phstc/shoryuken/pull/166)
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/phstc/shoryuken/pull/144)
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/phstc/shoryuken/pull/141)
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/phstc/shoryuken/pull/140)
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/phstc/shoryuken/pull/139)
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/phstc/shoryuken/pull/147)
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/phstc/shoryuken/pull/138)
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/phstc/shoryuken/pull/130)
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/phstc/shoryuken/pull/127)
767
+ - [#127](https://github.com/ruby-shoryuken/shoryuken/pull/127)
694
768
 
695
769
  - README updates
696
- - [#122](https://github.com/phstc/shoryuken/pull/122)
697
- - [#120](https://github.com/phstc/shoryuken/pull/120)
770
+ - [#122](https://github.com/ruby-shoryuken/shoryuken/pull/122)
771
+ - [#120](https://github.com/ruby-shoryuken/shoryuken/pull/120)