actionmailbox 7.2.2.1 → 7.2.3

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: e57e9ec926760227bea1cd8ac42dcb3aeb89f3792bbe10ad797c4b701e16cf64
4
- data.tar.gz: c625f666c32d06af1341ffe5eaa8a30ac37e58bc9ce63f6221752f3cb0214aa6
3
+ metadata.gz: f5f5c33a8cf94809b8da7f344a57f0d98d6c4adbc9e2e2b9c60d57f540cbc3fd
4
+ data.tar.gz: e847f23e337194a54180eee8cd8ca66396645e052c5cbe05e6ea7e1c2c22dc2d
5
5
  SHA512:
6
- metadata.gz: c72292f4b13f4d22d78e968458ba0d96fc3db6ca5afda20569ebdf3d48edcba794fee9c2efe017318f487fd2d3e7bce6690c2b9aa81802a177b880ece49d90b9
7
- data.tar.gz: 94f3d46deaf541cc3dba1069f17f3d9e88118221de437408f46549e3d303df8913fcd5465e1676614314e63c7b7485231d65338df6fb1f0689e205922b524e4b
6
+ metadata.gz: 14b1293b8672aa489cfcc5b2316b8e683fb601af18aa242c6227c398ad4330eff79aa0dfa03e149ad3dbe436575b26c4215effb9e45ffaecd7ebdd80b0573c08
7
+ data.tar.gz: 469d393aa185a4dae717e458e8b22426436e402f545109fa6b7ca8f7c0b61221d08cc64f4dd3a7959b19fb613491622107adfef84e8d21cb13a5b40daae0726e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## Rails 7.2.3 (October 28, 2025) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 7.2.2.2 (August 13, 2025) ##
7
+
8
+ * No changes.
9
+
10
+
1
11
  ## Rails 7.2.2.1 (December 10, 2024) ##
2
12
 
3
13
  * No changes.
@@ -22,7 +22,7 @@ module ActionMailbox
22
22
  head :ok
23
23
  rescue JSON::ParserError => error
24
24
  logger.error error.message
25
- head :unprocessable_entity
25
+ head ActionDispatch::Constants::UNPROCESSABLE_CONTENT
26
26
  end
27
27
 
28
28
  def health_check
@@ -57,7 +57,7 @@ module ActionMailbox
57
57
  When configuring your Postmark inbound webhook, be sure to check the box
58
58
  labeled "Include raw email content in JSON payload".
59
59
  MESSAGE
60
- head :unprocessable_entity
60
+ head ActionDispatch::Constants::UNPROCESSABLE_CONTENT
61
61
  end
62
62
  end
63
63
  end
@@ -55,7 +55,7 @@ module ActionMailbox
55
55
  if request.body
56
56
  ActionMailbox::InboundEmail.create_and_extract_message_id! request.body.read
57
57
  else
58
- head :unprocessable_entity
58
+ head ActionDispatch::Constants::UNPROCESSABLE_CONTENT
59
59
  end
60
60
  end
61
61
 
@@ -52,7 +52,7 @@ module ActionMailbox
52
52
  ActionMailbox::InboundEmail.create_and_extract_message_id! mail
53
53
  rescue JSON::ParserError => error
54
54
  logger.error error.message
55
- head :unprocessable_entity
55
+ head ActionDispatch::Constants::UNPROCESSABLE_CONTENT
56
56
  end
57
57
 
58
58
  private
@@ -29,7 +29,7 @@ module ActionMailbox
29
29
  initializer "action_mailbox.config" do
30
30
  config.after_initialize do |app|
31
31
  ActionMailbox.logger = app.config.action_mailbox.logger || Rails.logger
32
- ActionMailbox.incinerate = app.config.action_mailbox.incinerate.nil? ? true : app.config.action_mailbox.incinerate
32
+ ActionMailbox.incinerate = app.config.action_mailbox.incinerate.nil? || app.config.action_mailbox.incinerate
33
33
  ActionMailbox.incinerate_after = app.config.action_mailbox.incinerate_after || 30.days
34
34
  ActionMailbox.queues = app.config.action_mailbox.queues || {}
35
35
  ActionMailbox.ingress = app.config.action_mailbox.ingress
@@ -9,8 +9,8 @@ module ActionMailbox
9
9
  module VERSION
10
10
  MAJOR = 7
11
11
  MINOR = 2
12
- TINY = 2
13
- PRE = "1"
12
+ TINY = 3
13
+ PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionmailbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.2.2.1
4
+ version: 7.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  - George Claghorn
9
- autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2024-12-10 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: activesupport
@@ -17,70 +16,70 @@ dependencies:
17
16
  requirements:
18
17
  - - '='
19
18
  - !ruby/object:Gem::Version
20
- version: 7.2.2.1
19
+ version: 7.2.3
21
20
  type: :runtime
22
21
  prerelease: false
23
22
  version_requirements: !ruby/object:Gem::Requirement
24
23
  requirements:
25
24
  - - '='
26
25
  - !ruby/object:Gem::Version
27
- version: 7.2.2.1
26
+ version: 7.2.3
28
27
  - !ruby/object:Gem::Dependency
29
28
  name: activerecord
30
29
  requirement: !ruby/object:Gem::Requirement
31
30
  requirements:
32
31
  - - '='
33
32
  - !ruby/object:Gem::Version
34
- version: 7.2.2.1
33
+ version: 7.2.3
35
34
  type: :runtime
36
35
  prerelease: false
37
36
  version_requirements: !ruby/object:Gem::Requirement
38
37
  requirements:
39
38
  - - '='
40
39
  - !ruby/object:Gem::Version
41
- version: 7.2.2.1
40
+ version: 7.2.3
42
41
  - !ruby/object:Gem::Dependency
43
42
  name: activestorage
44
43
  requirement: !ruby/object:Gem::Requirement
45
44
  requirements:
46
45
  - - '='
47
46
  - !ruby/object:Gem::Version
48
- version: 7.2.2.1
47
+ version: 7.2.3
49
48
  type: :runtime
50
49
  prerelease: false
51
50
  version_requirements: !ruby/object:Gem::Requirement
52
51
  requirements:
53
52
  - - '='
54
53
  - !ruby/object:Gem::Version
55
- version: 7.2.2.1
54
+ version: 7.2.3
56
55
  - !ruby/object:Gem::Dependency
57
56
  name: activejob
58
57
  requirement: !ruby/object:Gem::Requirement
59
58
  requirements:
60
59
  - - '='
61
60
  - !ruby/object:Gem::Version
62
- version: 7.2.2.1
61
+ version: 7.2.3
63
62
  type: :runtime
64
63
  prerelease: false
65
64
  version_requirements: !ruby/object:Gem::Requirement
66
65
  requirements:
67
66
  - - '='
68
67
  - !ruby/object:Gem::Version
69
- version: 7.2.2.1
68
+ version: 7.2.3
70
69
  - !ruby/object:Gem::Dependency
71
70
  name: actionpack
72
71
  requirement: !ruby/object:Gem::Requirement
73
72
  requirements:
74
73
  - - '='
75
74
  - !ruby/object:Gem::Version
76
- version: 7.2.2.1
75
+ version: 7.2.3
77
76
  type: :runtime
78
77
  prerelease: false
79
78
  version_requirements: !ruby/object:Gem::Requirement
80
79
  requirements:
81
80
  - - '='
82
81
  - !ruby/object:Gem::Version
83
- version: 7.2.2.1
82
+ version: 7.2.3
84
83
  - !ruby/object:Gem::Dependency
85
84
  name: mail
86
85
  requirement: !ruby/object:Gem::Requirement
@@ -165,12 +164,11 @@ licenses:
165
164
  - MIT
166
165
  metadata:
167
166
  bug_tracker_uri: https://github.com/rails/rails/issues
168
- changelog_uri: https://github.com/rails/rails/blob/v7.2.2.1/actionmailbox/CHANGELOG.md
169
- documentation_uri: https://api.rubyonrails.org/v7.2.2.1/
167
+ changelog_uri: https://github.com/rails/rails/blob/v7.2.3/actionmailbox/CHANGELOG.md
168
+ documentation_uri: https://api.rubyonrails.org/v7.2.3/
170
169
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
171
- source_code_uri: https://github.com/rails/rails/tree/v7.2.2.1/actionmailbox
170
+ source_code_uri: https://github.com/rails/rails/tree/v7.2.3/actionmailbox
172
171
  rubygems_mfa_required: 'true'
173
- post_install_message:
174
172
  rdoc_options: []
175
173
  require_paths:
176
174
  - lib
@@ -185,8 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
185
183
  - !ruby/object:Gem::Version
186
184
  version: '0'
187
185
  requirements: []
188
- rubygems_version: 3.5.22
189
- signing_key:
186
+ rubygems_version: 3.6.9
190
187
  specification_version: 4
191
188
  summary: Inbound email handling framework.
192
189
  test_files: []