actionpack 7.2.3.2 → 7.2.4

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: b4db283a47c7fd1c131bc94355af9d04693a87e369aa12804684c07502c1b178
4
- data.tar.gz: 5535526e4111326ce7f45e12ed01766c18f4ac7519a71db3dd061e0b40591577
3
+ metadata.gz: 92711bd6eb44551b5070a441c2f5cfad4ed0b58793f56a0bd206def6c423d04e
4
+ data.tar.gz: ab57ce9c22973e3bd0087d8597704bfc33e3ffdc614565dc647025c434124f38
5
5
  SHA512:
6
- metadata.gz: 659a67074d71add87550dfc628c01a21e3c09ea8792d6d9fd11249ceb1bec9ab399587bd59b69504fef218dfffbaa26d45ab0022ecd97d9769aeab41324b23f2
7
- data.tar.gz: 10af8e140e458f9c917c3298a8408e53cfbbdcb788e3d73057784f9d2b382c5be502db2d5ebc01adb0f78f97723685c7ca5cd3a4ec00dc54da679826db154445
6
+ metadata.gz: 4c07dec7d74886de1c72fcf3a735b2a407d7da42162686cc92f23999d11da71fccd1b18233890e86a313ee778b6d4d617aa62dd782695fa589efb13b22d42cc6
7
+ data.tar.gz: 5046b52210d8021e3db5113212cfb9e5148faac46f65f31dea44f4c7b02932232b229e2df123ed4d12f67d40dabb193664f341b85abbe70686ee79bd61a7e80f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## Rails 7.2.4 (September 24, 2026) ##
2
+
3
+ * Fix `ActionController::UnknownHttpMethod` to return `405 Method Not Allowed`
4
+ instead of `500 Internal Server Error`.
5
+
6
+ *Nicolas Vandenbogaerde*
7
+
8
+
1
9
  ## Rails 7.2.3.2 (July 29, 2026) ##
2
10
 
3
11
  * No changes.
@@ -65,7 +65,7 @@ module ActionDispatch
65
65
  content_type = Mime[:text]
66
66
  end
67
67
 
68
- if request.head?
68
+ if request.raw_request_method == "HEAD"
69
69
  render(wrapper.status_code, "", content_type)
70
70
  elsif api_request?(content_type)
71
71
  render_for_api_request(content_type, wrapper)
@@ -11,8 +11,8 @@ module ActionPack
11
11
  module VERSION
12
12
  MAJOR = 7
13
13
  MINOR = 2
14
- TINY = 3
15
- PRE = "2"
14
+ TINY = 4
15
+ PRE = nil
16
16
 
17
17
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
18
18
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionpack
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.2.3.2
4
+ version: 7.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
@@ -15,14 +15,14 @@ dependencies:
15
15
  requirements:
16
16
  - - '='
17
17
  - !ruby/object:Gem::Version
18
- version: 7.2.3.2
18
+ version: 7.2.4
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - '='
24
24
  - !ruby/object:Gem::Version
25
- version: 7.2.3.2
25
+ version: 7.2.4
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: cgi
28
28
  requirement: !ruby/object:Gem::Requirement
@@ -161,28 +161,28 @@ dependencies:
161
161
  requirements:
162
162
  - - '='
163
163
  - !ruby/object:Gem::Version
164
- version: 7.2.3.2
164
+ version: 7.2.4
165
165
  type: :runtime
166
166
  prerelease: false
167
167
  version_requirements: !ruby/object:Gem::Requirement
168
168
  requirements:
169
169
  - - '='
170
170
  - !ruby/object:Gem::Version
171
- version: 7.2.3.2
171
+ version: 7.2.4
172
172
  - !ruby/object:Gem::Dependency
173
173
  name: activemodel
174
174
  requirement: !ruby/object:Gem::Requirement
175
175
  requirements:
176
176
  - - '='
177
177
  - !ruby/object:Gem::Version
178
- version: 7.2.3.2
178
+ version: 7.2.4
179
179
  type: :development
180
180
  prerelease: false
181
181
  version_requirements: !ruby/object:Gem::Requirement
182
182
  requirements:
183
183
  - - '='
184
184
  - !ruby/object:Gem::Version
185
- version: 7.2.3.2
185
+ version: 7.2.4
186
186
  description: Web apps on Rails. Simple, battle-tested conventions for building and
187
187
  testing MVC web applications. Works with any Rack-compatible server.
188
188
  email: david@loudthinking.com
@@ -382,10 +382,10 @@ licenses:
382
382
  - MIT
383
383
  metadata:
384
384
  bug_tracker_uri: https://github.com/rails/rails/issues
385
- changelog_uri: https://github.com/rails/rails/blob/v7.2.3.2/actionpack/CHANGELOG.md
386
- documentation_uri: https://api.rubyonrails.org/v7.2.3.2/
385
+ changelog_uri: https://github.com/rails/rails/blob/v7.2.4/actionpack/CHANGELOG.md
386
+ documentation_uri: https://api.rubyonrails.org/v7.2.4/
387
387
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
388
- source_code_uri: https://github.com/rails/rails/tree/v7.2.3.2/actionpack
388
+ source_code_uri: https://github.com/rails/rails/tree/v7.2.4/actionpack
389
389
  rubygems_mfa_required: 'true'
390
390
  rdoc_options: []
391
391
  require_paths:
@@ -402,7 +402,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
402
402
  version: '0'
403
403
  requirements:
404
404
  - none
405
- rubygems_version: 4.0.16
405
+ rubygems_version: 4.0.20
406
406
  specification_version: 4
407
407
  summary: Web-flow and rendering framework putting the VC in MVC (part of Rails).
408
408
  test_files: []