Skip to content

Commit

Permalink
Require action mailbox engine by default (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
mullermp authored Jul 18, 2024
1 parent c1c1e89 commit 4ba9d91
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Unreleased Changes
------------------

* Issue - Require `action_mailbox/engine` from `Aws::Rails::ActionMailbox::Engine`.

4.0.0 (2024-07-18)
------------------

Expand All @@ -10,11 +12,11 @@ Unreleased Changes

* Issue - Do not allow `:amazon`, `amazon_sqs`, or `amazon_sqs_async` for SQS active job configuration. Instead use `:sqs` and `:sqs_async`.


3.13.0 (2024-06-06)
------------------

* Feature - Use `Concurrent.available_processor_count` to set default thread pool max threads (#125).

* Issue - No longer rely on `caller_runs` for backpressure in sqs active job executor (#123).

3.12.0 (2024-04-02)
Expand Down
2 changes: 2 additions & 0 deletions lib/aws/rails/action_mailbox/engine.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# frozen_string_literal: true

require 'action_mailbox/engine'

module Aws
module Rails
module ActionMailbox
Expand Down
1 change: 0 additions & 1 deletion spec/dummy/config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
require 'active_job/railtie'
require 'action_controller/railtie'
require 'action_mailer/railtie'
require 'action_mailbox/engine'
require 'action_view/railtie'
require 'aws-sdk-rails'

Expand Down

0 comments on commit 4ba9d91

Please sign in to comment.