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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 26766d3cdb07f8a7d1648b84ce10139775b0f26870285b453e97ca1976f2d385
4
- data.tar.gz: 0ad815cabb24543d20bf31114df13e3f973e7291db1448099c979c664cb0721f
3
+ metadata.gz: cea7cc9f3abd9216ac04f88c4832707053ae3b87bc7f5c1f97c62abe9d4326ae
4
+ data.tar.gz: b455f69d056d7ae79258dc492e9e598b885e4ecd5574552f870aaea653af40f3
5
5
  SHA512:
6
- metadata.gz: 204923241890755968eaa36051f2f8dbf0bab4b34b517997db7bbec8a8be51a7feccd5cae022514eb25adc71cf3597af85fa8995c253c2da011ec8d54ad9d030
7
- data.tar.gz: 5e9622725fcdd11ddd31c1cd61e08a42653a4aaf725636419db3874c367f2193bbba1a1f83fa0818560a018983efc4c613154ca3276f463dce0a7e8d3bd6dfc0
6
+ metadata.gz: 5e3103cc26c92b94ef908a823a93124b9166eb868618cef1d7164f31c7e56bebb32a2a7a146ba2e51c75226695b798cf36bebcdb960d75a4de26a8de38faafae
7
+ data.tar.gz: 3ef373b647b7c2dccda20a0aaab397fb37341364a4741ae3fe758f4f3a5bc79ade5094f44a07ce3f0c9949dc0eaf6245332a9f41228655d71d69c937c14caa94
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## Rails 8.0.2 (March 12, 2025) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 8.0.2 (March 12, 2025) ##
7
+
8
+ * No changes.
9
+
10
+
1
11
  ## Rails 8.0.1 (December 13, 2024) ##
2
12
 
3
13
  * No changes.
@@ -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.
@@ -9,7 +9,7 @@ module ActionMailer
9
9
  module VERSION
10
10
  MAJOR = 8
11
11
  MINOR = 0
12
- TINY = 1
12
+ TINY = 2
13
13
  PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
@@ -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: 8.0.1
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: 2024-12-13 00:00:00.000000000 Z
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.1
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.1
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.1
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.1
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.1
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.1
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.1
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.1
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.1/actionmailer/CHANGELOG.md
138
- documentation_uri: https://api.rubyonrails.org/v8.0.1/
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.1/actionmailer
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.5.22
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: []