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.
- checksums.yaml +4 -4
- data/.github/workflows/push.yml +3 -3
- data/.github/workflows/specs.yml +27 -17
- data/.github/workflows/verify-action-pins.yml +1 -1
- data/.rspec +2 -1
- data/.ruby-version +1 -1
- data/Appraisals +6 -18
- data/CHANGELOG.md +200 -142
- data/Gemfile +1 -0
- data/README.md +12 -13
- data/bin/cli/base.rb +1 -2
- data/bin/cli/sqs.rb +6 -5
- data/bin/shoryuken +3 -2
- data/gemfiles/rails_7_2.gemfile +1 -0
- data/gemfiles/rails_8_0.gemfile +1 -0
- data/gemfiles/{rails_7_1.gemfile → rails_8_1.gemfile} +2 -1
- 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 +21 -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/helpers/timer_task.rb +66 -0
- data/lib/shoryuken/inline_message.rb +22 -0
- data/lib/shoryuken/launcher.rb +16 -0
- data/lib/shoryuken/logging/base.rb +26 -0
- data/lib/shoryuken/logging/pretty.rb +25 -0
- data/lib/shoryuken/logging/without_timestamp.rb +25 -0
- data/lib/shoryuken/logging.rb +6 -12
- data/lib/shoryuken/manager.rb +6 -4
- data/lib/shoryuken/message.rb +116 -1
- data/lib/shoryuken/middleware/chain.rb +140 -43
- data/lib/shoryuken/middleware/entry.rb +30 -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 +11 -11
- 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 +12 -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 +173 -0
- data/lib/shoryuken/worker_registry.rb +2 -0
- data/lib/shoryuken.rb +8 -28
- data/shoryuken.gemspec +6 -6
- data/spec/integration/active_job_continuation_spec.rb +145 -0
- 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_continuation_spec.rb +110 -0
- 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/timer_task_spec.rb +298 -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 +23 -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 +72 -29
- data/.github/FUNDING.yml +0 -12
- data/gemfiles/rails_6_1.gemfile +0 -18
- data/gemfiles/rails_7_0.gemfile +0 -19
- 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,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](
|
|
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
|
|
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
|
|
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/
|
|
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/
|
|
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/
|
|
153
|
-
- [#648](https://github.com/
|
|
154
|
-
- [#651](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
166
|
-
- [#650](https://github.com/
|
|
167
|
-
- [#652](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
188
|
-
- [#588](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
284
|
+
- [#537](https://github.com/ruby-shoryuken/shoryuken/pull/537)
|
|
227
285
|
|
|
228
286
|
- Fix spelling of "visibility"
|
|
229
|
-
- [#538](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
434
|
+
- [#405](https://github.com/ruby-shoryuken/shoryuken/pull/405)
|
|
377
435
|
|
|
378
436
|
- Remove dead code
|
|
379
|
-
- [#402](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
565
|
+
- [#317](https://github.com/ruby-shoryuken/shoryuken/pull/317)
|
|
508
566
|
|
|
509
567
|
- Remove deprecation warnings
|
|
510
568
|
|
|
511
|
-
- [#326](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
586
|
+
- [#302](https://github.com/ruby-shoryuken/shoryuken/pull/302)
|
|
529
587
|
|
|
530
588
|
- Require Celluloid ~> 17
|
|
531
589
|
|
|
532
|
-
- [#305](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
649
|
+
- [#272](https://github.com/ruby-shoryuken/shoryuken/issues/272)
|
|
592
650
|
|
|
593
651
|
- Deprecates initialize_aws
|
|
594
652
|
|
|
595
|
-
- [#269](https://github.com/
|
|
653
|
+
- [#269](https://github.com/ruby-shoryuken/shoryuken/pull/269)
|
|
596
654
|
|
|
597
|
-
- [Other miscellaneous updates](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
685
|
+
- [#197](https://github.com/ruby-shoryuken/shoryuken/pull/197)
|
|
628
686
|
|
|
629
687
|
- Improve message fetching
|
|
630
688
|
|
|
631
|
-
- [#214](https://github.com/
|
|
632
|
-
- [#f4640d9](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
702
|
+
- [#199](https://github.com/ruby-shoryuken/shoryuken/pull/190)
|
|
645
703
|
|
|
646
704
|
- Fail on non-existent queues
|
|
647
|
-
- [#196](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
733
|
+
- [#176](https://github.com/ruby-shoryuken/shoryuken/pull/176)
|
|
676
734
|
|
|
677
735
|
- Add Rails 5 compatibility
|
|
678
|
-
- [#174](https://github.com/
|
|
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/
|
|
742
|
+
- [#164](https://github.com/ruby-shoryuken/shoryuken/pull/164)
|
|
685
743
|
|
|
686
744
|
- Fix typo
|
|
687
|
-
- [#166](https://github.com/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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/
|
|
781
|
+
- [#127](https://github.com/ruby-shoryuken/shoryuken/pull/127)
|
|
724
782
|
|
|
725
783
|
- README updates
|
|
726
|
-
- [#122](https://github.com/
|
|
727
|
-
- [#120](https://github.com/
|
|
784
|
+
- [#122](https://github.com/ruby-shoryuken/shoryuken/pull/122)
|
|
785
|
+
- [#120](https://github.com/ruby-shoryuken/shoryuken/pull/120)
|