actionmailer 7.2.2.1 → 8.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c11aff9a531baec43ef53e43297b9fad9b5b1320e15089a50882dea492089b3e
4
- data.tar.gz: 36035769d7005800933e17050cc20451041da2704871f44fc3d1087eae452f44
3
+ metadata.gz: b61a0b55d3494d8c534ad98860dcca7e48043fe6595f1e87a92305851f7a4b7c
4
+ data.tar.gz: 327e5c9b7ed8a62aade160851a2999a24fbb52da197d019e5cae6a8da2568cef
5
5
  SHA512:
6
- metadata.gz: 2b929b02d7ca792849fc3a6af4efe1331b3fd5db624ba5931adca0271d6b5faa201dd395b221b60fc7c8869b251b8ff8cb1f19131531bb88356684684c962c5a
7
- data.tar.gz: a62791462cce39d377c74b5ce8df83dbb789d17cffc05036c3d149f04c3bc5212261ac144ec0d6148502f969094ecb896daf9e4af392a01d90fc6a2312dbc7a0
6
+ metadata.gz: fc3ed8e4d2196a7bf02ef6bd82960305e69c1d5f279e6998fa548350f20a6bdadd7dd65152a82a05af3cb0bca4223dffc551f24f4d760940e6726def73f8a4a4
7
+ data.tar.gz: b240833fed09b9fe06d9441047271a3bcf3d6bf7c60f0a64e49dfcf6d95759d48a605b338d636771815e9fd399a9271aa5bffa1c219464cf2100d396688687d3
data/CHANGELOG.md CHANGED
@@ -1,42 +1,59 @@
1
- ## Rails 7.2.2.1 (December 10, 2024) ##
1
+ ## Rails 8.0.5 (March 24, 2026) ##
2
2
 
3
3
  * No changes.
4
4
 
5
5
 
6
- ## Rails 7.2.2 (October 30, 2024) ##
6
+ ## Rails 8.0.4.1 (March 23, 2026) ##
7
7
 
8
8
  * No changes.
9
9
 
10
10
 
11
- ## Rails 7.2.1.2 (October 23, 2024) ##
11
+ ## Rails 8.0.4 (October 28, 2025) ##
12
+
13
+ * No changes.
14
+
15
+
16
+ ## Rails 8.0.3 (September 22, 2025) ##
17
+
18
+ * No changes.
19
+
20
+
21
+ ## Rails 8.0.2.1 (August 13, 2025) ##
22
+
23
+ * No changes.
12
24
 
13
- * Fix NoMethodError in `block_format` helper
14
25
 
15
- *Michael Leimstaedtner*
26
+ ## Rails 8.0.2 (March 12, 2025) ##
16
27
 
28
+ * No changes.
29
+
30
+
31
+ ## Rails 8.0.1 (December 13, 2024) ##
32
+
33
+ * No changes.
17
34
 
18
- ## Rails 7.2.1.1 (October 15, 2024) ##
19
35
 
20
- * Avoid regex backtracking in `block_format` helper
36
+ ## Rails 8.0.0.1 (December 10, 2024) ##
37
+
38
+ * No changes.
21
39
 
22
- [CVE-2024-47889]
23
40
 
24
- *John Hawthorn*
41
+ ## Rails 8.0.0 (November 07, 2024) ##
25
42
 
43
+ * No changes.
26
44
 
27
- ## Rails 7.2.1 (August 22, 2024) ##
45
+
46
+ ## Rails 8.0.0.rc2 (October 30, 2024) ##
28
47
 
29
48
  * No changes.
30
49
 
31
50
 
32
- ## Rails 7.2.0 (August 09, 2024) ##
51
+ ## Rails 8.0.0.rc1 (October 19, 2024) ##
33
52
 
34
- * Remove deprecated params via `:args` for `assert_enqueued_email_with`.
53
+ * No changes.
35
54
 
36
- *Rafael Mendonça França*
37
55
 
38
- * Remove deprecated `config.action_mailer.preview_path`.
56
+ ## Rails 8.0.0.beta1 (September 26, 2024) ##
39
57
 
40
- *Rafael Mendonça França*
41
58
 
42
- Please check [7-1-stable](https://github.com/rails/rails/blob/7-1-stable/actionmailer/CHANGELOG.md) for previous changes.
59
+ Please check [7-2-stable](https://github.com/rails/rails/blob/7-2-stable/actionmailer/CHANGELOG.md) for previous changes.
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 rails-core mailing list here:
139
+ Feature requests should be discussed on the rubyonrails-core forum here:
140
140
 
141
141
  * https://discuss.rubyonrails.org/c/rubyonrails-core
@@ -574,18 +574,13 @@ module ActionMailer
574
574
  attr_writer :mailer_name
575
575
  alias :controller_path :mailer_name
576
576
 
577
- # Sets the defaults through app configuration:
578
- #
579
- # config.action_mailer.default(from: "no-reply@example.org")
577
+ # Allows to set defaults through app configuration:
580
578
  #
581
- # Aliased by ::default_options=
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.
@@ -7,10 +7,10 @@ module ActionMailer
7
7
  end
8
8
 
9
9
  module VERSION
10
- MAJOR = 7
11
- MINOR = 2
12
- TINY = 2
13
- PRE = "1"
10
+ MAJOR = 8
11
+ MINOR = 0
12
+ TINY = 5
13
+ PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
@@ -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: style URLs to data: style URLs so that they are visible
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.2.1
4
+ version: 8.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-10 00:00:00.000000000 Z
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.2.1
18
+ version: 8.0.5
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.2.1
25
+ version: 8.0.5
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.2.1
32
+ version: 8.0.5
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.2.1
39
+ version: 8.0.5
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.2.1
46
+ version: 8.0.5
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.2.1
53
+ version: 8.0.5
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.2.1
60
+ version: 8.0.5
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.2.1
67
+ version: 8.0.5
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.2.1/actionmailer/CHANGELOG.md
138
- documentation_uri: https://api.rubyonrails.org/v7.2.2.1/
136
+ changelog_uri: https://github.com/rails/rails/blob/v8.0.5/actionmailer/CHANGELOG.md
137
+ documentation_uri: https://api.rubyonrails.org/v8.0.5/
139
138
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
140
- source_code_uri: https://github.com/rails/rails/tree/v7.2.2.1/actionmailer
139
+ source_code_uri: https://github.com/rails/rails/tree/v8.0.5/actionmailer
141
140
  rubygems_mfa_required: 'true'
142
- post_install_message:
143
141
  rdoc_options: []
144
142
  require_paths:
145
143
  - lib
@@ -147,7 +145,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
147
145
  requirements:
148
146
  - - ">="
149
147
  - !ruby/object:Gem::Version
150
- version: 3.1.0
148
+ version: 3.2.0
151
149
  required_rubygems_version: !ruby/object:Gem::Requirement
152
150
  requirements:
153
151
  - - ">="
@@ -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.5.22
159
- signing_key:
156
+ rubygems_version: 4.0.6
160
157
  specification_version: 4
161
158
  summary: Email composition and delivery framework (part of Rails).
162
159
  test_files: []