actionmailer 7.1.2 → 7.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4be248c5b46e2176254f37a44c8d71cbadeb9b39ae6d40d76dcad7c546d05341
4
- data.tar.gz: db66e39c13d56ecd70b17055c34e9e5d219b0002a8cc6efaf3d2d3cf0a343118
3
+ metadata.gz: 284891e2f4adce1c3ec311a3348cca632838e1357882c8846d84cb7a9b533a0a
4
+ data.tar.gz: 3f080027773bce76dd67359fa725c38046305eaddc00269e0a11db034af81ec5
5
5
  SHA512:
6
- metadata.gz: a7e0a172a623fd515d426367d7b84a4aa3310fd162af6ce87c983a804841cacd88f8e2afec40b7ec9825d0981064ea555ae64ca45183c58f7073818358fd0ee5
7
- data.tar.gz: aeef6c68a56a8456fd9ff6930831acd1e925e169087e20a0caf30fa47b51e25477999134b16e3c2c0919bbf0c9fa501676ac939c2f3faf7a4f5f1ab7e3b1c77c
6
+ metadata.gz: 5bd29e9434c2489d3fbfc596fc3c4245a51d87ac967c8b3da109a9cb7058f4d664cda9b4d68a284dd9412f7295d3bdaf791350d1e3d6218ff6b17804d2c22ba2
7
+ data.tar.gz: b70825c2051ca3a3c49f71cdeabbd403d48b20472cc5b7cdb36082033761f909b0faa5912d18a47a80e1357b296b96003587e198a03ee24bc589b3ef8d73f05f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## Rails 7.1.3 (January 16, 2024) ##
2
+
3
+ * No changes.
4
+
5
+
1
6
  ## Rails 7.1.2 (November 10, 2023) ##
2
7
 
3
8
  * No changes.
@@ -9,7 +9,7 @@ module ActionMailer
9
9
  module VERSION
10
10
  MAJOR = 7
11
11
  MINOR = 1
12
- TINY = 2
12
+ TINY = 3
13
13
  PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
@@ -71,16 +71,6 @@ module ActionMailer
71
71
  initializer "action_mailer.set_autoload_paths", before: :set_autoload_paths do |app|
72
72
  options = app.config.action_mailer
73
73
  app.config.paths["test/mailers/previews"].concat(options.preview_paths)
74
-
75
- # Preview paths configuration needs a pass.
76
- #
77
- # config.paths is cached as soon as it is accessed. Therefore, mutating
78
- # paths["test/mailers/previews"] does not guarantee config.autoload_paths
79
- # is going to include them.
80
- #
81
- # If config.paths was accessed before, config.autoload_paths is going to
82
- # have whatever paths["test/mailers/previews"] had when cached.
83
- app.config.autoload_paths.concat(options.preview_paths)
84
74
  end
85
75
 
86
76
  initializer "action_mailer.compile_config_methods" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmailer
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.1.2
4
+ version: 7.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-10 00:00:00.000000000 Z
11
+ date: 2024-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,56 +16,56 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 7.1.2
19
+ version: 7.1.3
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 7.1.2
26
+ version: 7.1.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: actionpack
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 7.1.2
33
+ version: 7.1.3
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 7.1.2
40
+ version: 7.1.3
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: actionview
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 7.1.2
47
+ version: 7.1.3
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
- version: 7.1.2
54
+ version: 7.1.3
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: activejob
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 7.1.2
61
+ version: 7.1.3
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 7.1.2
68
+ version: 7.1.3
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: mail
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -182,10 +182,10 @@ licenses:
182
182
  - MIT
183
183
  metadata:
184
184
  bug_tracker_uri: https://github.com/rails/rails/issues
185
- changelog_uri: https://github.com/rails/rails/blob/v7.1.2/actionmailer/CHANGELOG.md
186
- documentation_uri: https://api.rubyonrails.org/v7.1.2/
185
+ changelog_uri: https://github.com/rails/rails/blob/v7.1.3/actionmailer/CHANGELOG.md
186
+ documentation_uri: https://api.rubyonrails.org/v7.1.3/
187
187
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
188
- source_code_uri: https://github.com/rails/rails/tree/v7.1.2/actionmailer
188
+ source_code_uri: https://github.com/rails/rails/tree/v7.1.3/actionmailer
189
189
  rubygems_mfa_required: 'true'
190
190
  post_install_message:
191
191
  rdoc_options: []