actionmailer 7.2.2.2 → 8.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2f6d48f06fc3be3612c45545201ffa654e2b8b788a0c81b35740c7a0c3a5e4c
4
- data.tar.gz: 5dace2325dc7071ab32a813a83e363507979893d233a7d00d85331ed11415314
3
+ metadata.gz: da328b9ee25491a6136f83ba88a3a0ce79a9ec9a166ed9befc7a57ec6e10fd04
4
+ data.tar.gz: 98ac1193d8753bc37b7b651f7391ae10d5f2b94d9c3912b5f84840f89e54ae5d
5
5
  SHA512:
6
- metadata.gz: f8b67684213321c280e08a1c6bcdb33291f4aa52e68f099309e63e67a251923db4877b2d55c9c96e495ab6c5ca9b5ff8247b00b549517f9c7a2509608a28373d
7
- data.tar.gz: fe144447fc1c1d91daee9656fba93814ffa1d2e0da6e0a1dff7ce68b20186eef9e2dd1824d843ea7e1da9483da89c1c75c54c905f5e024ca0432841a156b05a8
6
+ metadata.gz: 7d0fe5196895c6235bc58cc1423d27005c1fa78a8c72298207e77cd7477f6fbcdd4c34d8c42003f071802a91d70e3d449435d04f073c4a500d9f17e7ac0fcb0c
7
+ data.tar.gz: 9ea54f969749e637bdea916974d0cedeaccaaa2faaa4e097aa0786456c7d89d345ce077f4352b0675278f23167c93a6e0c50a02f317fbf4994042d7be0c85710
data/CHANGELOG.md CHANGED
@@ -1,47 +1,44 @@
1
- ## Rails 7.2.2.2 (August 13, 2025) ##
1
+ ## Rails 8.0.3 (September 22, 2025) ##
2
2
 
3
3
  * No changes.
4
4
 
5
5
 
6
- ## Rails 7.2.2.1 (December 10, 2024) ##
6
+ ## Rails 8.0.2.1 (August 13, 2025) ##
7
7
 
8
8
  * No changes.
9
9
 
10
10
 
11
- ## Rails 7.2.2 (October 30, 2024) ##
11
+ ## Rails 8.0.2 (March 12, 2025) ##
12
12
 
13
13
  * No changes.
14
14
 
15
15
 
16
- ## Rails 7.2.1.2 (October 23, 2024) ##
16
+ ## Rails 8.0.1 (December 13, 2024) ##
17
17
 
18
- * Fix NoMethodError in `block_format` helper
18
+ * No changes.
19
19
 
20
- *Michael Leimstaedtner*
21
20
 
21
+ ## Rails 8.0.0.1 (December 10, 2024) ##
22
22
 
23
- ## Rails 7.2.1.1 (October 15, 2024) ##
23
+ * No changes.
24
24
 
25
- * Avoid regex backtracking in `block_format` helper
26
25
 
27
- [CVE-2024-47889]
26
+ ## Rails 8.0.0 (November 07, 2024) ##
28
27
 
29
- *John Hawthorn*
28
+ * No changes.
30
29
 
31
30
 
32
- ## Rails 7.2.1 (August 22, 2024) ##
31
+ ## Rails 8.0.0.rc2 (October 30, 2024) ##
33
32
 
34
33
  * No changes.
35
34
 
36
35
 
37
- ## Rails 7.2.0 (August 09, 2024) ##
36
+ ## Rails 8.0.0.rc1 (October 19, 2024) ##
38
37
 
39
- * Remove deprecated params via `:args` for `assert_enqueued_email_with`.
38
+ * No changes.
40
39
 
41
- *Rafael Mendonça França*
42
40
 
43
- * Remove deprecated `config.action_mailer.preview_path`.
41
+ ## Rails 8.0.0.beta1 (September 26, 2024) ##
44
42
 
45
- *Rafael Mendonça França*
46
43
 
47
- Please check [7-1-stable](https://github.com/rails/rails/blob/7-1-stable/actionmailer/CHANGELOG.md) for previous changes.
44
+ 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 = "2"
10
+ MAJOR = 8
11
+ MINOR = 0
12
+ TINY = 3
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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmailer
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.2.2.2
4
+ version: 8.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
@@ -15,56 +15,56 @@ dependencies:
15
15
  requirements:
16
16
  - - '='
17
17
  - !ruby/object:Gem::Version
18
- version: 7.2.2.2
18
+ version: 8.0.3
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - '='
24
24
  - !ruby/object:Gem::Version
25
- version: 7.2.2.2
25
+ version: 8.0.3
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: actionpack
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
30
  - - '='
31
31
  - !ruby/object:Gem::Version
32
- version: 7.2.2.2
32
+ version: 8.0.3
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - '='
38
38
  - !ruby/object:Gem::Version
39
- version: 7.2.2.2
39
+ version: 8.0.3
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: actionview
42
42
  requirement: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - '='
45
45
  - !ruby/object:Gem::Version
46
- version: 7.2.2.2
46
+ version: 8.0.3
47
47
  type: :runtime
48
48
  prerelease: false
49
49
  version_requirements: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - '='
52
52
  - !ruby/object:Gem::Version
53
- version: 7.2.2.2
53
+ version: 8.0.3
54
54
  - !ruby/object:Gem::Dependency
55
55
  name: activejob
56
56
  requirement: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - '='
59
59
  - !ruby/object:Gem::Version
60
- version: 7.2.2.2
60
+ version: 8.0.3
61
61
  type: :runtime
62
62
  prerelease: false
63
63
  version_requirements: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - '='
66
66
  - !ruby/object:Gem::Version
67
- version: 7.2.2.2
67
+ version: 8.0.3
68
68
  - !ruby/object:Gem::Dependency
69
69
  name: mail
70
70
  requirement: !ruby/object:Gem::Requirement
@@ -133,10 +133,10 @@ licenses:
133
133
  - MIT
134
134
  metadata:
135
135
  bug_tracker_uri: https://github.com/rails/rails/issues
136
- changelog_uri: https://github.com/rails/rails/blob/v7.2.2.2/actionmailer/CHANGELOG.md
137
- documentation_uri: https://api.rubyonrails.org/v7.2.2.2/
136
+ changelog_uri: https://github.com/rails/rails/blob/v8.0.3/actionmailer/CHANGELOG.md
137
+ documentation_uri: https://api.rubyonrails.org/v8.0.3/
138
138
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
139
- source_code_uri: https://github.com/rails/rails/tree/v7.2.2.2/actionmailer
139
+ source_code_uri: https://github.com/rails/rails/tree/v8.0.3/actionmailer
140
140
  rubygems_mfa_required: 'true'
141
141
  rdoc_options: []
142
142
  require_paths:
@@ -145,7 +145,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
145
145
  requirements:
146
146
  - - ">="
147
147
  - !ruby/object:Gem::Version
148
- version: 3.1.0
148
+ version: 3.2.0
149
149
  required_rubygems_version: !ruby/object:Gem::Requirement
150
150
  requirements:
151
151
  - - ">="