actionmailbox 7.0.0.alpha2 → 7.0.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62ca1318fbeeb002bb7d750fd8c0adba504a079b361b838742bd5f3f06da9480
|
4
|
+
data.tar.gz: 05a801e6a9df263441b5105e7900dd875d456831775d8ad793e87ea4b5d3d701
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b9696a904182e97c31dab9bc2a88e0789892b707e17e3219c132ac28f042592ff852b6889337b250834ade2c8e176838aa3565647f4370dedd2453506be74e6
|
7
|
+
data.tar.gz: 93ca275c342237650ba36e4b59393bd8896d1caf8d7a237a03810db6ae6549d6395b6e0421ed20ad9069b0e3f02254bc880a101718669a99559848e08680172b
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,28 @@
|
|
1
|
+
## Rails 7.0.0 (December 15, 2021) ##
|
2
|
+
|
3
|
+
* No changes.
|
4
|
+
|
5
|
+
|
6
|
+
## Rails 7.0.0.rc3 (December 14, 2021) ##
|
7
|
+
|
8
|
+
* No changes.
|
9
|
+
|
10
|
+
|
11
|
+
## Rails 7.0.0.rc2 (December 14, 2021) ##
|
12
|
+
|
13
|
+
* No changes.
|
14
|
+
|
15
|
+
## Rails 7.0.0.rc1 (December 06, 2021) ##
|
16
|
+
|
17
|
+
* Removed deprecated environment variable `MAILGUN_INGRESS_API_KEY`.
|
18
|
+
|
19
|
+
*Rafael Mendonça França*
|
20
|
+
|
21
|
+
* Removed deprecated `Rails.application.credentials.action_mailbox.mailgun_api_key`.
|
22
|
+
|
23
|
+
*Rafael Mendonça França*
|
24
|
+
|
25
|
+
|
1
26
|
## Rails 7.0.0.alpha2 (September 15, 2021) ##
|
2
27
|
|
3
28
|
* No changes.
|
@@ -77,21 +77,7 @@ module ActionMailbox
|
|
77
77
|
end
|
78
78
|
|
79
79
|
def key
|
80
|
-
|
81
|
-
ActiveSupport::Deprecation.warn(<<-MSG.squish)
|
82
|
-
Rails.application.credentials.action_mailbox.api_key is deprecated and will be ignored in Rails 7.0.
|
83
|
-
Use Rails.application.credentials.action_mailbox.signing_key instead.
|
84
|
-
MSG
|
85
|
-
Rails.application.credentials.dig(:action_mailbox, :mailgun_api_key)
|
86
|
-
elsif ENV["MAILGUN_INGRESS_API_KEY"]
|
87
|
-
ActiveSupport::Deprecation.warn(<<-MSG.squish)
|
88
|
-
The MAILGUN_INGRESS_API_KEY environment variable is deprecated and will be ignored in Rails 7.0.
|
89
|
-
Use MAILGUN_INGRESS_SIGNING_KEY instead.
|
90
|
-
MSG
|
91
|
-
ENV["MAILGUN_INGRESS_API_KEY"]
|
92
|
-
else
|
93
|
-
Rails.application.credentials.dig(:action_mailbox, :mailgun_signing_key) || ENV["MAILGUN_INGRESS_SIGNING_KEY"]
|
94
|
-
end
|
80
|
+
Rails.application.credentials.dig(:action_mailbox, :mailgun_signing_key) || ENV["MAILGUN_INGRESS_SIGNING_KEY"]
|
95
81
|
end
|
96
82
|
|
97
83
|
class Authenticator
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: actionmailbox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.0.0
|
4
|
+
version: 7.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2021-
|
12
|
+
date: 2021-12-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -17,70 +17,70 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - '='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 7.0.0
|
20
|
+
version: 7.0.0
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - '='
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 7.0.0
|
27
|
+
version: 7.0.0
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: activerecord
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
32
|
- - '='
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: 7.0.0
|
34
|
+
version: 7.0.0
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
39
|
- - '='
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: 7.0.0
|
41
|
+
version: 7.0.0
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: activestorage
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
46
|
- - '='
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 7.0.0
|
48
|
+
version: 7.0.0
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
53
|
- - '='
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: 7.0.0
|
55
|
+
version: 7.0.0
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: activejob
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
59
59
|
requirements:
|
60
60
|
- - '='
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 7.0.0
|
62
|
+
version: 7.0.0
|
63
63
|
type: :runtime
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - '='
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: 7.0.0
|
69
|
+
version: 7.0.0
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: actionpack
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - '='
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
version: 7.0.0
|
76
|
+
version: 7.0.0
|
77
77
|
type: :runtime
|
78
78
|
prerelease: false
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
80
80
|
requirements:
|
81
81
|
- - '='
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version: 7.0.0
|
83
|
+
version: 7.0.0
|
84
84
|
- !ruby/object:Gem::Dependency
|
85
85
|
name: mail
|
86
86
|
requirement: !ruby/object:Gem::Requirement
|
@@ -164,10 +164,11 @@ licenses:
|
|
164
164
|
- MIT
|
165
165
|
metadata:
|
166
166
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
167
|
-
changelog_uri: https://github.com/rails/rails/blob/v7.0.0
|
168
|
-
documentation_uri: https://api.rubyonrails.org/v7.0.0
|
167
|
+
changelog_uri: https://github.com/rails/rails/blob/v7.0.0/actionmailbox/CHANGELOG.md
|
168
|
+
documentation_uri: https://api.rubyonrails.org/v7.0.0/
|
169
169
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
170
|
-
source_code_uri: https://github.com/rails/rails/tree/v7.0.0
|
170
|
+
source_code_uri: https://github.com/rails/rails/tree/v7.0.0/actionmailbox
|
171
|
+
rubygems_mfa_required: 'true'
|
171
172
|
post_install_message:
|
172
173
|
rdoc_options: []
|
173
174
|
require_paths:
|
@@ -179,11 +180,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
179
180
|
version: 2.7.0
|
180
181
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
181
182
|
requirements:
|
182
|
-
- - "
|
183
|
+
- - ">="
|
183
184
|
- !ruby/object:Gem::Version
|
184
|
-
version:
|
185
|
+
version: '0'
|
185
186
|
requirements: []
|
186
|
-
rubygems_version: 3.
|
187
|
+
rubygems_version: 3.2.32
|
187
188
|
signing_key:
|
188
189
|
specification_version: 4
|
189
190
|
summary: Inbound email handling framework.
|