actionmailbox 8.0.2.1 → 8.0.4
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/CHANGELOG.md +7 -2
 - data/app/controllers/action_mailbox/ingresses/mandrill/inbound_emails_controller.rb +1 -1
 - data/app/controllers/action_mailbox/ingresses/postmark/inbound_emails_controller.rb +1 -1
 - data/app/controllers/action_mailbox/ingresses/relay/inbound_emails_controller.rb +1 -1
 - data/app/controllers/action_mailbox/ingresses/sendgrid/inbound_emails_controller.rb +1 -1
 - data/lib/action_mailbox/engine.rb +1 -1
 - data/lib/action_mailbox/gem_version.rb +2 -2
 - metadata +14 -14
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 6efc0901178cb314b4daa6bd5bef5aa07f895350e8c03d6e274527c64ee6882a
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: '087766a1f7df4b879a4154bf1a64bdc01085f6fcec4ffa8a1f5ece8f1c7c7362'
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 932b1c6fd64e63ca1cf50b7d01a599dfcc1d8baa9db1217333ddff32ac471d0d2cf8785ab85f43e7abf6bfcead66ccd252d35a941fd05e34cd5e236652a7e55a
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 7b6897b080422442a6add4fb0f39cf1b64bc346b025af820c1cc317ed2d56f4eb6dee508e700854bda279a125831d3957de1c7cfd0818e9b07ff8ed651ec0a96
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,9 +1,14 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            ## Rails 8.0. 
     | 
| 
      
 1 
     | 
    
         
            +
            ## Rails 8.0.4 (October 28, 2025) ##
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            *   No changes.
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
       5 
5 
     | 
    
         | 
| 
       6 
     | 
    
         
            -
            ## Rails 8.0. 
     | 
| 
      
 6 
     | 
    
         
            +
            ## Rails 8.0.3 (September 22, 2025) ##
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            *   No changes.
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            ## Rails 8.0.2.1 (August 13, 2025) ##
         
     | 
| 
       7 
12 
     | 
    
         | 
| 
       8 
13 
     | 
    
         
             
            *   No changes.
         
     | 
| 
       9 
14 
     | 
    
         | 
| 
         @@ -57,7 +57,7 @@ module ActionMailbox 
     | 
|
| 
       57 
57 
     | 
    
         
             
                    When configuring your Postmark inbound webhook, be sure to check the box
         
     | 
| 
       58 
58 
     | 
    
         
             
                    labeled "Include raw email content in JSON payload".
         
     | 
| 
       59 
59 
     | 
    
         
             
                  MESSAGE
         
     | 
| 
       60 
     | 
    
         
            -
                  head  
     | 
| 
      
 60 
     | 
    
         
            +
                  head ActionDispatch::Constants::UNPROCESSABLE_CONTENT
         
     | 
| 
       61 
61 
     | 
    
         
             
                end
         
     | 
| 
       62 
62 
     | 
    
         | 
| 
       63 
63 
     | 
    
         
             
                private
         
     | 
| 
         @@ -52,7 +52,7 @@ module ActionMailbox 
     | 
|
| 
       52 
52 
     | 
    
         
             
                  ActionMailbox::InboundEmail.create_and_extract_message_id! mail
         
     | 
| 
       53 
53 
     | 
    
         
             
                rescue JSON::ParserError => error
         
     | 
| 
       54 
54 
     | 
    
         
             
                  logger.error error.message
         
     | 
| 
       55 
     | 
    
         
            -
                  head  
     | 
| 
      
 55 
     | 
    
         
            +
                  head ActionDispatch::Constants::UNPROCESSABLE_CONTENT
         
     | 
| 
       56 
56 
     | 
    
         
             
                end
         
     | 
| 
       57 
57 
     | 
    
         | 
| 
       58 
58 
     | 
    
         
             
                private
         
     | 
| 
         @@ -29,7 +29,7 @@ module ActionMailbox 
     | 
|
| 
       29 
29 
     | 
    
         
             
                initializer "action_mailbox.config" do
         
     | 
| 
       30 
30 
     | 
    
         
             
                  config.after_initialize do |app|
         
     | 
| 
       31 
31 
     | 
    
         
             
                    ActionMailbox.logger = app.config.action_mailbox.logger || Rails.logger
         
     | 
| 
       32 
     | 
    
         
            -
                    ActionMailbox.incinerate = app.config.action_mailbox.incinerate.nil?  
     | 
| 
      
 32 
     | 
    
         
            +
                    ActionMailbox.incinerate = app.config.action_mailbox.incinerate.nil? || app.config.action_mailbox.incinerate
         
     | 
| 
       33 
33 
     | 
    
         
             
                    ActionMailbox.incinerate_after = app.config.action_mailbox.incinerate_after || 30.days
         
     | 
| 
       34 
34 
     | 
    
         
             
                    ActionMailbox.queues = app.config.action_mailbox.queues || {}
         
     | 
| 
       35 
35 
     | 
    
         
             
                    ActionMailbox.ingress = app.config.action_mailbox.ingress
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: actionmailbox
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 8.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 8.0.4
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - David Heinemeier Hansson
         
     | 
| 
         @@ -16,70 +16,70 @@ dependencies: 
     | 
|
| 
       16 
16 
     | 
    
         
             
                requirements:
         
     | 
| 
       17 
17 
     | 
    
         
             
                - - '='
         
     | 
| 
       18 
18 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       19 
     | 
    
         
            -
                    version: 8.0. 
     | 
| 
      
 19 
     | 
    
         
            +
                    version: 8.0.4
         
     | 
| 
       20 
20 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       21 
21 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       22 
22 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       23 
23 
     | 
    
         
             
                requirements:
         
     | 
| 
       24 
24 
     | 
    
         
             
                - - '='
         
     | 
| 
       25 
25 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       26 
     | 
    
         
            -
                    version: 8.0. 
     | 
| 
      
 26 
     | 
    
         
            +
                    version: 8.0.4
         
     | 
| 
       27 
27 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       28 
28 
     | 
    
         
             
              name: activerecord
         
     | 
| 
       29 
29 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       30 
30 
     | 
    
         
             
                requirements:
         
     | 
| 
       31 
31 
     | 
    
         
             
                - - '='
         
     | 
| 
       32 
32 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       33 
     | 
    
         
            -
                    version: 8.0. 
     | 
| 
      
 33 
     | 
    
         
            +
                    version: 8.0.4
         
     | 
| 
       34 
34 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       35 
35 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       36 
36 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       37 
37 
     | 
    
         
             
                requirements:
         
     | 
| 
       38 
38 
     | 
    
         
             
                - - '='
         
     | 
| 
       39 
39 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       40 
     | 
    
         
            -
                    version: 8.0. 
     | 
| 
      
 40 
     | 
    
         
            +
                    version: 8.0.4
         
     | 
| 
       41 
41 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       42 
42 
     | 
    
         
             
              name: activestorage
         
     | 
| 
       43 
43 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       44 
44 
     | 
    
         
             
                requirements:
         
     | 
| 
       45 
45 
     | 
    
         
             
                - - '='
         
     | 
| 
       46 
46 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       47 
     | 
    
         
            -
                    version: 8.0. 
     | 
| 
      
 47 
     | 
    
         
            +
                    version: 8.0.4
         
     | 
| 
       48 
48 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       49 
49 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       50 
50 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       51 
51 
     | 
    
         
             
                requirements:
         
     | 
| 
       52 
52 
     | 
    
         
             
                - - '='
         
     | 
| 
       53 
53 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       54 
     | 
    
         
            -
                    version: 8.0. 
     | 
| 
      
 54 
     | 
    
         
            +
                    version: 8.0.4
         
     | 
| 
       55 
55 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       56 
56 
     | 
    
         
             
              name: activejob
         
     | 
| 
       57 
57 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       58 
58 
     | 
    
         
             
                requirements:
         
     | 
| 
       59 
59 
     | 
    
         
             
                - - '='
         
     | 
| 
       60 
60 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       61 
     | 
    
         
            -
                    version: 8.0. 
     | 
| 
      
 61 
     | 
    
         
            +
                    version: 8.0.4
         
     | 
| 
       62 
62 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       63 
63 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       64 
64 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       65 
65 
     | 
    
         
             
                requirements:
         
     | 
| 
       66 
66 
     | 
    
         
             
                - - '='
         
     | 
| 
       67 
67 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       68 
     | 
    
         
            -
                    version: 8.0. 
     | 
| 
      
 68 
     | 
    
         
            +
                    version: 8.0.4
         
     | 
| 
       69 
69 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       70 
70 
     | 
    
         
             
              name: actionpack
         
     | 
| 
       71 
71 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       72 
72 
     | 
    
         
             
                requirements:
         
     | 
| 
       73 
73 
     | 
    
         
             
                - - '='
         
     | 
| 
       74 
74 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       75 
     | 
    
         
            -
                    version: 8.0. 
     | 
| 
      
 75 
     | 
    
         
            +
                    version: 8.0.4
         
     | 
| 
       76 
76 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       77 
77 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       78 
78 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       79 
79 
     | 
    
         
             
                requirements:
         
     | 
| 
       80 
80 
     | 
    
         
             
                - - '='
         
     | 
| 
       81 
81 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       82 
     | 
    
         
            -
                    version: 8.0. 
     | 
| 
      
 82 
     | 
    
         
            +
                    version: 8.0.4
         
     | 
| 
       83 
83 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       84 
84 
     | 
    
         
             
              name: mail
         
     | 
| 
       85 
85 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -164,10 +164,10 @@ licenses: 
     | 
|
| 
       164 
164 
     | 
    
         
             
            - MIT
         
     | 
| 
       165 
165 
     | 
    
         
             
            metadata:
         
     | 
| 
       166 
166 
     | 
    
         
             
              bug_tracker_uri: https://github.com/rails/rails/issues
         
     | 
| 
       167 
     | 
    
         
            -
              changelog_uri: https://github.com/rails/rails/blob/v8.0. 
     | 
| 
       168 
     | 
    
         
            -
              documentation_uri: https://api.rubyonrails.org/v8.0. 
     | 
| 
      
 167 
     | 
    
         
            +
              changelog_uri: https://github.com/rails/rails/blob/v8.0.4/actionmailbox/CHANGELOG.md
         
     | 
| 
      
 168 
     | 
    
         
            +
              documentation_uri: https://api.rubyonrails.org/v8.0.4/
         
     | 
| 
       169 
169 
     | 
    
         
             
              mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
         
     | 
| 
       170 
     | 
    
         
            -
              source_code_uri: https://github.com/rails/rails/tree/v8.0. 
     | 
| 
      
 170 
     | 
    
         
            +
              source_code_uri: https://github.com/rails/rails/tree/v8.0.4/actionmailbox
         
     | 
| 
       171 
171 
     | 
    
         
             
              rubygems_mfa_required: 'true'
         
     | 
| 
       172 
172 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       173 
173 
     | 
    
         
             
            require_paths:
         
     |