shoryuken 7.0.0.alpha1 → 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/.github/workflows/push.yml +3 -3
- data/.github/workflows/specs.yml +6 -9
- data/.github/workflows/verify-action-pins.yml +1 -1
- data/.rspec +2 -1
- data/.ruby-version +1 -1
- data/Appraisals +0 -6
- data/CHANGELOG.md +186 -142
- data/Gemfile +1 -0
- data/README.md +12 -13
- data/bin/cli/base.rb +1 -2
- data/bin/cli/sqs.rb +5 -4
- data/bin/shoryuken +2 -1
- data/gemfiles/rails_7_0.gemfile +10 -10
- data/gemfiles/rails_7_1.gemfile +10 -9
- data/gemfiles/rails_7_2.gemfile +10 -9
- data/gemfiles/rails_8_0.gemfile +10 -9
- 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 +8 -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 +6 -4
- 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 +9 -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 +3 -1
- data/lib/shoryuken/worker.rb +2 -0
- data/lib/shoryuken/worker_registry.rb +2 -0
- data/lib/shoryuken.rb +8 -28
- data/shoryuken.gemspec +6 -6
- data/spec/integration/launcher_spec.rb +2 -3
- data/spec/shared_examples_for_active_job.rb +13 -8
- data/spec/shoryuken/body_parser_spec.rb +1 -2
- 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 +1 -1
- data/spec/shoryuken/worker_spec.rb +15 -11
- data/spec/shoryuken_spec.rb +1 -1
- data/spec/spec_helper.rb +16 -0
- metadata +60 -27
- data/.github/FUNDING.yml +0 -12
- data/gemfiles/rails_6_1.gemfile +0 -18
- 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,7 +1,49 @@
|
|
|
1
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)
|
|
2
44
|
|
|
3
45
|
- Enhancement: Use -1 as thread priority
|
|
4
|
-
- [#825](
|
|
46
|
+
- [#825](https://github.com/ruby-shoryuken/shoryuken/pull/825)
|
|
5
47
|
|
|
6
48
|
- Enhancement: Add Support for message_attributes to InlineExecutor
|
|
7
49
|
- [#835](https://github.com/ruby-shoryuken/shoryuken/pull/835)
|
|
@@ -19,11 +61,13 @@
|
|
|
19
61
|
- [#782](https://github.com/ruby-shoryuken/shoryuken/pull/782)
|
|
20
62
|
- [#783](https://github.com/ruby-shoryuken/shoryuken/pull/783)
|
|
21
63
|
|
|
22
|
-
- Breaking: Remove support of Ruby versions older than
|
|
64
|
+
- Breaking: Remove support of Ruby versions older than 3.1
|
|
23
65
|
- [#783](https://github.com/ruby-shoryuken/shoryuken/pull/783)
|
|
66
|
+
- [#850](https://github.com/ruby-shoryuken/shoryuken/pull/850)
|
|
24
67
|
|
|
25
|
-
- Breaking: Remove support of Rails versions older than
|
|
68
|
+
- Breaking: Remove support of Rails versions older than 7.0
|
|
26
69
|
- [#783](https://github.com/ruby-shoryuken/shoryuken/pull/783)
|
|
70
|
+
- [#850](https://github.com/ruby-shoryuken/shoryuken/pull/850)
|
|
27
71
|
|
|
28
72
|
- Breaking: Require `aws-sdk-sqs` `>=` `1.66`:
|
|
29
73
|
- [#783](https://github.com/ruby-shoryuken/shoryuken/pull/783)
|
|
@@ -138,590 +182,590 @@
|
|
|
138
182
|
## [v5.2.0] - 2021-02-26
|
|
139
183
|
|
|
140
184
|
- Set `executions` correctly for ActiveJob jobs
|
|
141
|
-
- [#657](https://github.com/
|
|
185
|
+
- [#657](https://github.com/ruby-shoryuken/shoryuken/pull/657)
|
|
142
186
|
|
|
143
187
|
## [v5.1.1] - 2021-02-10
|
|
144
188
|
|
|
145
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
|
|
146
|
-
- [#654](https://github.com/
|
|
190
|
+
- [#654](https://github.com/ruby-shoryuken/shoryuken/pull/654)
|
|
147
191
|
|
|
148
192
|
## [v5.1.0] - 2021-02-06
|
|
149
193
|
|
|
150
194
|
- Add support for specifying SQS SendMessage parameters with ActiveJob `.set`
|
|
151
195
|
|
|
152
|
-
- [#635](https://github.com/
|
|
153
|
-
- [#648](https://github.com/
|
|
154
|
-
- [#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)
|
|
155
199
|
|
|
156
200
|
- Unpause FIFO queues on worker completion
|
|
157
201
|
|
|
158
|
-
- [#644](https://github.com/
|
|
202
|
+
- [#644](https://github.com/ruby-shoryuken/shoryuken/pull/644)
|
|
159
203
|
|
|
160
204
|
- Add multiple versions of Rails to test matrix
|
|
161
205
|
|
|
162
|
-
- [#647](https://github.com/
|
|
206
|
+
- [#647](https://github.com/ruby-shoryuken/shoryuken/pull/647)
|
|
163
207
|
|
|
164
208
|
- Migrate from Travis CI to Github Actions
|
|
165
|
-
- [#649](https://github.com/
|
|
166
|
-
- [#650](https://github.com/
|
|
167
|
-
- [#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)
|
|
168
212
|
|
|
169
213
|
## [v5.0.6] - 2020-12-30
|
|
170
214
|
|
|
171
215
|
- Load ShoryukenConcurrentSendAdapter when loading Rails
|
|
172
|
-
- [#642](https://github.com/
|
|
216
|
+
- [#642](https://github.com/ruby-shoryuken/shoryuken/pull/642)
|
|
173
217
|
|
|
174
218
|
## [v5.0.5] - 2020-06-07
|
|
175
219
|
|
|
176
220
|
- Add ability to configure queue by ARN
|
|
177
|
-
- [#603](https://github.com/
|
|
221
|
+
- [#603](https://github.com/ruby-shoryuken/shoryuken/pull/603)
|
|
178
222
|
|
|
179
223
|
## [v5.0.4] - 2020-02-20
|
|
180
224
|
|
|
181
225
|
- Add endpoint option to SQS CLI
|
|
182
|
-
- [#595](https://github.com/
|
|
226
|
+
- [#595](https://github.com/ruby-shoryuken/shoryuken/pull/595)
|
|
183
227
|
|
|
184
228
|
## [v5.0.3] - 2019-11-30
|
|
185
229
|
|
|
186
230
|
- Add support for sending messages asynchronous with Active Job using `shoryuken_concurrent_send`
|
|
187
|
-
- [#589](https://github.com/
|
|
188
|
-
- [#588](https://github.com/
|
|
231
|
+
- [#589](https://github.com/ruby-shoryuken/shoryuken/pull/589)
|
|
232
|
+
- [#588](https://github.com/ruby-shoryuken/shoryuken/pull/588)
|
|
189
233
|
|
|
190
234
|
## [v5.0.2] - 2019-11-02
|
|
191
235
|
|
|
192
236
|
- Fix Queue order is reversed if passed through CLI
|
|
193
|
-
- [#571](https://github.com/
|
|
237
|
+
- [#571](https://github.com/ruby-shoryuken/shoryuken/pull/583)
|
|
194
238
|
|
|
195
239
|
## [v5.0.1] - 2019-06-19
|
|
196
240
|
|
|
197
241
|
- Add back attr_accessor for `stop_callback`
|
|
198
|
-
- [#571](https://github.com/
|
|
242
|
+
- [#571](https://github.com/ruby-shoryuken/shoryuken/pull/571)
|
|
199
243
|
|
|
200
244
|
## [v5.0.0] - 2019-06-18
|
|
201
245
|
|
|
202
246
|
- Fix bug where empty queues were not paused in batch processing mode
|
|
203
247
|
|
|
204
|
-
- [#569](https://github.com/
|
|
248
|
+
- [#569](https://github.com/ruby-shoryuken/shoryuken/pull/569)
|
|
205
249
|
|
|
206
250
|
- Preserve batch limit when receiving messages from a FIFO queue
|
|
207
251
|
|
|
208
|
-
- [#563](https://github.com/
|
|
252
|
+
- [#563](https://github.com/ruby-shoryuken/shoryuken/pull/563)
|
|
209
253
|
|
|
210
254
|
- Replace static options with instance options
|
|
211
|
-
- [#534](https://github.com/
|
|
255
|
+
- [#534](https://github.com/ruby-shoryuken/shoryuken/pull/534)
|
|
212
256
|
|
|
213
257
|
## [v4.0.3] - 2019-01-06
|
|
214
258
|
|
|
215
259
|
- Support delay per processing group
|
|
216
|
-
- [#543](https://github.com/
|
|
260
|
+
- [#543](https://github.com/ruby-shoryuken/shoryuken/pull/543)
|
|
217
261
|
|
|
218
262
|
## [v4.0.2] - 2018-11-26
|
|
219
263
|
|
|
220
264
|
- Fix the delegated methods to public warning
|
|
221
265
|
|
|
222
|
-
- [#536](https://github.com/
|
|
266
|
+
- [#536](https://github.com/ruby-shoryuken/shoryuken/pull/536)
|
|
223
267
|
|
|
224
268
|
- Specify exception class to `raise_error` matcher warning
|
|
225
269
|
|
|
226
|
-
- [#537](https://github.com/
|
|
270
|
+
- [#537](https://github.com/ruby-shoryuken/shoryuken/pull/537)
|
|
227
271
|
|
|
228
272
|
- Fix spelling of "visibility"
|
|
229
|
-
- [#538](https://github.com/
|
|
273
|
+
- [#538](https://github.com/ruby-shoryuken/shoryuken/pull/538)
|
|
230
274
|
|
|
231
275
|
## [v4.0.1] - 2018-11-21
|
|
232
276
|
|
|
233
277
|
- Allow caching visibility_timeout lookups
|
|
234
278
|
|
|
235
|
-
- [#533](https://github.com/
|
|
279
|
+
- [#533](https://github.com/ruby-shoryuken/shoryuken/pull/533)
|
|
236
280
|
|
|
237
281
|
- Add queue name to inline executor
|
|
238
|
-
- [#532](https://github.com/
|
|
282
|
+
- [#532](https://github.com/ruby-shoryuken/shoryuken/pull/532)
|
|
239
283
|
|
|
240
284
|
## [v4.0.0] - 2018-11-01
|
|
241
285
|
|
|
242
286
|
- Process messages to the same message group ID one by one
|
|
243
|
-
- [#530](https://github.com/
|
|
287
|
+
- [#530](https://github.com/ruby-shoryuken/shoryuken/pull/530)
|
|
244
288
|
|
|
245
289
|
## [v3.3.1] - 2018-10-30
|
|
246
290
|
|
|
247
291
|
- Memoization of boolean causes extra calls to SQS
|
|
248
|
-
- [#529](https://github.com/
|
|
292
|
+
- [#529](https://github.com/ruby-shoryuken/shoryuken/pull/529)
|
|
249
293
|
|
|
250
294
|
## [v3.3.0] - 2018-09-30
|
|
251
295
|
|
|
252
296
|
- Add support for TSTP
|
|
253
297
|
|
|
254
|
-
- [#492](https://github.com/
|
|
298
|
+
- [#492](https://github.com/ruby-shoryuken/shoryuken/pull/492)
|
|
255
299
|
|
|
256
300
|
- Support an empty list of queues as a CLI argument
|
|
257
301
|
|
|
258
|
-
- [#507](https://github.com/
|
|
302
|
+
- [#507](https://github.com/ruby-shoryuken/shoryuken/pull/507)
|
|
259
303
|
|
|
260
304
|
- Add batch support for inline workers
|
|
261
305
|
|
|
262
|
-
- [#514](https://github.com/
|
|
306
|
+
- [#514](https://github.com/ruby-shoryuken/shoryuken/pull/514)
|
|
263
307
|
|
|
264
308
|
- Make InlineExecutor to behave as the DefaultExecutor when calling perform_in
|
|
265
|
-
- [#518](https://github.com/
|
|
309
|
+
- [#518](https://github.com/ruby-shoryuken/shoryuken/pull/518)
|
|
266
310
|
|
|
267
311
|
## [v3.2.3] - 2018-03-25
|
|
268
312
|
|
|
269
313
|
- Don't force eager load for Rails 5
|
|
270
314
|
|
|
271
|
-
- [#480](https://github.com/
|
|
315
|
+
- [#480](https://github.com/ruby-shoryuken/shoryuken/pull/480)
|
|
272
316
|
|
|
273
317
|
- Allow Batch Size to be Specified for Requeue
|
|
274
318
|
|
|
275
|
-
- [#478](https://github.com/
|
|
319
|
+
- [#478](https://github.com/ruby-shoryuken/shoryuken/pull/478)
|
|
276
320
|
|
|
277
321
|
- Support FIFO queues in `shoryuken sqs` commands
|
|
278
|
-
- [#473](https://github.com/
|
|
322
|
+
- [#473](https://github.com/ruby-shoryuken/shoryuken/pull/473)
|
|
279
323
|
|
|
280
324
|
## [v3.2.2] - 2018-02-13
|
|
281
325
|
|
|
282
326
|
- Fix requeue' for FIFO queues
|
|
283
|
-
- [#48fcb42](https://github.com/
|
|
327
|
+
- [#48fcb42](https://github.com/ruby-shoryuken/shoryuken/commit/48fcb4260c3b41a9e45fa29bb857e8fa37dcee82)
|
|
284
328
|
|
|
285
329
|
## [v3.2.1] - 2018-02-12
|
|
286
330
|
|
|
287
331
|
- Support FIFO queues in `shoryuken sqs` commands
|
|
288
332
|
|
|
289
|
-
- [#473](https://github.com/
|
|
333
|
+
- [#473](https://github.com/ruby-shoryuken/shoryuken/pull/473)
|
|
290
334
|
|
|
291
335
|
- Allow customizing the default executor launcher
|
|
292
336
|
|
|
293
|
-
- [#469](https://github.com/
|
|
337
|
+
- [#469](https://github.com/ruby-shoryuken/shoryuken/pull/469)
|
|
294
338
|
|
|
295
339
|
- Exclude job_id from message deduplication when ActiveJob
|
|
296
|
-
- [#462](https://github.com/
|
|
340
|
+
- [#462](https://github.com/ruby-shoryuken/shoryuken/pull/462)
|
|
297
341
|
|
|
298
342
|
## [v3.2.0] - 2018-01-03
|
|
299
343
|
|
|
300
344
|
- Preserve parent worker class options
|
|
301
345
|
|
|
302
|
-
- [#451](https://github.com/
|
|
346
|
+
- [#451](https://github.com/ruby-shoryuken/shoryuken/pull/451)
|
|
303
347
|
|
|
304
348
|
- Add -t (shutdown timeout) option to CL
|
|
305
349
|
|
|
306
|
-
- [#449](https://github.com/
|
|
350
|
+
- [#449](https://github.com/ruby-shoryuken/shoryuken/pull/449)
|
|
307
351
|
|
|
308
352
|
- Support inline (Active Job like) for standard workers
|
|
309
|
-
- [#448](https://github.com/
|
|
353
|
+
- [#448](https://github.com/ruby-shoryuken/shoryuken/pull/448)
|
|
310
354
|
|
|
311
355
|
## [v3.1.12] - 2017-09-25
|
|
312
356
|
|
|
313
357
|
- Reduce fetch log verbosity
|
|
314
|
-
- [#436](https://github.com/
|
|
358
|
+
- [#436](https://github.com/ruby-shoryuken/shoryuken/pull/436)
|
|
315
359
|
|
|
316
360
|
## [v3.1.11] - 2017-09-02
|
|
317
361
|
|
|
318
362
|
- Auto retry (up to 3 times) fetch errors
|
|
319
|
-
- [#429](https://github.com/
|
|
363
|
+
- [#429](https://github.com/ruby-shoryuken/shoryuken/pull/429)
|
|
320
364
|
|
|
321
365
|
## [v3.1.10] - 2017-09-02
|
|
322
366
|
|
|
323
367
|
- Make Shoryuken compatible with AWS SDK 3 and 2
|
|
324
|
-
- [#433](https://github.com/
|
|
368
|
+
- [#433](https://github.com/ruby-shoryuken/shoryuken/pull/433)
|
|
325
369
|
|
|
326
370
|
## [v3.1.9] - 2017-08-24
|
|
327
371
|
|
|
328
372
|
- Add support for adding a middleware to the front of chain
|
|
329
373
|
|
|
330
|
-
- [#427](https://github.com/
|
|
374
|
+
- [#427](https://github.com/ruby-shoryuken/shoryuken/pull/427)
|
|
331
375
|
|
|
332
376
|
- Add support for dispatch fire event
|
|
333
|
-
- [#426](https://github.com/
|
|
377
|
+
- [#426](https://github.com/ruby-shoryuken/shoryuken/pull/426)
|
|
334
378
|
|
|
335
379
|
## [v3.1.8] - 2017-08-17
|
|
336
380
|
|
|
337
381
|
- Make Polling strategy backward compatibility
|
|
338
|
-
- [#424](https://github.com/
|
|
382
|
+
- [#424](https://github.com/ruby-shoryuken/shoryuken/pull/424)
|
|
339
383
|
|
|
340
384
|
## [v3.1.7] - 2017-07-31
|
|
341
385
|
|
|
342
386
|
- Allow polling strategy per group
|
|
343
387
|
|
|
344
|
-
- [#417](https://github.com/
|
|
388
|
+
- [#417](https://github.com/ruby-shoryuken/shoryuken/pull/417)
|
|
345
389
|
|
|
346
390
|
- Add support for creating FIFO queues
|
|
347
391
|
|
|
348
|
-
- [#419](https://github.com/
|
|
392
|
+
- [#419](https://github.com/ruby-shoryuken/shoryuken/pull/419)
|
|
349
393
|
|
|
350
394
|
- Allow receive message options per queue
|
|
351
|
-
- [#420](https://github.com/
|
|
395
|
+
- [#420](https://github.com/ruby-shoryuken/shoryuken/pull/420)
|
|
352
396
|
|
|
353
397
|
## [v3.1.6] - 2017-07-24
|
|
354
398
|
|
|
355
399
|
- Fix issue with dispatch_loop and delays
|
|
356
|
-
- [#416](https://github.com/
|
|
400
|
+
- [#416](https://github.com/ruby-shoryuken/shoryuken/pull/416)
|
|
357
401
|
|
|
358
402
|
## [v3.1.5] - 2017-07-23
|
|
359
403
|
|
|
360
404
|
- Fix memory leak
|
|
361
405
|
|
|
362
|
-
- [#414](https://github.com/
|
|
406
|
+
- [#414](https://github.com/ruby-shoryuken/shoryuken/pull/414)
|
|
363
407
|
|
|
364
408
|
- Fail fast on bad queue URLs
|
|
365
|
-
- [#413](https://github.com/
|
|
409
|
+
- [#413](https://github.com/ruby-shoryuken/shoryuken/pull/413)
|
|
366
410
|
|
|
367
411
|
## [v3.1.4] - 2017-07-14
|
|
368
412
|
|
|
369
413
|
- Require forwardable allowding to call `shoryuken` without `bundle exec`
|
|
370
|
-
- [#409](https://github.com/
|
|
414
|
+
- [#409](https://github.com/ruby-shoryuken/shoryuken/pull/409)
|
|
371
415
|
|
|
372
416
|
## [v3.1.3] - 2017-07-11
|
|
373
417
|
|
|
374
418
|
- Add queue prefixing support for groups
|
|
375
419
|
|
|
376
|
-
- [#405](https://github.com/
|
|
420
|
+
- [#405](https://github.com/ruby-shoryuken/shoryuken/pull/405)
|
|
377
421
|
|
|
378
422
|
- Remove dead code
|
|
379
|
-
- [#402](https://github.com/
|
|
423
|
+
- [#402](https://github.com/ruby-shoryuken/shoryuken/pull/402)
|
|
380
424
|
|
|
381
425
|
## [v3.1.2] - 2017-07-06
|
|
382
426
|
|
|
383
427
|
- Fix stack level too deep on Ubuntu
|
|
384
|
-
- [#400](https://github.com/
|
|
428
|
+
- [#400](https://github.com/ruby-shoryuken/shoryuken/pull/400)
|
|
385
429
|
|
|
386
430
|
## [v3.1.1] - 2017-07-05
|
|
387
431
|
|
|
388
432
|
- Reduce log verbosity introduced in 3.1.0
|
|
389
433
|
|
|
390
|
-
- [#397](https://github.com/
|
|
434
|
+
- [#397](https://github.com/ruby-shoryuken/shoryuken/pull/397)
|
|
391
435
|
|
|
392
436
|
- Try to prevent stack level too deep on Ubuntu
|
|
393
|
-
- [#396](https://github.com/
|
|
437
|
+
- [#396](https://github.com/ruby-shoryuken/shoryuken/pull/396)
|
|
394
438
|
|
|
395
439
|
## [v3.1.0] - 2017-07-02
|
|
396
440
|
|
|
397
441
|
- Add shoryuken sqs delete command
|
|
398
442
|
|
|
399
|
-
- [#395](https://github.com/
|
|
443
|
+
- [#395](https://github.com/ruby-shoryuken/shoryuken/pull/395)
|
|
400
444
|
|
|
401
445
|
- Add processing groups support; Concurrency per queue support
|
|
402
446
|
|
|
403
|
-
- [#389](https://github.com/
|
|
447
|
+
- [#389](https://github.com/ruby-shoryuken/shoryuken/pull/389)
|
|
404
448
|
|
|
405
449
|
- Terminate Shoryuken if the fetcher crashes
|
|
406
|
-
- [#389](https://github.com/
|
|
450
|
+
- [#389](https://github.com/ruby-shoryuken/shoryuken/pull/389)
|
|
407
451
|
|
|
408
452
|
## [v3.0.11] - 2017-06-24
|
|
409
453
|
|
|
410
454
|
- Add shoryuken sqs create command
|
|
411
|
-
- [#388](https://github.com/
|
|
455
|
+
- [#388](https://github.com/ruby-shoryuken/shoryuken/pull/388)
|
|
412
456
|
|
|
413
457
|
## [v3.0.10] - 2017-06-24
|
|
414
458
|
|
|
415
459
|
- Allow aws sdk v3
|
|
416
460
|
|
|
417
|
-
- [#381](https://github.com/
|
|
461
|
+
- [#381](https://github.com/ruby-shoryuken/shoryuken/pull/381)
|
|
418
462
|
|
|
419
463
|
- Allow configuring Rails via the config file
|
|
420
|
-
- [#387](https://github.com/
|
|
464
|
+
- [#387](https://github.com/ruby-shoryuken/shoryuken/pull/387)
|
|
421
465
|
|
|
422
466
|
## [v3.0.9] - 2017-06-05
|
|
423
467
|
|
|
424
468
|
- Allow configuring queue URLs instead of names
|
|
425
|
-
- [#378](https://github.com/
|
|
469
|
+
- [#378](https://github.com/ruby-shoryuken/shoryuken/pull/378)
|
|
426
470
|
|
|
427
471
|
## [v3.0.8] - 2017-06-02
|
|
428
472
|
|
|
429
473
|
- Fix miss handling empty batch fetches
|
|
430
474
|
|
|
431
|
-
- [#376](https://github.com/
|
|
475
|
+
- [#376](https://github.com/ruby-shoryuken/shoryuken/pull/376)
|
|
432
476
|
|
|
433
477
|
- Various minor styling changes :lipstick:
|
|
434
478
|
|
|
435
|
-
- [#373](https://github.com/
|
|
479
|
+
- [#373](https://github.com/ruby-shoryuken/shoryuken/pull/373)
|
|
436
480
|
|
|
437
481
|
- Logout when batch delete returns any failure
|
|
438
|
-
- [#371](https://github.com/
|
|
482
|
+
- [#371](https://github.com/ruby-shoryuken/shoryuken/pull/371)
|
|
439
483
|
|
|
440
484
|
## [v3.0.7] - 2017-05-18
|
|
441
485
|
|
|
442
486
|
- Trigger events for dispatch
|
|
443
487
|
|
|
444
|
-
- [#362](https://github.com/
|
|
488
|
+
- [#362](https://github.com/ruby-shoryuken/shoryuken/pull/362)
|
|
445
489
|
|
|
446
490
|
- Log (warn) exponential backoff tries
|
|
447
491
|
|
|
448
|
-
- [#365](https://github.com/
|
|
492
|
+
- [#365](https://github.com/ruby-shoryuken/shoryuken/pull/365)
|
|
449
493
|
|
|
450
494
|
- Fix displaying of long queue names in `shoryuken sqs ls`
|
|
451
|
-
- [#366](https://github.com/
|
|
495
|
+
- [#366](https://github.com/ruby-shoryuken/shoryuken/pull/366)
|
|
452
496
|
|
|
453
497
|
## [v3.0.6] - 2017-04-11
|
|
454
498
|
|
|
455
499
|
- Fix delay option type
|
|
456
|
-
- [#356](https://github.com/
|
|
500
|
+
- [#356](https://github.com/ruby-shoryuken/shoryuken/pull/356)
|
|
457
501
|
|
|
458
502
|
## [v3.0.5] - 2017-04-09
|
|
459
503
|
|
|
460
504
|
- Pause endless dispatcher to avoid CPU overload
|
|
461
505
|
|
|
462
|
-
- [#354](https://github.com/
|
|
506
|
+
- [#354](https://github.com/ruby-shoryuken/shoryuken/pull/354)
|
|
463
507
|
|
|
464
508
|
- Auto log processor errors
|
|
465
509
|
|
|
466
|
-
- [#355](https://github.com/
|
|
510
|
+
- [#355](https://github.com/ruby-shoryuken/shoryuken/pull/355)
|
|
467
511
|
|
|
468
512
|
- Add a delay as a CLI param
|
|
469
513
|
|
|
470
|
-
- [#350](https://github.com/
|
|
514
|
+
- [#350](https://github.com/ruby-shoryuken/shoryuken/pull/350)
|
|
471
515
|
|
|
472
516
|
- Add `sqs purge` command. See https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_PurgeQueue.html
|
|
473
|
-
- [#344](https://github.com/
|
|
517
|
+
- [#344](https://github.com/ruby-shoryuken/shoryuken/pull/344)
|
|
474
518
|
|
|
475
519
|
## [v3.0.4] - 2017-03-24
|
|
476
520
|
|
|
477
521
|
- Add `sqs purge` command. See https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_PurgeQueue.html
|
|
478
522
|
|
|
479
|
-
- [#344](https://github.com/
|
|
523
|
+
- [#344](https://github.com/ruby-shoryuken/shoryuken/pull/344)
|
|
480
524
|
|
|
481
525
|
- 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/
|
|
526
|
+
- [#345](https://github.com/ruby-shoryuken/shoryuken/pull/345)
|
|
483
527
|
|
|
484
528
|
## [v3.0.3] - 2017-03-19
|
|
485
529
|
|
|
486
530
|
- Update `sqs` CLI commands to use `get_queue_url` when appropriated
|
|
487
|
-
- [#341](https://github.com/
|
|
531
|
+
- [#341](https://github.com/ruby-shoryuken/shoryuken/pull/341)
|
|
488
532
|
|
|
489
533
|
## [v3.0.2] - 2017-03-19
|
|
490
534
|
|
|
491
535
|
- Fix custom SQS client initialization
|
|
492
|
-
- [#335](https://github.com/
|
|
536
|
+
- [#335](https://github.com/ruby-shoryuken/shoryuken/pull/335)
|
|
493
537
|
|
|
494
538
|
## [v3.0.1] - 2017-03-13
|
|
495
539
|
|
|
496
540
|
- Fix commands sqs mv and dump `options.delete` checker
|
|
497
|
-
- [#332](https://github.com/
|
|
541
|
+
- [#332](https://github.com/ruby-shoryuken/shoryuken/pull/332)
|
|
498
542
|
|
|
499
543
|
## [v3.0.0] - 2017-03-12
|
|
500
544
|
|
|
501
545
|
- Replace Celluloid with Concurrent Ruby
|
|
502
546
|
|
|
503
|
-
- [#291](https://github.com/
|
|
547
|
+
- [#291](https://github.com/ruby-shoryuken/shoryuken/pull/291)
|
|
504
548
|
|
|
505
|
-
- 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
|
|
506
550
|
|
|
507
|
-
- [#317](https://github.com/
|
|
551
|
+
- [#317](https://github.com/ruby-shoryuken/shoryuken/pull/317)
|
|
508
552
|
|
|
509
553
|
- Remove deprecation warnings
|
|
510
554
|
|
|
511
|
-
- [#326](https://github.com/
|
|
555
|
+
- [#326](https://github.com/ruby-shoryuken/shoryuken/pull/326)
|
|
512
556
|
|
|
513
557
|
- Allow dynamic adding queues
|
|
514
558
|
|
|
515
|
-
- [#322](https://github.com/
|
|
559
|
+
- [#322](https://github.com/ruby-shoryuken/shoryuken/pull/322)
|
|
516
560
|
|
|
517
561
|
- Support retry_intervals passed in as a lambda. Auto coerce intervals into integer
|
|
518
562
|
|
|
519
|
-
- [#329](https://github.com/
|
|
563
|
+
- [#329](https://github.com/ruby-shoryuken/shoryuken/pull/329)
|
|
520
564
|
|
|
521
565
|
- Add SQS commands `shoryuken help sqs`, such as `ls`, `mv`, `dump` and `requeue`
|
|
522
|
-
- [#330](https://github.com/
|
|
566
|
+
- [#330](https://github.com/ruby-shoryuken/shoryuken/pull/330)
|
|
523
567
|
|
|
524
568
|
## [v2.1.3] - 2017-01-27
|
|
525
569
|
|
|
526
570
|
- Show a warn message when batch isn't supported
|
|
527
571
|
|
|
528
|
-
- [#302](https://github.com/
|
|
572
|
+
- [#302](https://github.com/ruby-shoryuken/shoryuken/pull/302)
|
|
529
573
|
|
|
530
574
|
- Require Celluloid ~> 17
|
|
531
575
|
|
|
532
|
-
- [#305](https://github.com/
|
|
576
|
+
- [#305](https://github.com/ruby-shoryuken/shoryuken/pull/305)
|
|
533
577
|
|
|
534
578
|
- Fix excessive logging when 0 messages found
|
|
535
|
-
- [#307](https://github.com/
|
|
579
|
+
- [#307](https://github.com/ruby-shoryuken/shoryuken/pull/307)
|
|
536
580
|
|
|
537
581
|
## [v2.1.2] - 2016-12-22
|
|
538
582
|
|
|
539
583
|
- Fix loading `logfile` from shoryuken.yml
|
|
540
584
|
|
|
541
|
-
- [#296](https://github.com/
|
|
585
|
+
- [#296](https://github.com/ruby-shoryuken/shoryuken/pull/296)
|
|
542
586
|
|
|
543
587
|
- Add support for Strict priority polling (pending documentation)
|
|
544
588
|
|
|
545
|
-
- [#288](https://github.com/
|
|
589
|
+
- [#288](https://github.com/ruby-shoryuken/shoryuken/pull/288)
|
|
546
590
|
|
|
547
591
|
- Add `test_workers` for end-to-end testing supporting
|
|
548
592
|
|
|
549
|
-
- [#286](https://github.com/
|
|
593
|
+
- [#286](https://github.com/ruby-shoryuken/shoryuken/pull/286)
|
|
550
594
|
|
|
551
595
|
- Update README documenting `configure_client` and `configure_server`
|
|
552
596
|
|
|
553
|
-
- [#283](https://github.com/
|
|
597
|
+
- [#283](https://github.com/ruby-shoryuken/shoryuken/pull/283)
|
|
554
598
|
|
|
555
599
|
- Fix memory leak caused by async tracking busy threads
|
|
556
600
|
|
|
557
|
-
- [#289](https://github.com/
|
|
601
|
+
- [#289](https://github.com/ruby-shoryuken/shoryuken/pull/289)
|
|
558
602
|
|
|
559
603
|
- Refactor fetcher, polling strategy and manager
|
|
560
|
-
- [#284](https://github.com/
|
|
604
|
+
- [#284](https://github.com/ruby-shoryuken/shoryuken/pull/284)
|
|
561
605
|
|
|
562
606
|
## [v2.1.1] - 2016-12-05
|
|
563
607
|
|
|
564
608
|
- Fix aws deprecation warning message
|
|
565
|
-
- [#279](https://github.com/
|
|
609
|
+
- [#279](https://github.com/ruby-shoryuken/shoryuken/pull/279)
|
|
566
610
|
|
|
567
611
|
## [v2.1.0] - 2016-12-03
|
|
568
612
|
|
|
569
613
|
- Fix celluloid "running in BACKPORTED mode" warning
|
|
570
614
|
|
|
571
|
-
- [#260](https://github.com/
|
|
615
|
+
- [#260](https://github.com/ruby-shoryuken/shoryuken/pull/260)
|
|
572
616
|
|
|
573
617
|
- Allow setting the aws configuration in 'Shoryuken.configure_server'
|
|
574
618
|
|
|
575
|
-
- [#252](https://github.com/
|
|
619
|
+
- [#252](https://github.com/ruby-shoryuken/shoryuken/pull/252)
|
|
576
620
|
|
|
577
621
|
- Allow requiring a file or dir a through `-r`
|
|
578
622
|
|
|
579
|
-
- [#248](https://github.com/
|
|
623
|
+
- [#248](https://github.com/ruby-shoryuken/shoryuken/pull/248)
|
|
580
624
|
|
|
581
625
|
- Reduce info log verbosity
|
|
582
626
|
|
|
583
|
-
- [#243](https://github.com/
|
|
627
|
+
- [#243](https://github.com/ruby-shoryuken/shoryuken/pull/243)
|
|
584
628
|
|
|
585
629
|
- Fix auto extender when using ActiveJob
|
|
586
630
|
|
|
587
|
-
- [#3213](https://github.com/
|
|
631
|
+
- [#3213](https://github.com/ruby-shoryuken/shoryuken/pull/213)
|
|
588
632
|
|
|
589
633
|
- Add FIFO queue support
|
|
590
634
|
|
|
591
|
-
- [#272](https://github.com/
|
|
635
|
+
- [#272](https://github.com/ruby-shoryuken/shoryuken/issues/272)
|
|
592
636
|
|
|
593
637
|
- Deprecates initialize_aws
|
|
594
638
|
|
|
595
|
-
- [#269](https://github.com/
|
|
639
|
+
- [#269](https://github.com/ruby-shoryuken/shoryuken/pull/269)
|
|
596
640
|
|
|
597
|
-
- [Other miscellaneous updates](https://github.com/
|
|
641
|
+
- [Other miscellaneous updates](https://github.com/ruby-shoryuken/shoryuken/compare/v2.0.11...v2.1.0)
|
|
598
642
|
|
|
599
643
|
## [v2.0.11] - 2016-07-02
|
|
600
644
|
|
|
601
645
|
- Same as 2.0.10. Unfortunately 2.0.10 was removed `yanked` by mistake from RubyGems.
|
|
602
|
-
- [#b255bc3](https://github.com/
|
|
646
|
+
- [#b255bc3](https://github.com/ruby-shoryuken/shoryuken/commit/b255bc3)
|
|
603
647
|
|
|
604
648
|
## [v2.0.10] - 2016-06-09
|
|
605
649
|
|
|
606
650
|
- Fix manager #225
|
|
607
|
-
- [#226](https://github.com/
|
|
651
|
+
- [#226](https://github.com/ruby-shoryuken/shoryuken/pull/226)
|
|
608
652
|
|
|
609
653
|
## [v2.0.9] - 2016-06-08
|
|
610
654
|
|
|
611
655
|
- Fix daemonization broken in #219
|
|
612
|
-
- [#224](https://github.com/
|
|
656
|
+
- [#224](https://github.com/ruby-shoryuken/shoryuken/pull/224)
|
|
613
657
|
|
|
614
658
|
## [v2.0.8] - 2016-06-07
|
|
615
659
|
|
|
616
660
|
- Fix daemonization
|
|
617
|
-
- [#223](https://github.com/
|
|
661
|
+
- [#223](https://github.com/ruby-shoryuken/shoryuken/pull/223)
|
|
618
662
|
|
|
619
663
|
## [v2.0.7] - 2016-06-06
|
|
620
664
|
|
|
621
665
|
- Daemonize before loading environment
|
|
622
666
|
|
|
623
|
-
- [#219](https://github.com/
|
|
667
|
+
- [#219](https://github.com/ruby-shoryuken/shoryuken/pull/219)
|
|
624
668
|
|
|
625
669
|
- Fix initialization when using rails
|
|
626
670
|
|
|
627
|
-
- [#197](https://github.com/
|
|
671
|
+
- [#197](https://github.com/ruby-shoryuken/shoryuken/pull/197)
|
|
628
672
|
|
|
629
673
|
- Improve message fetching
|
|
630
674
|
|
|
631
|
-
- [#214](https://github.com/
|
|
632
|
-
- [#f4640d9](https://github.com/
|
|
675
|
+
- [#214](https://github.com/ruby-shoryuken/shoryuken/pull/214)
|
|
676
|
+
- [#f4640d9](https://github.com/ruby-shoryuken/shoryuken/commit/f4640d9)
|
|
633
677
|
|
|
634
678
|
- Fix hard shutdown if there are some busy workers when signal received
|
|
635
679
|
|
|
636
|
-
- [#215](https://github.com/
|
|
680
|
+
- [#215](https://github.com/ruby-shoryuken/shoryuken/pull/215)
|
|
637
681
|
|
|
638
682
|
- Fix `rake console` task
|
|
639
683
|
|
|
640
|
-
- [#208](https://github.com/
|
|
684
|
+
- [#208](https://github.com/ruby-shoryuken/shoryuken/pull/208)
|
|
641
685
|
|
|
642
686
|
- Isolate `MessageVisibilityExtender` as new middleware
|
|
643
687
|
|
|
644
|
-
- [#199](https://github.com/
|
|
688
|
+
- [#199](https://github.com/ruby-shoryuken/shoryuken/pull/190)
|
|
645
689
|
|
|
646
690
|
- Fail on non-existent queues
|
|
647
|
-
- [#196](https://github.com/
|
|
691
|
+
- [#196](https://github.com/ruby-shoryuken/shoryuken/pull/196)
|
|
648
692
|
|
|
649
693
|
## [v2.0.6] - 2016-04-18
|
|
650
694
|
|
|
651
695
|
- Fix log initialization introduced by #191
|
|
652
|
-
- [#195](https://github.com/
|
|
696
|
+
- [#195](https://github.com/ruby-shoryuken/shoryuken/pull/195)
|
|
653
697
|
|
|
654
698
|
## [v2.0.5] - 2016-04-17
|
|
655
699
|
|
|
656
700
|
- Fix log initialization when using `Shoryuken::EnvironmentLoader#load`
|
|
657
701
|
|
|
658
|
-
- [#191](https://github.com/
|
|
702
|
+
- [#191](https://github.com/ruby-shoryuken/shoryuken/pull/191)
|
|
659
703
|
|
|
660
704
|
- Fix `enqueue_at` in the ActiveJob Adapter
|
|
661
|
-
- [#182](https://github.com/
|
|
705
|
+
- [#182](https://github.com/ruby-shoryuken/shoryuken/pull/182)
|
|
662
706
|
|
|
663
707
|
## [v2.0.4] - 2016-02-04
|
|
664
708
|
|
|
665
709
|
- Add Rails 3 support
|
|
666
710
|
|
|
667
|
-
- [#175](https://github.com/
|
|
711
|
+
- [#175](https://github.com/ruby-shoryuken/shoryuken/pull/175)
|
|
668
712
|
|
|
669
713
|
- Allow symbol as a queue name in shoryuken_options
|
|
670
714
|
|
|
671
|
-
- [#177](https://github.com/
|
|
715
|
+
- [#177](https://github.com/ruby-shoryuken/shoryuken/pull/177)
|
|
672
716
|
|
|
673
717
|
- Make sure bundler is always updated on Travis CI
|
|
674
718
|
|
|
675
|
-
- [#176](https://github.com/
|
|
719
|
+
- [#176](https://github.com/ruby-shoryuken/shoryuken/pull/176)
|
|
676
720
|
|
|
677
721
|
- Add Rails 5 compatibility
|
|
678
|
-
- [#174](https://github.com/
|
|
722
|
+
- [#174](https://github.com/ruby-shoryuken/shoryuken/pull/174)
|
|
679
723
|
|
|
680
724
|
## [v2.0.3] - 2015-12-30
|
|
681
725
|
|
|
682
726
|
- Allow multiple queues per worker
|
|
683
727
|
|
|
684
|
-
- [#164](https://github.com/
|
|
728
|
+
- [#164](https://github.com/ruby-shoryuken/shoryuken/pull/164)
|
|
685
729
|
|
|
686
730
|
- Fix typo
|
|
687
|
-
- [#166](https://github.com/
|
|
731
|
+
- [#166](https://github.com/ruby-shoryuken/shoryuken/pull/166)
|
|
688
732
|
|
|
689
733
|
## [v2.0.2] - 2015-10-27
|
|
690
734
|
|
|
691
735
|
- Fix warnings that are triggered in some cases with the raise_error matcher
|
|
692
736
|
|
|
693
|
-
- [#144](https://github.com/
|
|
737
|
+
- [#144](https://github.com/ruby-shoryuken/shoryuken/pull/144)
|
|
694
738
|
|
|
695
739
|
- Add lifecycle event registration support
|
|
696
740
|
|
|
697
|
-
- [#141](https://github.com/
|
|
741
|
+
- [#141](https://github.com/ruby-shoryuken/shoryuken/pull/141)
|
|
698
742
|
|
|
699
743
|
- Allow passing array of messages to send_messages
|
|
700
744
|
|
|
701
|
-
- [#140](https://github.com/
|
|
745
|
+
- [#140](https://github.com/ruby-shoryuken/shoryuken/pull/140)
|
|
702
746
|
|
|
703
747
|
- Fix Active Job queue prefixing in Rails apps
|
|
704
748
|
|
|
705
|
-
- [#139](https://github.com/
|
|
749
|
+
- [#139](https://github.com/ruby-shoryuken/shoryuken/pull/139)
|
|
706
750
|
|
|
707
751
|
- Enable override the default queue with a :queue option
|
|
708
|
-
- [#147](https://github.com/
|
|
752
|
+
- [#147](https://github.com/ruby-shoryuken/shoryuken/pull/147)
|
|
709
753
|
|
|
710
754
|
## [v2.0.1] - 2015-10-09
|
|
711
755
|
|
|
712
756
|
- Bump aws-sdk to ~> 2
|
|
713
|
-
- [#138](https://github.com/
|
|
757
|
+
- [#138](https://github.com/ruby-shoryuken/shoryuken/pull/138)
|
|
714
758
|
|
|
715
759
|
## [v2.0.0] - 2015-09-22
|
|
716
760
|
|
|
717
761
|
- Allow configuration of SQS/SNS endpoints via environment variables
|
|
718
762
|
|
|
719
|
-
- [#130](https://github.com/
|
|
763
|
+
- [#130](https://github.com/ruby-shoryuken/shoryuken/pull/130)
|
|
720
764
|
|
|
721
765
|
- Expose queue_name in the message object
|
|
722
766
|
|
|
723
|
-
- [#127](https://github.com/
|
|
767
|
+
- [#127](https://github.com/ruby-shoryuken/shoryuken/pull/127)
|
|
724
768
|
|
|
725
769
|
- README updates
|
|
726
|
-
- [#122](https://github.com/
|
|
727
|
-
- [#120](https://github.com/
|
|
770
|
+
- [#122](https://github.com/ruby-shoryuken/shoryuken/pull/122)
|
|
771
|
+
- [#120](https://github.com/ruby-shoryuken/shoryuken/pull/120)
|