actionmailbox 7.0.0.alpha1 → 7.0.0.rc3

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: 81b81cb09f0bed116b38808cb3c80f6b03c4be9a017e78dfeb7fe6ffaca6f42a
4
- data.tar.gz: a938715e24c125482f39d9c3b780b2d9203432e286b59c8978666dbf2de235cd
3
+ metadata.gz: bcaa80370ac198e5ad1ab5c49d216d7086faf6396b44beb1945ed59c301a3c50
4
+ data.tar.gz: 21a70d21ef6c1b5e1bf451c2bfe75f8f3425a3c94b5356d4668d2fb6fc80ca68
5
5
  SHA512:
6
- metadata.gz: 13620fcd40b8313862556cc0feb09fccab7e7a73ff54d5c6039aa1fe71d8f4e95221dcfaeca78e9f9ede31b3be6226d23ca4cdcfd51fec0e32e5a57b6dc5ec79
7
- data.tar.gz: fd429260a2276a8c79bae48694077938e4cac19c729df1d419d02d51db571cbea23ed1d74057a636da0cb20412706cb8fc384651591178c63f57b0261ea61a5a
6
+ metadata.gz: ac9c404733a3f72e38f02991938db1b3a59d58021b042201ce1f2d489dd2997a7eee7eedf4429dd491d9e85a19e7b27531a7ad63c365e14285a34d99c0de5e23
7
+ data.tar.gz: 1f8ac1918e047c57fc83f953e6dc1cd8fcc4afa5371dff4d9cc6920d1dce18960798faa4715a6020572105d6581285dacb1439bde5cc386eaaa06ff8e9b58a4f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ ## Rails 7.0.0.rc3 (December 14, 2021) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 7.0.0.rc2 (December 14, 2021) ##
7
+
8
+ * Removed deprecated environment variable `MAILGUN_INGRESS_API_KEY`.
9
+
10
+ *Rafael Mendonça França*
11
+
12
+ * Removed deprecated `Rails.application.credentials.action_mailbox.mailgun_api_key`.
13
+
14
+ *Rafael Mendonça França*
15
+
16
+
17
+ ## Rails 7.0.0.alpha2 (September 15, 2021) ##
18
+
19
+ * No changes.
20
+
21
+
1
22
  ## Rails 7.0.0.alpha1 (September 15, 2021) ##
2
23
 
3
24
  * Add `attachments` to the list of permitted parameters for inbound emails conductor.
@@ -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 = "alpha1"
13
+ PRE = "rc3"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmailbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.0.alpha1
4
+ version: 7.0.0.rc3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  - George Claghorn
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-09-15 00:00:00.000000000 Z
12
+ date: 2021-12-14 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.alpha1
20
+ version: 7.0.0.rc3
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.alpha1
27
+ version: 7.0.0.rc3
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.alpha1
34
+ version: 7.0.0.rc3
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.alpha1
41
+ version: 7.0.0.rc3
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.alpha1
48
+ version: 7.0.0.rc3
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.alpha1
55
+ version: 7.0.0.rc3
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.alpha1
62
+ version: 7.0.0.rc3
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.alpha1
69
+ version: 7.0.0.rc3
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.alpha1
76
+ version: 7.0.0.rc3
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.alpha1
83
+ version: 7.0.0.rc3
84
84
  - !ruby/object:Gem::Dependency
85
85
  name: mail
86
86
  requirement: !ruby/object:Gem::Requirement
@@ -164,11 +164,12 @@ 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.alpha1/actionmailbox/CHANGELOG.md
168
- documentation_uri: https://api.rubyonrails.org/v7.0.0.alpha1/
167
+ changelog_uri: https://github.com/rails/rails/blob/v7.0.0.rc3/actionmailbox/CHANGELOG.md
168
+ documentation_uri: https://api.rubyonrails.org/v7.0.0.rc3/
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.alpha1/actionmailbox
171
- post_install_message:
170
+ source_code_uri: https://github.com/rails/rails/tree/v7.0.0.rc3/actionmailbox
171
+ rubygems_mfa_required: 'true'
172
+ post_install_message:
172
173
  rdoc_options: []
173
174
  require_paths:
174
175
  - lib
@@ -183,8 +184,8 @@ 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
- signing_key:
187
+ rubygems_version: 3.2.15
188
+ signing_key:
188
189
  specification_version: 4
189
190
  summary: Inbound email handling framework.
190
191
  test_files: []