actionmailer 7.1.3.4 → 7.1.5.2
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 +36 -0
- data/lib/action_mailer/gem_version.rb +2 -2
- data/lib/action_mailer/mail_helper.rb +11 -3
- data/lib/action_mailer.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: f5817b1ff95fad6df7d513243a1a7676179210576d57896419782e057f141551
|
4
|
+
data.tar.gz: 5c14d145c98a2f011c30d6f96f8dc687c24798b98d1e73281925848f9d64112e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd48b9da300f69269a4213b638c221922a18deed8097790683751af6543093be8c701d0725008a25e0e06f7092ad7e6ece80eec576a35de6b37d965822d0de41
|
7
|
+
data.tar.gz: 6f2507b4ddc9ac5fbb1f3c7d860d755188b2285db72f591a0c567f6b006b7a7b9f1d25f117566fc3aaa4f7b9ee98785b5eb020506a1b84932a10f62f2832867f
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,39 @@
|
|
1
|
+
## Rails 7.1.5.2 (August 13, 2025) ##
|
2
|
+
|
3
|
+
* No changes.
|
4
|
+
|
5
|
+
|
6
|
+
## Rails 7.1.5.1 (December 10, 2024) ##
|
7
|
+
|
8
|
+
* No changes.
|
9
|
+
|
10
|
+
|
11
|
+
## Rails 7.1.5 (October 30, 2024) ##
|
12
|
+
|
13
|
+
* No changes.
|
14
|
+
|
15
|
+
|
16
|
+
## Rails 7.1.4.2 (October 23, 2024) ##
|
17
|
+
|
18
|
+
* Fix NoMethodError in `block_format` helper
|
19
|
+
|
20
|
+
*Michael Leimstaedtner*
|
21
|
+
|
22
|
+
|
23
|
+
## Rails 7.1.4.1 (October 15, 2024) ##
|
24
|
+
|
25
|
+
* Avoid regex backtracking in `block_format` helper
|
26
|
+
|
27
|
+
[CVE-2024-47889]
|
28
|
+
|
29
|
+
*John Hawthorn*
|
30
|
+
|
31
|
+
|
32
|
+
## Rails 7.1.4 (August 22, 2024) ##
|
33
|
+
|
34
|
+
* No changes.
|
35
|
+
|
36
|
+
|
1
37
|
## Rails 7.1.3.4 (June 04, 2024) ##
|
2
38
|
|
3
39
|
* No changes.
|
@@ -25,10 +25,18 @@ module ActionMailer
|
|
25
25
|
}.join("\n\n")
|
26
26
|
|
27
27
|
# Make list points stand on their own line
|
28
|
-
|
29
|
-
formatted.
|
28
|
+
output = +""
|
29
|
+
splits = formatted.split(/(\*+|\#+)/)
|
30
|
+
while line = splits.shift
|
31
|
+
if line.start_with?("*", "#") && splits.first&.start_with?(" ")
|
32
|
+
output.chomp!(" ") while output.end_with?(" ")
|
33
|
+
output << " #{line} #{splits.shift.strip}\n"
|
34
|
+
else
|
35
|
+
output << line
|
36
|
+
end
|
37
|
+
end
|
30
38
|
|
31
|
-
|
39
|
+
output
|
32
40
|
end
|
33
41
|
|
34
42
|
# Access the mailer instance.
|
data/lib/action_mailer.rb
CHANGED
@@ -35,7 +35,7 @@ require "active_support/core_ext/module/attr_internal"
|
|
35
35
|
require "active_support/core_ext/string/inflections"
|
36
36
|
require "active_support/lazy_load_hooks"
|
37
37
|
|
38
|
-
# :include:
|
38
|
+
# :include: ../README.rdoc
|
39
39
|
module ActionMailer
|
40
40
|
extend ::ActiveSupport::Autoload
|
41
41
|
|
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.1.
|
4
|
+
version: 7.1.5.2
|
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.1.
|
18
|
+
version: 7.1.5.2
|
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.1.
|
25
|
+
version: 7.1.5.2
|
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.1.
|
32
|
+
version: 7.1.5.2
|
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.1.
|
39
|
+
version: 7.1.5.2
|
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.1.
|
46
|
+
version: 7.1.5.2
|
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.1.
|
53
|
+
version: 7.1.5.2
|
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.1.
|
60
|
+
version: 7.1.5.2
|
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.1.
|
67
|
+
version: 7.1.5.2
|
69
68
|
- !ruby/object:Gem::Dependency
|
70
69
|
name: mail
|
71
70
|
requirement: !ruby/object:Gem::Requirement
|
@@ -182,12 +181,11 @@ licenses:
|
|
182
181
|
- MIT
|
183
182
|
metadata:
|
184
183
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
185
|
-
changelog_uri: https://github.com/rails/rails/blob/v7.1.
|
186
|
-
documentation_uri: https://api.rubyonrails.org/v7.1.
|
184
|
+
changelog_uri: https://github.com/rails/rails/blob/v7.1.5.2/actionmailer/CHANGELOG.md
|
185
|
+
documentation_uri: https://api.rubyonrails.org/v7.1.5.2/
|
187
186
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
188
|
-
source_code_uri: https://github.com/rails/rails/tree/v7.1.
|
187
|
+
source_code_uri: https://github.com/rails/rails/tree/v7.1.5.2/actionmailer
|
189
188
|
rubygems_mfa_required: 'true'
|
190
|
-
post_install_message:
|
191
189
|
rdoc_options: []
|
192
190
|
require_paths:
|
193
191
|
- lib
|
@@ -203,8 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
203
201
|
version: '0'
|
204
202
|
requirements:
|
205
203
|
- none
|
206
|
-
rubygems_version: 3.
|
207
|
-
signing_key:
|
204
|
+
rubygems_version: 3.6.9
|
208
205
|
specification_version: 4
|
209
206
|
summary: Email composition and delivery framework (part of Rails).
|
210
207
|
test_files: []
|