actionmailer 8.0.1 → 8.0.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 +10 -0
- data/lib/action_mailer/base.rb +2 -7
- data/lib/action_mailer/gem_version.rb +1 -1
- 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: cea7cc9f3abd9216ac04f88c4832707053ae3b87bc7f5c1f97c62abe9d4326ae
|
4
|
+
data.tar.gz: b455f69d056d7ae79258dc492e9e598b885e4ecd5574552f870aaea653af40f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e3103cc26c92b94ef908a823a93124b9166eb868618cef1d7164f31c7e56bebb32a2a7a146ba2e51c75226695b798cf36bebcdb960d75a4de26a8de38faafae
|
7
|
+
data.tar.gz: 3ef373b647b7c2dccda20a0aaab397fb37341364a4741ae3fe758f4f3a5bc79ade5094f44a07ce3f0c9949dc0eaf6245332a9f41228655d71d69c937c14caa94
|
data/CHANGELOG.md
CHANGED
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: 8.0.
|
4
|
+
version: 8.0.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: 2025-03-12 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: 8.0.
|
18
|
+
version: 8.0.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: 8.0.
|
25
|
+
version: 8.0.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: 8.0.
|
32
|
+
version: 8.0.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: 8.0.
|
39
|
+
version: 8.0.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: 8.0.
|
46
|
+
version: 8.0.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: 8.0.
|
53
|
+
version: 8.0.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: 8.0.
|
60
|
+
version: 8.0.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: 8.0.
|
67
|
+
version: 8.0.2
|
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/v8.0.
|
138
|
-
documentation_uri: https://api.rubyonrails.org/v8.0.
|
136
|
+
changelog_uri: https://github.com/rails/rails/blob/v8.0.2/actionmailer/CHANGELOG.md
|
137
|
+
documentation_uri: https://api.rubyonrails.org/v8.0.2/
|
139
138
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
140
|
-
source_code_uri: https://github.com/rails/rails/tree/v8.0.
|
139
|
+
source_code_uri: https://github.com/rails/rails/tree/v8.0.2/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.2
|
160
157
|
specification_version: 4
|
161
158
|
summary: Email composition and delivery framework (part of Rails).
|
162
159
|
test_files: []
|