actionmailbox 7.0.0.alpha2 → 7.0.0.rc1

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: c0acaf02f90380aaa29444def7a09da2ab9e63181125a69ed9e7e281b0ee2368
4
- data.tar.gz: 062c2471d985a887b524b7f71bc9e3f2f3d10c58611aa9935ee541a060955999
3
+ metadata.gz: 50d698378f327844311590e0ac2ce53c701b5a18e943d1731e0e61196e88c312
4
+ data.tar.gz: 7502e0e18227ff41f6463193b6b336a2c6042f183c2ce9001cab9d61d8ad633c
5
5
  SHA512:
6
- metadata.gz: 4d4a9176cb83742a11e7fd8fb7210a32471befbc1dc0032414120a587a13243d0d50d153735b411225856f8eba61de1f0e766b70ed80da8d5ddd3ec4109185ad
7
- data.tar.gz: 764d5378d093c640f3de234165f381aaddf67f7ece1def993571761b0fd2f04693def88915ce45a2be07d552df3c5ae6107edcb8d33e052985f0e27705b3d188
6
+ metadata.gz: ca747eaa10c26789ef39afee063178e792d6be14fc50cea1a8cff5d7133fd28561927f42143bb522807ce5d92573e5126789fc4cb802dead0b53c86908e896b0
7
+ data.tar.gz: 1983d046a61b63ef14c4497e1cec8b27d97ae97ebd0e32dd49917a39870e8bff682ae8458a92e53aba02f4e44b86503429bde3143ad0516f375925655c659250
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ * Removed deprecated environment variable `MAILGUN_INGRESS_API_KEY`.
2
+
3
+ *Rafael Mendonça França*
4
+
5
+ * Removed deprecated `Rails.application.credentials.action_mailbox.mailgun_api_key`.
6
+
7
+ *Rafael Mendonça França*
8
+
9
+
1
10
  ## Rails 7.0.0.alpha2 (September 15, 2021) ##
2
11
 
3
12
  * No changes.
@@ -77,21 +77,7 @@ module ActionMailbox
77
77
  end
78
78
 
79
79
  def key
80
- if Rails.application.credentials.dig(:action_mailbox, :mailgun_api_key)
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
@@ -10,7 +10,7 @@ module ActionMailbox
10
10
  MAJOR = 7
11
11
  MINOR = 0
12
12
  TINY = 0
13
- PRE = "alpha2"
13
+ PRE = "rc1"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
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.alpha2
4
+ version: 7.0.0.rc1
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-09-15 00:00:00.000000000 Z
12
+ date: 2021-12-06 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.alpha2
20
+ version: 7.0.0.rc1
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.alpha2
27
+ version: 7.0.0.rc1
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.alpha2
34
+ version: 7.0.0.rc1
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.alpha2
41
+ version: 7.0.0.rc1
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.alpha2
48
+ version: 7.0.0.rc1
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.alpha2
55
+ version: 7.0.0.rc1
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.alpha2
62
+ version: 7.0.0.rc1
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.alpha2
69
+ version: 7.0.0.rc1
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.alpha2
76
+ version: 7.0.0.rc1
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.alpha2
83
+ version: 7.0.0.rc1
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.alpha2/actionmailbox/CHANGELOG.md
168
- documentation_uri: https://api.rubyonrails.org/v7.0.0.alpha2/
167
+ changelog_uri: https://github.com/rails/rails/blob/v7.0.0.rc1/actionmailbox/CHANGELOG.md
168
+ documentation_uri: https://api.rubyonrails.org/v7.0.0.rc1/
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.alpha2/actionmailbox
170
+ source_code_uri: https://github.com/rails/rails/tree/v7.0.0.rc1/actionmailbox
171
+ rubygems_mfa_required: 'true'
171
172
  post_install_message:
172
173
  rdoc_options: []
173
174
  require_paths:
@@ -183,7 +184,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
183
184
  - !ruby/object:Gem::Version
184
185
  version: 1.3.1
185
186
  requirements: []
186
- rubygems_version: 3.1.6
187
+ rubygems_version: 3.2.22
187
188
  signing_key:
188
189
  specification_version: 4
189
190
  summary: Inbound email handling framework.