actionmailer 7.2.2.1 → 7.2.3
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 +10 -0
 - data/README.rdoc +1 -1
 - data/lib/action_mailer/base.rb +2 -7
 - data/lib/action_mailer/gem_version.rb +2 -2
 - data/lib/action_mailer/inline_preview_interceptor.rb +1 -1
 - metadata +14 -17
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: ea95f7b9ad1d651201aa13e40109d61ab1403758f1765d567d8e76451b4d3b6a
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: b4818f516ae894b13d0987b8e6fd0f0230372520cd41c1f5a7018cf2ee4a2e22
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 8f62423584f6958284713572300ef0fbd90ab2a9ff80778fe4063c283d348ce38e481bb3a2817e02ed508050dd792ea438f00f9b8ea1830fe0a85997d9fe7fbc
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: ec7a1e310e44cf49424ec0dd3adb81486f0811ec8d5078d44352fbecde3c1417342681bbba91a1d4ce232ec18661c5feaa02eb412c508a5f6c786161b5968350
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    
    
        data/README.rdoc
    CHANGED
    
    | 
         @@ -136,6 +136,6 @@ Bug reports for the Ruby on \Rails project can be filed here: 
     | 
|
| 
       136 
136 
     | 
    
         | 
| 
       137 
137 
     | 
    
         
             
            * https://github.com/rails/rails/issues
         
     | 
| 
       138 
138 
     | 
    
         | 
| 
       139 
     | 
    
         
            -
            Feature requests should be discussed on the  
     | 
| 
      
 139 
     | 
    
         
            +
            Feature requests should be discussed on the rubyonrails-core forum here:
         
     | 
| 
       140 
140 
     | 
    
         | 
| 
       141 
141 
     | 
    
         
             
            * https://discuss.rubyonrails.org/c/rubyonrails-core
         
     | 
    
        data/lib/action_mailer/base.rb
    CHANGED
    
    | 
         @@ -574,18 +574,13 @@ module ActionMailer 
     | 
|
| 
       574 
574 
     | 
    
         
             
                  attr_writer :mailer_name
         
     | 
| 
       575 
575 
     | 
    
         
             
                  alias :controller_path :mailer_name
         
     | 
| 
       576 
576 
     | 
    
         | 
| 
       577 
     | 
    
         
            -
                  #  
     | 
| 
       578 
     | 
    
         
            -
                  #
         
     | 
| 
       579 
     | 
    
         
            -
                  #     config.action_mailer.default(from: "no-reply@example.org")
         
     | 
| 
      
 577 
     | 
    
         
            +
                  # Allows to set defaults through app configuration:
         
     | 
| 
       580 
578 
     | 
    
         
             
                  #
         
     | 
| 
       581 
     | 
    
         
            -
                  #  
     | 
| 
      
 579 
     | 
    
         
            +
                  #    config.action_mailer.default_options = { from: "no-reply@example.org" }
         
     | 
| 
       582 
580 
     | 
    
         
             
                  def default(value = nil)
         
     | 
| 
       583 
581 
     | 
    
         
             
                    self.default_params = default_params.merge(value).freeze if value
         
     | 
| 
       584 
582 
     | 
    
         
             
                    default_params
         
     | 
| 
       585 
583 
     | 
    
         
             
                  end
         
     | 
| 
       586 
     | 
    
         
            -
                  # Allows to set defaults through app configuration:
         
     | 
| 
       587 
     | 
    
         
            -
                  #
         
     | 
| 
       588 
     | 
    
         
            -
                  #    config.action_mailer.default_options = { from: "no-reply@example.org" }
         
     | 
| 
       589 
584 
     | 
    
         
             
                  alias :default_options= :default
         
     | 
| 
       590 
585 
     | 
    
         | 
| 
       591 
586 
     | 
    
         
             
                  # Wraps an email delivery inside of ActiveSupport::Notifications instrumentation.
         
     | 
| 
         @@ -6,7 +6,7 @@ module ActionMailer 
     | 
|
| 
       6 
6 
     | 
    
         
             
              # = Action Mailer \InlinePreviewInterceptor
         
     | 
| 
       7 
7 
     | 
    
         
             
              #
         
     | 
| 
       8 
8 
     | 
    
         
             
              # Implements a mailer preview interceptor that converts image tag src attributes
         
     | 
| 
       9 
     | 
    
         
            -
              # that use inline cid 
     | 
| 
      
 9 
     | 
    
         
            +
              # that use inline +cid:+ style URLs to +data:+ style URLs so that they are visible
         
     | 
| 
       10 
10 
     | 
    
         
             
              # when previewing an HTML email in a web browser.
         
     | 
| 
       11 
11 
     | 
    
         
             
              #
         
     | 
| 
       12 
12 
     | 
    
         
             
              # This interceptor is enabled by default. To disable it, delete it from the
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,13 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: actionmailer
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 7.2. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 7.2.3
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - David Heinemeier Hansson
         
     | 
| 
       8 
     | 
    
         
            -
            autorequire: 
         
     | 
| 
       9 
8 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
9 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date:  
     | 
| 
      
 10 
     | 
    
         
            +
            date: 1980-01-02 00:00:00.000000000 Z
         
     | 
| 
       12 
11 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
12 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
13 
     | 
    
         
             
              name: activesupport
         
     | 
| 
         @@ -16,56 +15,56 @@ dependencies: 
     | 
|
| 
       16 
15 
     | 
    
         
             
                requirements:
         
     | 
| 
       17 
16 
     | 
    
         
             
                - - '='
         
     | 
| 
       18 
17 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       19 
     | 
    
         
            -
                    version: 7.2. 
     | 
| 
      
 18 
     | 
    
         
            +
                    version: 7.2.3
         
     | 
| 
       20 
19 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       21 
20 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       22 
21 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       23 
22 
     | 
    
         
             
                requirements:
         
     | 
| 
       24 
23 
     | 
    
         
             
                - - '='
         
     | 
| 
       25 
24 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       26 
     | 
    
         
            -
                    version: 7.2. 
     | 
| 
      
 25 
     | 
    
         
            +
                    version: 7.2.3
         
     | 
| 
       27 
26 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       28 
27 
     | 
    
         
             
              name: actionpack
         
     | 
| 
       29 
28 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       30 
29 
     | 
    
         
             
                requirements:
         
     | 
| 
       31 
30 
     | 
    
         
             
                - - '='
         
     | 
| 
       32 
31 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       33 
     | 
    
         
            -
                    version: 7.2. 
     | 
| 
      
 32 
     | 
    
         
            +
                    version: 7.2.3
         
     | 
| 
       34 
33 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       35 
34 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       36 
35 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       37 
36 
     | 
    
         
             
                requirements:
         
     | 
| 
       38 
37 
     | 
    
         
             
                - - '='
         
     | 
| 
       39 
38 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       40 
     | 
    
         
            -
                    version: 7.2. 
     | 
| 
      
 39 
     | 
    
         
            +
                    version: 7.2.3
         
     | 
| 
       41 
40 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       42 
41 
     | 
    
         
             
              name: actionview
         
     | 
| 
       43 
42 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       44 
43 
     | 
    
         
             
                requirements:
         
     | 
| 
       45 
44 
     | 
    
         
             
                - - '='
         
     | 
| 
       46 
45 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       47 
     | 
    
         
            -
                    version: 7.2. 
     | 
| 
      
 46 
     | 
    
         
            +
                    version: 7.2.3
         
     | 
| 
       48 
47 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       49 
48 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       50 
49 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       51 
50 
     | 
    
         
             
                requirements:
         
     | 
| 
       52 
51 
     | 
    
         
             
                - - '='
         
     | 
| 
       53 
52 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       54 
     | 
    
         
            -
                    version: 7.2. 
     | 
| 
      
 53 
     | 
    
         
            +
                    version: 7.2.3
         
     | 
| 
       55 
54 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       56 
55 
     | 
    
         
             
              name: activejob
         
     | 
| 
       57 
56 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       58 
57 
     | 
    
         
             
                requirements:
         
     | 
| 
       59 
58 
     | 
    
         
             
                - - '='
         
     | 
| 
       60 
59 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       61 
     | 
    
         
            -
                    version: 7.2. 
     | 
| 
      
 60 
     | 
    
         
            +
                    version: 7.2.3
         
     | 
| 
       62 
61 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       63 
62 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       64 
63 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       65 
64 
     | 
    
         
             
                requirements:
         
     | 
| 
       66 
65 
     | 
    
         
             
                - - '='
         
     | 
| 
       67 
66 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       68 
     | 
    
         
            -
                    version: 7.2. 
     | 
| 
      
 67 
     | 
    
         
            +
                    version: 7.2.3
         
     | 
| 
       69 
68 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       70 
69 
     | 
    
         
             
              name: mail
         
     | 
| 
       71 
70 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -134,12 +133,11 @@ licenses: 
     | 
|
| 
       134 
133 
     | 
    
         
             
            - MIT
         
     | 
| 
       135 
134 
     | 
    
         
             
            metadata:
         
     | 
| 
       136 
135 
     | 
    
         
             
              bug_tracker_uri: https://github.com/rails/rails/issues
         
     | 
| 
       137 
     | 
    
         
            -
              changelog_uri: https://github.com/rails/rails/blob/v7.2. 
     | 
| 
       138 
     | 
    
         
            -
              documentation_uri: https://api.rubyonrails.org/v7.2. 
     | 
| 
      
 136 
     | 
    
         
            +
              changelog_uri: https://github.com/rails/rails/blob/v7.2.3/actionmailer/CHANGELOG.md
         
     | 
| 
      
 137 
     | 
    
         
            +
              documentation_uri: https://api.rubyonrails.org/v7.2.3/
         
     | 
| 
       139 
138 
     | 
    
         
             
              mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
         
     | 
| 
       140 
     | 
    
         
            -
              source_code_uri: https://github.com/rails/rails/tree/v7.2. 
     | 
| 
      
 139 
     | 
    
         
            +
              source_code_uri: https://github.com/rails/rails/tree/v7.2.3/actionmailer
         
     | 
| 
       141 
140 
     | 
    
         
             
              rubygems_mfa_required: 'true'
         
     | 
| 
       142 
     | 
    
         
            -
            post_install_message: 
         
     | 
| 
       143 
141 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       144 
142 
     | 
    
         
             
            require_paths:
         
     | 
| 
       145 
143 
     | 
    
         
             
            - lib
         
     | 
| 
         @@ -155,8 +153,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       155 
153 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       156 
154 
     | 
    
         
             
            requirements:
         
     | 
| 
       157 
155 
     | 
    
         
             
            - none
         
     | 
| 
       158 
     | 
    
         
            -
            rubygems_version: 3. 
     | 
| 
       159 
     | 
    
         
            -
            signing_key: 
         
     | 
| 
      
 156 
     | 
    
         
            +
            rubygems_version: 3.6.9
         
     | 
| 
       160 
157 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       161 
158 
     | 
    
         
             
            summary: Email composition and delivery framework (part of Rails).
         
     | 
| 
       162 
159 
     | 
    
         
             
            test_files: []
         
     |