actionmailer 7.0.4.3 → 7.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6bb774bf3590c4c30ba67153115802201e071ffe4aa3b53a154c1f76dcc17852
4
- data.tar.gz: d8afe935683ea1e7dbe70d5d60997fd70074a77f724afdbea0b129f4b1a22c1a
3
+ metadata.gz: bf13f4a834e36309d080e3f4ecfdf3e6a0dc4db148a820087a79253d8c636f40
4
+ data.tar.gz: 35a2cf9b354bc6b4a1dc94cf2680d5a1e3c9f108e5d293d136cf768b88b91579
5
5
  SHA512:
6
- metadata.gz: 6068fbf4e1138c1a53d4e60ef08912ad28e4a35ecde8dd513c84ba30e7c367879bafd51fb94f410de92faf9e0e94cbf5b54b2500457bb410852839fd762b0129
7
- data.tar.gz: 4a3cc0fd10d122c7ef863d1a607e09fa8cc83a62cbe80f9d7076a6d3c12a6624591a2b41b2157373e7ff672820cd1723f62619ee35a2990a6e8d9fa53747fda2
6
+ metadata.gz: decbec31de9e0ac90548d8b1f7ca10ca4529c0ec6002a550440d43b753e4072d552db8d38b5d84c7b7238df38452a251304dddd531407e482d9e3c64c2766e63
7
+ data.tar.gz: 1100f815cd81dc0c39c6792738e85faa6643e548e1a7591b452c6713206136a0e0b20ea2b9520fc8a0b6473a2faf59b5c2abc9772bcebf447301c09d6e37cfa4
data/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## Rails 7.0.6 (June 29, 2023) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 7.0.5.1 (June 26, 2023) ##
7
+
8
+ * No changes.
9
+
10
+
11
+ ## Rails 7.0.5 (May 24, 2023) ##
12
+
13
+ * No changes.
14
+
15
+
1
16
  ## Rails 7.0.4.3 (March 13, 2023) ##
2
17
 
3
18
  * No changes.
data/README.rdoc CHANGED
@@ -114,7 +114,7 @@ The latest version of Action Mailer can be installed with RubyGems:
114
114
 
115
115
  $ gem install actionmailer
116
116
 
117
- Source code can be downloaded as part of the Rails project on GitHub:
117
+ Source code can be downloaded as part of the \Rails project on GitHub:
118
118
 
119
119
  * https://github.com/rails/rails/tree/main/actionmailer
120
120
 
@@ -132,7 +132,7 @@ API documentation is at
132
132
 
133
133
  * https://api.rubyonrails.org
134
134
 
135
- Bug reports for the Ruby on Rails project can be filed here:
135
+ Bug reports for the Ruby on \Rails project can be filed here:
136
136
 
137
137
  * https://github.com/rails/rails/issues
138
138
 
@@ -721,7 +721,7 @@ module ActionMailer
721
721
  # mail.attachments['filename.jpg'] = File.read('/path/to/filename.jpg')
722
722
  #
723
723
  # If you do this, then Mail will take the file name and work out the mime type.
724
- # It will also set the Content-Type, Content-Disposition, Content-Transfer-Encoding
724
+ # It will also set the +Content-Type+, +Content-Disposition+, and +Content-Transfer-Encoding+,
725
725
  # and encode the contents of the attachment in Base64.
726
726
  #
727
727
  # You can also specify overrides if you want by passing a hash instead of a string:
@@ -782,7 +782,7 @@ module ActionMailer
782
782
  # or an array of addresses.
783
783
  # * +:bcc+ - Who you would like to Blind-Carbon-Copy on this email, can be a string of
784
784
  # addresses, or an array of addresses.
785
- # * +:reply_to+ - Who to set the Reply-To header of the email to.
785
+ # * +:reply_to+ - Who to set the +Reply-To+ header of the email to.
786
786
  # * +:date+ - The date to say the email was sent on.
787
787
  #
788
788
  # You can set default values for any of the above headers (except +:date+)
@@ -9,8 +9,8 @@ module ActionMailer
9
9
  module VERSION
10
10
  MAJOR = 7
11
11
  MINOR = 0
12
- TINY = 4
13
- PRE = "3"
12
+ TINY = 6
13
+ PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
@@ -1,8 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActionMailer # :nodoc:
4
- # Provides +rescue_from+ for mailers. Wraps mailer action processing,
5
- # mail job processing, and mail delivery.
4
+ # Provides
5
+ # {rescue_from}[rdoc-ref:ActiveSupport::Rescuable::ClassMethods#rescue_from]
6
+ # for mailers. Wraps mailer action processing, mail job processing, and mail
7
+ # delivery to handle configured errors.
6
8
  module Rescuable
7
9
  extend ActiveSupport::Concern
8
10
  include ActiveSupport::Rescuable
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmailer
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.4.3
4
+ version: 7.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-13 00:00:00.000000000 Z
11
+ date: 2023-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,56 +16,56 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 7.0.4.3
19
+ version: 7.0.6
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: 7.0.4.3
26
+ version: 7.0.6
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: actionpack
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 7.0.4.3
33
+ version: 7.0.6
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: 7.0.4.3
40
+ version: 7.0.6
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: actionview
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 7.0.4.3
47
+ version: 7.0.6
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: 7.0.4.3
54
+ version: 7.0.6
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: 7.0.4.3
61
+ version: 7.0.6
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: 7.0.4.3
68
+ version: 7.0.6
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: mail
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -178,12 +178,12 @@ licenses:
178
178
  - MIT
179
179
  metadata:
180
180
  bug_tracker_uri: https://github.com/rails/rails/issues
181
- changelog_uri: https://github.com/rails/rails/blob/v7.0.4.3/actionmailer/CHANGELOG.md
182
- documentation_uri: https://api.rubyonrails.org/v7.0.4.3/
181
+ changelog_uri: https://github.com/rails/rails/blob/v7.0.6/actionmailer/CHANGELOG.md
182
+ documentation_uri: https://api.rubyonrails.org/v7.0.6/
183
183
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
184
- source_code_uri: https://github.com/rails/rails/tree/v7.0.4.3/actionmailer
184
+ source_code_uri: https://github.com/rails/rails/tree/v7.0.6/actionmailer
185
185
  rubygems_mfa_required: 'true'
186
- post_install_message:
186
+ post_install_message:
187
187
  rdoc_options: []
188
188
  require_paths:
189
189
  - lib
@@ -199,8 +199,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
199
199
  version: '0'
200
200
  requirements:
201
201
  - none
202
- rubygems_version: 3.4.3
203
- signing_key:
202
+ rubygems_version: 3.4.13
203
+ signing_key:
204
204
  specification_version: 4
205
205
  summary: Email composition and delivery framework (part of Rails).
206
206
  test_files: []