actionpack 7.1.3 → 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.
Files changed (159) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +121 -465
  3. data/README.rdoc +1 -1
  4. data/lib/abstract_controller/asset_paths.rb +2 -0
  5. data/lib/abstract_controller/base.rb +93 -100
  6. data/lib/abstract_controller/caching/fragments.rb +50 -53
  7. data/lib/abstract_controller/caching.rb +2 -0
  8. data/lib/abstract_controller/callbacks.rb +66 -64
  9. data/lib/abstract_controller/collector.rb +7 -7
  10. data/lib/abstract_controller/deprecator.rb +2 -0
  11. data/lib/abstract_controller/error.rb +2 -0
  12. data/lib/abstract_controller/helpers.rb +71 -84
  13. data/lib/abstract_controller/logger.rb +2 -0
  14. data/lib/abstract_controller/railties/routes_helpers.rb +2 -0
  15. data/lib/abstract_controller/rendering.rb +13 -12
  16. data/lib/abstract_controller/translation.rb +15 -7
  17. data/lib/abstract_controller/url_for.rb +8 -6
  18. data/lib/abstract_controller.rb +2 -0
  19. data/lib/action_controller/api/api_rendering.rb +2 -0
  20. data/lib/action_controller/api.rb +75 -72
  21. data/lib/action_controller/base.rb +198 -126
  22. data/lib/action_controller/caching.rb +15 -12
  23. data/lib/action_controller/deprecator.rb +2 -0
  24. data/lib/action_controller/form_builder.rb +20 -17
  25. data/lib/action_controller/log_subscriber.rb +3 -1
  26. data/lib/action_controller/metal/allow_browser.rb +123 -0
  27. data/lib/action_controller/metal/basic_implicit_render.rb +2 -0
  28. data/lib/action_controller/metal/conditional_get.rb +187 -174
  29. data/lib/action_controller/metal/content_security_policy.rb +25 -24
  30. data/lib/action_controller/metal/cookies.rb +4 -2
  31. data/lib/action_controller/metal/data_streaming.rb +64 -55
  32. data/lib/action_controller/metal/default_headers.rb +5 -3
  33. data/lib/action_controller/metal/etag_with_flash.rb +3 -1
  34. data/lib/action_controller/metal/etag_with_template_digest.rb +17 -15
  35. data/lib/action_controller/metal/exceptions.rb +11 -9
  36. data/lib/action_controller/metal/flash.rb +12 -10
  37. data/lib/action_controller/metal/head.rb +12 -10
  38. data/lib/action_controller/metal/helpers.rb +63 -55
  39. data/lib/action_controller/metal/http_authentication.rb +211 -206
  40. data/lib/action_controller/metal/implicit_render.rb +17 -15
  41. data/lib/action_controller/metal/instrumentation.rb +15 -12
  42. data/lib/action_controller/metal/live.rb +117 -108
  43. data/lib/action_controller/metal/logging.rb +6 -4
  44. data/lib/action_controller/metal/mime_responds.rb +151 -142
  45. data/lib/action_controller/metal/parameter_encoding.rb +34 -32
  46. data/lib/action_controller/metal/params_wrapper.rb +57 -59
  47. data/lib/action_controller/metal/permissions_policy.rb +13 -12
  48. data/lib/action_controller/metal/rate_limiting.rb +62 -0
  49. data/lib/action_controller/metal/redirecting.rb +112 -85
  50. data/lib/action_controller/metal/renderers.rb +50 -49
  51. data/lib/action_controller/metal/rendering.rb +104 -76
  52. data/lib/action_controller/metal/request_forgery_protection.rb +165 -134
  53. data/lib/action_controller/metal/rescue.rb +11 -9
  54. data/lib/action_controller/metal/streaming.rb +138 -136
  55. data/lib/action_controller/metal/strong_parameters.rb +525 -483
  56. data/lib/action_controller/metal/testing.rb +2 -0
  57. data/lib/action_controller/metal/url_for.rb +17 -15
  58. data/lib/action_controller/metal.rb +86 -60
  59. data/lib/action_controller/railtie.rb +3 -0
  60. data/lib/action_controller/railties/helpers.rb +2 -0
  61. data/lib/action_controller/renderer.rb +41 -36
  62. data/lib/action_controller/template_assertions.rb +4 -2
  63. data/lib/action_controller/test_case.rb +148 -129
  64. data/lib/action_controller.rb +10 -3
  65. data/lib/action_dispatch/constants.rb +8 -0
  66. data/lib/action_dispatch/deprecator.rb +2 -0
  67. data/lib/action_dispatch/http/cache.rb +27 -26
  68. data/lib/action_dispatch/http/content_disposition.rb +2 -0
  69. data/lib/action_dispatch/http/content_security_policy.rb +61 -42
  70. data/lib/action_dispatch/http/filter_parameters.rb +18 -9
  71. data/lib/action_dispatch/http/filter_redirect.rb +22 -1
  72. data/lib/action_dispatch/http/headers.rb +22 -22
  73. data/lib/action_dispatch/http/mime_negotiation.rb +35 -41
  74. data/lib/action_dispatch/http/mime_type.rb +31 -24
  75. data/lib/action_dispatch/http/mime_types.rb +2 -0
  76. data/lib/action_dispatch/http/parameters.rb +11 -9
  77. data/lib/action_dispatch/http/permissions_policy.rb +20 -44
  78. data/lib/action_dispatch/http/rack_cache.rb +2 -0
  79. data/lib/action_dispatch/http/request.rb +96 -76
  80. data/lib/action_dispatch/http/response.rb +88 -62
  81. data/lib/action_dispatch/http/upload.rb +18 -16
  82. data/lib/action_dispatch/http/url.rb +77 -75
  83. data/lib/action_dispatch/journey/formatter.rb +21 -9
  84. data/lib/action_dispatch/journey/gtg/builder.rb +4 -3
  85. data/lib/action_dispatch/journey/gtg/simulator.rb +2 -0
  86. data/lib/action_dispatch/journey/gtg/transition_table.rb +14 -12
  87. data/lib/action_dispatch/journey/nfa/dot.rb +2 -0
  88. data/lib/action_dispatch/journey/nodes/node.rb +6 -5
  89. data/lib/action_dispatch/journey/parser.rb +4 -3
  90. data/lib/action_dispatch/journey/parser_extras.rb +2 -0
  91. data/lib/action_dispatch/journey/path/pattern.rb +4 -1
  92. data/lib/action_dispatch/journey/route.rb +9 -7
  93. data/lib/action_dispatch/journey/router/utils.rb +16 -15
  94. data/lib/action_dispatch/journey/router.rb +4 -2
  95. data/lib/action_dispatch/journey/routes.rb +4 -2
  96. data/lib/action_dispatch/journey/scanner.rb +4 -2
  97. data/lib/action_dispatch/journey/visitors.rb +2 -0
  98. data/lib/action_dispatch/journey.rb +2 -0
  99. data/lib/action_dispatch/log_subscriber.rb +2 -0
  100. data/lib/action_dispatch/middleware/actionable_exceptions.rb +2 -0
  101. data/lib/action_dispatch/middleware/assume_ssl.rb +8 -5
  102. data/lib/action_dispatch/middleware/callbacks.rb +3 -1
  103. data/lib/action_dispatch/middleware/cookies.rb +119 -104
  104. data/lib/action_dispatch/middleware/debug_exceptions.rb +16 -6
  105. data/lib/action_dispatch/middleware/debug_locks.rb +15 -13
  106. data/lib/action_dispatch/middleware/debug_view.rb +2 -0
  107. data/lib/action_dispatch/middleware/exception_wrapper.rb +9 -14
  108. data/lib/action_dispatch/middleware/executor.rb +13 -2
  109. data/lib/action_dispatch/middleware/flash.rb +63 -51
  110. data/lib/action_dispatch/middleware/host_authorization.rb +17 -15
  111. data/lib/action_dispatch/middleware/public_exceptions.rb +13 -7
  112. data/lib/action_dispatch/middleware/reloader.rb +5 -3
  113. data/lib/action_dispatch/middleware/remote_ip.rb +76 -72
  114. data/lib/action_dispatch/middleware/request_id.rb +14 -9
  115. data/lib/action_dispatch/middleware/server_timing.rb +4 -2
  116. data/lib/action_dispatch/middleware/session/abstract_store.rb +2 -0
  117. data/lib/action_dispatch/middleware/session/cache_store.rb +13 -8
  118. data/lib/action_dispatch/middleware/session/cookie_store.rb +27 -26
  119. data/lib/action_dispatch/middleware/session/mem_cache_store.rb +7 -3
  120. data/lib/action_dispatch/middleware/show_exceptions.rb +31 -21
  121. data/lib/action_dispatch/middleware/ssl.rb +43 -40
  122. data/lib/action_dispatch/middleware/stack.rb +11 -10
  123. data/lib/action_dispatch/middleware/static.rb +33 -31
  124. data/lib/action_dispatch/middleware/templates/rescues/_source.html.erb +1 -1
  125. data/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.html.erb +1 -1
  126. data/lib/action_dispatch/middleware/templates/routes/_table.html.erb +1 -1
  127. data/lib/action_dispatch/railtie.rb +2 -4
  128. data/lib/action_dispatch/request/session.rb +23 -21
  129. data/lib/action_dispatch/request/utils.rb +2 -0
  130. data/lib/action_dispatch/routing/endpoint.rb +2 -0
  131. data/lib/action_dispatch/routing/inspector.rb +6 -4
  132. data/lib/action_dispatch/routing/mapper.rb +673 -637
  133. data/lib/action_dispatch/routing/polymorphic_routes.rb +69 -62
  134. data/lib/action_dispatch/routing/redirection.rb +37 -32
  135. data/lib/action_dispatch/routing/route_set.rb +60 -46
  136. data/lib/action_dispatch/routing/routes_proxy.rb +6 -4
  137. data/lib/action_dispatch/routing/url_for.rb +130 -125
  138. data/lib/action_dispatch/routing.rb +150 -148
  139. data/lib/action_dispatch/system_test_case.rb +91 -81
  140. data/lib/action_dispatch/system_testing/browser.rb +10 -3
  141. data/lib/action_dispatch/system_testing/driver.rb +3 -1
  142. data/lib/action_dispatch/system_testing/server.rb +2 -0
  143. data/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb +32 -21
  144. data/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb +2 -0
  145. data/lib/action_dispatch/testing/assertion_response.rb +9 -7
  146. data/lib/action_dispatch/testing/assertions/response.rb +26 -23
  147. data/lib/action_dispatch/testing/assertions/routing.rb +153 -84
  148. data/lib/action_dispatch/testing/assertions.rb +2 -0
  149. data/lib/action_dispatch/testing/integration.rb +222 -222
  150. data/lib/action_dispatch/testing/request_encoder.rb +11 -9
  151. data/lib/action_dispatch/testing/test_helpers/page_dump_helper.rb +35 -0
  152. data/lib/action_dispatch/testing/test_process.rb +11 -8
  153. data/lib/action_dispatch/testing/test_request.rb +3 -1
  154. data/lib/action_dispatch/testing/test_response.rb +27 -26
  155. data/lib/action_dispatch.rb +25 -27
  156. data/lib/action_pack/gem_version.rb +4 -2
  157. data/lib/action_pack/version.rb +3 -1
  158. data/lib/action_pack.rb +17 -16
  159. metadata +50 -16
data/CHANGELOG.md CHANGED
@@ -1,583 +1,239 @@
1
- ## Rails 7.1.3 (January 16, 2024) ##
1
+ ## Rails 7.2.3 (October 28, 2025) ##
2
2
 
3
- * Fix including `Rails.application.routes.url_helpers` directly in an
4
- `ActiveSupport::Concern.`
3
+ * Submit test requests using `as: :html` with `Content-Type: x-www-form-urlencoded`
5
4
 
6
- *Jonathan Hefner*
5
+ *Sean Doyle*
7
6
 
8
- * Fix system tests when using a Chrome binary that has been downloaded by
9
- Selenium.
7
+ * Address `rack 3.2` deprecations warnings.
10
8
 
11
- *Jonathan Hefner*
9
+ ```
10
+ warning: Status code :unprocessable_entity is deprecated and will be removed in a future version of Rack.
11
+ Please use :unprocessable_content instead.
12
+ ```
12
13
 
14
+ Rails API will transparently convert one into the other for the forseable future.
13
15
 
14
- ## Rails 7.1.2 (November 10, 2023) ##
16
+ *Earlopain*, *Jean Boussier*
15
17
 
16
- * Fix a race condition that could cause a `Text file busy - chromedriver`
17
- error with parallel system tests
18
+ * Always return empty body for HEAD requests in `PublicExceptions` and
19
+ `DebugExceptions`.
18
20
 
19
- *Matt Brictson*
21
+ This is required by `Rack::Lint` (per RFC9110).
20
22
 
21
- * Fix `StrongParameters#extract_value` to include blank values
23
+ *Hartley McGuire*
22
24
 
23
- Otherwise composite parameters may not be parsed correctly when one of the
24
- component is blank.
25
+ * Fix `url_for` to handle `:path_params` gracefully when it's not a `Hash`.
25
26
 
26
- *fatkodima*, *Yasha Krasnou*, *Matthias Eiglsperger*
27
+ Prevents various security scanners from causing exceptions.
27
28
 
28
- * Add `racc` as a dependency since it will become a bundled gem in Ruby 3.4.0
29
+ *Martin Emde*
29
30
 
30
- *Hartley McGuire*
31
+ * Fix `ActionDispatch::Executor` to unwrap exceptions like other error reporting middlewares.
31
32
 
32
- * Support handling Enumerator for non-buffered responses.
33
+ *Jean Boussier*
33
34
 
34
- *Zachary Scott*
35
+ * Fix NoMethodError when a non-string CSRF token is passed through headers.
35
36
 
37
+ *Ryan Heneise*
36
38
 
37
- ## Rails 7.1.1 (October 11, 2023) ##
39
+ * Fix invalid response when rescuing `ActionController::Redirecting::UnsafeRedirectError` in a controller.
38
40
 
39
- * No changes.
41
+ *Alex Ghiculescu*
40
42
 
41
43
 
42
- ## Rails 7.1.0 (October 05, 2023) ##
44
+ ## Rails 7.2.2.2 (August 13, 2025) ##
43
45
 
44
46
  * No changes.
45
47
 
46
48
 
47
- ## Rails 7.1.0.rc2 (October 01, 2023) ##
48
-
49
- * No changes.
50
-
49
+ ## Rails 7.2.2.1 (December 10, 2024) ##
51
50
 
52
- ## Rails 7.1.0.rc1 (September 27, 2023) ##
51
+ * Add validation to content security policies to disallow spaces and semicolons.
52
+ Developers should use multiple arguments, and different directive methods instead.
53
53
 
54
- * Add support for `#deep_merge` and `#deep_merge!` to
55
- `ActionController::Parameters`.
54
+ [CVE-2024-54133]
56
55
 
57
- *Sean Doyle*
56
+ *Gannon McGibbon*
58
57
 
59
58
 
60
- ## Rails 7.1.0.beta1 (September 13, 2023) ##
59
+ ## Rails 7.2.2 (October 30, 2024) ##
61
60
 
62
- * `AbstractController::Translation.raise_on_missing_translations` removed
61
+ * Fix non-GET requests not updating cookies in `ActionController::TestCase`.
63
62
 
64
- This was a private API, and has been removed in favour of a more broadly applicable
65
- `config.i18n.raise_on_missing_translations`. See the upgrading guide for more information.
63
+ *Jon Moss*, *Hartley McGuire*
66
64
 
67
- *Alex Ghiculescu*
68
65
 
69
- * Add `ActionController::Parameters#extract_value` method to allow extracting serialized values from params
66
+ ## Rails 7.2.1.2 (October 23, 2024) ##
70
67
 
71
- ```ruby
72
- params = ActionController::Parameters.new(id: "1_123", tags: "ruby,rails")
73
- params.extract_value(:id) # => ["1", "123"]
74
- params.extract_value(:tags, delimiter: ",") # => ["ruby", "rails"]
75
- ```
68
+ * No changes.
76
69
 
77
- *Nikita Vasilevsky*
78
70
 
79
- * Parse JSON `response.parsed_body` with `ActiveSupport::HashWithIndifferentAccess`
71
+ ## Rails 7.2.1.1 (October 15, 2024) ##
80
72
 
81
- Integrate with Minitest's new `assert_pattern` by parsing the JSON contents
82
- of `response.parsed_body` with `ActiveSupport::HashWithIndifferentAccess`, so
83
- that it's pattern-matching compatible.
73
+ * Avoid regex backtracking in HTTP Token authentication
84
74
 
85
- *Sean Doyle*
75
+ [CVE-2024-47887]
86
76
 
87
- * Add support for Playwright as a driver for system tests.
77
+ *John Hawthorn*
88
78
 
89
- *Yuki Nishijima*
79
+ * Avoid regex backtracking in query parameter filtering
90
80
 
91
- * Fix `HostAuthorization` potentially displaying the value of the
92
- X_FORWARDED_HOST header when the HTTP_HOST header is being blocked.
81
+ [CVE-2024-41128]
93
82
 
94
- *Hartley McGuire*, *Daniel Schlosser*
83
+ *John Hawthorn*
95
84
 
96
- * Rename `fixture_file_upload` method to `file_fixture_upload`
97
85
 
98
- Declare an alias to preserve the backwards compatibility of `fixture_file_upload`
86
+ ## Rails 7.2.1 (August 22, 2024) ##
99
87
 
100
- *Sean Doyle*
88
+ * Fix `Request#raw_post` raising `NoMethodError` when `rack.input` is `nil`.
101
89
 
102
- * `ActionDispatch::SystemTesting::TestHelpers::ScreenshotHelper` saves the screenshot path in test metadata on failure.
90
+ *Hartley McGuire*
103
91
 
104
- *Matija Čupić*
105
92
 
106
- * `config.dom_testing_default_html_version` controls the HTML parser used by
107
- `ActionDispatch::Assertions#html_document`.
93
+ ## Rails 7.2.0 (August 09, 2024) ##
108
94
 
109
- The Rails 7.1 default configuration opts into the HTML5 parser when it is supported, to better
110
- represent what the DOM would be in a browser user agent. Previously this test helper always used
111
- Nokogiri's HTML4 parser.
95
+ * Allow bots to ignore `allow_browser`.
112
96
 
113
- *Mike Dalessio*
97
+ *Matthew Nguyen*
114
98
 
115
- * The `with_routing` helper can now be called at the class level. When called at the class level, the routes will
116
- be setup before each test, and reset after every test. For example:
99
+ * Include the HTTP Permissions-Policy on non-HTML Content-Types
100
+ [CVE-2024-28103]
117
101
 
118
- ```ruby
119
- class RoutingTest < ActionController::TestCase
120
- with_routing do |routes|
121
- routes.draw do
122
- resources :articles
123
- resources :authors
124
- end
125
- end
102
+ *Aaron Patterson*, *Zack Deveau*
126
103
 
127
- def test_articles_route
128
- assert_routing("/articles", controller: "articles", action: "index")
129
- end
104
+ * Fix `Mime::Type.parse` handling type parameters for HTTP Accept headers.
130
105
 
131
- def test_authors_route
132
- assert_routing("/authors", controller: "authors", action: "index")
133
- end
134
- end
135
- ```
106
+ *Taylor Chaparro*
136
107
 
137
- *Andrew Novoselac*
108
+ * Fix the error page that is displayed when a view template is missing to account for nested controller paths in the
109
+ suggested correct location for the missing template.
138
110
 
139
- * The `Mime::Type` now supports handling types with parameters and correctly handles quotes.
140
- When parsing the accept header, the parameters before the q-parameter are kept and if a matching mime-type exists it is used.
141
- To keep the current functionality, a fallback is created to look for the media-type without the parameters.
111
+ *Joshua Young*
142
112
 
143
- This change allows for custom MIME-types that are more complex like `application/vnd.api+json; profile="https://jsonapi.org/profiles/ethanresnick/cursor-pagination/" ext="https://jsonapi.org/ext/atomic"` for the [JSON API](https://jsonapi.org/).
113
+ * Add `save_and_open_page` helper to `IntegrationTest`.
144
114
 
145
- *Nicolas Erni*
115
+ `save_and_open_page` is a helpful helper to keep a short feedback loop when working on system tests.
116
+ A similar helper with matching signature has been added to integration tests.
146
117
 
147
- * The url_for helpers now support a new option called `path_params`.
148
- This is very useful in situations where you only want to add a required param that is part of the route's URL but for other route not append an extraneous query param.
118
+ *Joé Dupuis*
149
119
 
150
- Given the following router...
120
+ * Fix a regression in 7.1.3 passing a `to:` option without a controller when the controller is already defined by a scope.
151
121
 
152
122
  ```ruby
153
123
  Rails.application.routes.draw do
154
- scope ":account_id" do
155
- get "dashboard" => "pages#dashboard", as: :dashboard
156
- get "search/:term" => "search#search", as: :search
157
- end
158
- delete "signout" => "sessions#destroy", as: :signout
159
- end
160
- ```
161
-
162
- And given the following `ApplicationController`
163
-
164
- ```ruby
165
- class ApplicationController < ActionController::Base
166
- def default_url_options
167
- { path_params: { account_id: "foo" } }
124
+ controller :home do
125
+ get "recent", to: "recent_posts"
168
126
  end
169
127
  end
170
128
  ```
171
129
 
172
- The standard url_for helper and friends will now behave as follows:
173
-
174
- ```ruby
175
- dashboard_path # => /foo/dashboard
176
- dashboard_path(account_id: "bar") # => /bar/dashboard
177
-
178
- signout_path # => /signout
179
- signout_path(account_id: "bar") # => /signout?account_id=bar
180
- signout_path(account_id: "bar", path_params: { account_id: "baz" }) # => /signout?account_id=bar
181
- search_path("quin") # => /foo/search/quin
182
- ```
183
-
184
- *Jason Meller, Jeremy Beker*
185
-
186
- * Change `action_dispatch.show_exceptions` to one of `:all`, `:rescuable`, or
187
- `:none`. `:all` and `:none` behave the same as the previous `true` and
188
- `false` respectively. The new `:rescuable` option will only show exceptions
189
- that can be rescued (e.g. `ActiveRecord::RecordNotFound`). `:rescuable` is
190
- now the default for the test environment.
191
-
192
- *Jon Dufresne*
193
-
194
- * `config.action_dispatch.cookies_serializer` now accepts `:message_pack` and
195
- `:message_pack_allow_marshal` as serializers. These serializers require the
196
- [`msgpack` gem](https://rubygems.org/gems/msgpack) (>= 1.7.0).
197
-
198
- The Message Pack format can provide improved performance and smaller payload
199
- sizes. It also supports roundtripping some Ruby types that are not supported
200
- by JSON. For example:
201
-
202
- ```ruby
203
- cookies.encrypted[:foo] = [{ a: 1 }, { b: 2 }.with_indifferent_access, 1.to_d, Time.at(0, 123)]
204
-
205
- # BEFORE with config.action_dispatch.cookies_serializer = :json
206
- cookies.encrypted[:foo]
207
- # => [{"a"=>1}, {"b"=>2}, "1.0", "1969-12-31T18:00:00.000-06:00"]
208
- cookies.encrypted[:foo].map(&:class)
209
- # => [Hash, Hash, String, String]
210
-
211
- # AFTER with config.action_dispatch.cookies_serializer = :message_pack
212
- cookies.encrypted[:foo]
213
- # => [{:a=>1}, {"b"=>2}, 0.1e1, 1969-12-31 18:00:00.000123 -0600]
214
- cookies.encrypted[:foo].map(&:class)
215
- # => [Hash, ActiveSupport::HashWithIndifferentAccess, BigDecimal, Time]
216
- ```
217
-
218
- The `:message_pack` serializer can fall back to deserializing with
219
- `ActiveSupport::JSON` when necessary, and the `:message_pack_allow_marshal`
220
- serializer can fall back to deserializing with `Marshal` as well as
221
- `ActiveSupport::JSON`. Additionally, the `:marshal`, `:json`, and
222
- `:json_allow_marshal` (AKA `:hybrid`) serializers can now fall back to
223
- deserializing with `ActiveSupport::MessagePack` when necessary. These
224
- behaviors ensure old cookies can still be read so that migration is easier.
225
-
226
- *Jonathan Hefner*
227
-
228
- * Remove leading dot from domains on cookies set with `domain: :all`, to meet RFC6265 requirements
229
-
230
- *Gareth Adams*
231
-
232
- * Include source location in routes extended view.
233
-
234
- ```bash
235
- $ bin/rails routes --expanded
236
-
237
- ...
238
- --[ Route 14 ]----------
239
- Prefix | new_gist
240
- Verb | GET
241
- URI | /gist(.:format)
242
- Controller#Action | gists/gists#new
243
- Source Location | config/routes/gist.rb:3
244
- ```
245
-
246
- *Luan Vieira, John Hawthorn and Daniel Colson*
247
-
248
- * Add `without` as an alias of `except` on `ActiveController::Parameters`.
249
-
250
- *Hidde-Jan Jongsma*
251
-
252
- * Expand search field on `rails/info/routes` to also search **route name**, **http verb** and **controller#action**.
130
+ *Étienne Barrié*
253
131
 
254
- *Jason Kotchoff*
132
+ * Request Forgery takes relative paths into account.
255
133
 
256
- * Remove deprecated `poltergeist` and `webkit` (capybara-webkit) driver registration for system testing.
134
+ *Stefan Wienert*
257
135
 
258
- *Rafael Mendonça França*
259
-
260
- * Remove deprecated ability to assign a single value to `config.action_dispatch.trusted_proxies`.
261
-
262
- *Rafael Mendonça França*
263
-
264
- * Deprecate `config.action_dispatch.return_only_request_media_type_on_content_type`.
265
-
266
- *Rafael Mendonça França*
136
+ * Add ".test" as a default allowed host in development to ensure smooth golden-path setup with puma.dev.
267
137
 
268
- * Remove deprecated behavior on `Request#content_type`.
138
+ *DHH*
269
139
 
270
- *Rafael Mendonça França*
140
+ * Add `allow_browser` to set minimum browser versions for the application.
271
141
 
272
- * Change `ActionController::Instrumentation` to pass `filtered_path` instead of `fullpath` in the event payload to filter sensitive query params
142
+ A browser that's blocked will by default be served the file in `public/406-unsupported-browser.html` with a HTTP status code of "406 Not Acceptable".
273
143
 
274
144
  ```ruby
275
- get "/posts?password=test"
276
- request.fullpath # => "/posts?password=test"
277
- request.filtered_path # => "/posts?password=[FILTERED]"
278
- ```
279
-
280
- *Ritikesh G*
281
-
282
- * Deprecate `AbstractController::Helpers::MissingHelperError`
283
-
284
- *Hartley McGuire*
145
+ class ApplicationController < ActionController::Base
146
+ # Allow only browsers natively supporting webp images, web push, badges, import maps, CSS nesting + :has
147
+ allow_browser versions: :modern
148
+ end
285
149
 
286
- * Change `ActionDispatch::Testing::TestResponse#parsed_body` to parse HTML as
287
- a Nokogiri document
150
+ class ApplicationController < ActionController::Base
151
+ # All versions of Chrome and Opera will be allowed, but no versions of "internet explorer" (ie). Safari needs to be 16.4+ and Firefox 121+.
152
+ allow_browser versions: { safari: 16.4, firefox: 121, ie: false }
153
+ end
288
154
 
289
- ```ruby
290
- get "/posts"
291
- response.content_type # => "text/html; charset=utf-8"
292
- response.parsed_body.class # => Nokogiri::HTML5::Document
293
- response.parsed_body.to_html # => "<!DOCTYPE html>\n<html>\n..."
155
+ class MessagesController < ApplicationController
156
+ # In addition to the browsers blocked by ApplicationController, also block Opera below 104 and Chrome below 119 for the show action.
157
+ allow_browser versions: { opera: 104, chrome: 119 }, only: :show
158
+ end
294
159
  ```
295
160
 
296
- *Sean Doyle*
297
-
298
- * Deprecate `ActionDispatch::IllegalStateError`.
299
-
300
- *Samuel Williams*
301
-
302
- * Add HTTP::Request#route_uri_pattern that returns URI pattern of matched route.
303
-
304
- *Joel Hawksley*, *Kate Higa*
305
-
306
- * Add `ActionDispatch::AssumeSSL` middleware that can be turned on via `config.assume_ssl`.
307
- It makes the application believe that all requests are arriving over SSL. This is useful
308
- when proxying through a load balancer that terminates SSL, the forwarded request will appear
309
- as though its HTTP instead of HTTPS to the application. This makes redirects and cookie
310
- security target HTTP instead of HTTPS. This middleware makes the server assume that the
311
- proxy already terminated SSL, and that the request really is HTTPS.
312
-
313
161
  *DHH*
314
162
 
315
- * Only use HostAuthorization middleware if `config.hosts` is not empty
316
-
317
- *Hartley McGuire*
318
-
319
- * Allow raising an error when a callback's only/unless symbols aren't existing methods.
320
-
321
- When `before_action :callback, only: :action_name` is declared on a controller that doesn't respond to `action_name`, raise an exception at request time. This is a safety measure to ensure that typos or forgetfulness don't prevent a crucial callback from being run when it should.
322
-
323
- For new applications, raising an error for undefined actions is turned on by default. If you do not want to opt-in to this behavior set `config.action_controller.raise_on_missing_callback_actions` to `false` in your application configuration. See #43487 for more details.
324
-
325
- *Jess Bees*
326
-
327
- * Allow cookie options[:domain] to accept a proc to set the cookie domain on a more flexible per-request basis
328
-
329
- *RobL*
330
-
331
- * When a host is not specified for an `ActionController::Renderer`'s env,
332
- the host and related options will now be derived from the routes'
333
- `default_url_options` and `ActionDispatch::Http::URL.secure_protocol`.
334
-
335
- This means that for an application with a configuration like:
336
-
337
- ```ruby
338
- Rails.application.default_url_options = { host: "rubyonrails.org" }
339
- Rails.application.config.force_ssl = true
340
- ```
341
-
342
- rendering a URL like:
343
-
344
- ```ruby
345
- ApplicationController.renderer.render inline: "<%= blog_url %>"
346
- ```
347
-
348
- will now return `"https://rubyonrails.org/blog"` instead of
349
- `"http://example.org/blog"`.
350
-
351
- *Jonathan Hefner*
352
-
353
- * Add details of cookie name and size to `CookieOverflow` exception.
354
-
355
- *Andy Waite*
356
-
357
- * Don't double log the `controller`, `action`, or `namespaced_controller` when using `ActiveRecord::QueryLog`
358
-
359
- Previously if you set `config.active_record.query_log_tags` to an array that included
360
- `:controller`, `:namespaced_controller`, or `:action`, that item would get logged twice.
361
- This bug has been fixed.
362
-
363
- *Alex Ghiculescu*
364
-
365
- * Add the following permissions policy directives: `hid`, `idle-detection`, `screen-wake-lock`,
366
- `serial`, `sync-xhr`, `web-share`.
367
-
368
- *Guillaume Cabanel*
369
-
370
- * The `speaker`, `vibrate`, and `vr` permissions policy directives are now
371
- deprecated.
372
-
373
- There is no browser support for these directives, and no plan for browser
374
- support in the future. You can just remove these directives from your
375
- application.
376
-
377
- *Jonathan Hefner*
378
-
379
- * Added the `:status` option to `assert_redirected_to` to specify the precise
380
- HTTP status of the redirect. Defaults to `:redirect` for backwards
381
- compatibility.
382
-
383
- *Jon Dufresne*
384
-
385
- * Rescue `JSON::ParserError` in Cookies JSON deserializer to discards marshal dumps:
386
-
387
- Without this change, if `action_dispatch.cookies_serializer` is set to `:json` and
388
- the app tries to read a `:marshal` serialized cookie, it would error out which wouldn't
389
- clear the cookie and force app users to manually clear it in their browser.
390
-
391
- (See #45127 for original bug discussion)
392
-
393
- *Nathan Bardoux*
394
-
395
- * Add `HTTP_REFERER` when following redirects on integration tests
396
-
397
- This makes `follow_redirect!` a closer simulation of what happens in a real browser
398
-
399
- *Felipe Sateler*
400
-
401
- * Added `exclude?` method to `ActionController::Parameters`.
402
-
403
- *Ian Neubert*
404
-
405
- * Rescue `EOFError` exception from `rack` on a multipart request.
406
-
407
- *Nikita Vasilevsky*
408
-
409
- * Log redirects from routes the same way as redirects from controllers.
410
-
411
- *Dennis Paagman*
412
-
413
- * Prevent `ActionDispatch::ServerTiming` from overwriting existing values in `Server-Timing`.
414
- Previously, if another middleware down the chain set `Server-Timing` header,
415
- it would overwritten by `ActionDispatch::ServerTiming`.
416
-
417
- *Jakub Malinowski*
418
-
419
- * Allow opting out of the `SameSite` cookie attribute when setting a cookie.
420
-
421
- You can opt out of `SameSite` by passing `same_site: nil`.
422
-
423
- `cookies[:foo] = { value: "bar", same_site: nil }`
424
-
425
- Previously, this incorrectly set the `SameSite` attribute to the value of the `cookies_same_site_protection` setting.
426
-
427
- *Alex Ghiculescu*
428
-
429
- * Allow using `helper_method`s in `content_security_policy` and `permissions_policy`
430
-
431
- Previously you could access basic helpers (defined in helper modules), but not
432
- helper methods defined using `helper_method`. Now you can use either.
163
+ * Add rate limiting API.
433
164
 
434
165
  ```ruby
435
- content_security_policy do |p|
436
- p.default_src "https://example.com"
437
- p.script_src "https://example.com" if helpers.script_csp?
166
+ class SessionsController < ApplicationController
167
+ rate_limit to: 10, within: 3.minutes, only: :create
438
168
  end
439
- ```
440
-
441
- *Alex Ghiculescu*
442
-
443
- * Reimplement `ActionController::Parameters#has_value?` and `#value?` to avoid parameters and hashes comparison.
444
-
445
- Deprecated equality between parameters and hashes is going to be removed in Rails 7.2.
446
- The new implementation takes care of conversions.
447
-
448
- *Seva Stefkin*
449
169
 
450
- * Allow only String and Symbol keys in `ActionController::Parameters`.
451
- Raise `ActionController::InvalidParameterKey` when initializing Parameters
452
- with keys that aren't strings or symbols.
453
-
454
- *Seva Stefkin*
455
-
456
- * Add the ability to use custom logic for storing and retrieving CSRF tokens.
457
-
458
- By default, the token will be stored in the session. Custom classes can be
459
- defined to specify arbitrary behavior, but the ability to store them in
460
- encrypted cookies is built in.
461
-
462
- *Andrew Kowpak*
463
-
464
- * Make ActionController::Parameters#values cast nested hashes into parameters.
465
-
466
- *Gannon McGibbon*
467
-
468
- * Introduce `html:` and `screenshot:` kwargs for system test screenshot helper
469
-
470
- Use these as an alternative to the already-available environment variables.
471
-
472
- For example, this will display a screenshot in iTerm, save the HTML, and output
473
- its path.
474
-
475
- ```ruby
476
- take_screenshot(html: true, screenshot: "inline")
477
- ```
478
-
479
- *Alex Ghiculescu*
480
-
481
- * Allow `ActionController::Parameters#to_h` to receive a block.
482
-
483
- *Bob Farrell*
484
-
485
- * Allow relative redirects when `raise_on_open_redirects` is enabled
486
-
487
- *Tom Hughes*
488
-
489
- * Allow Content Security Policy DSL to generate for API responses.
490
-
491
- *Tim Wade*
492
-
493
- * Fix `authenticate_with_http_basic` to allow for missing password.
494
-
495
- Before Rails 7.0 it was possible to handle basic authentication with only a username.
496
-
497
- ```ruby
498
- authenticate_with_http_basic do |token, _|
499
- ApiClient.authenticate(token)
170
+ class SignupsController < ApplicationController
171
+ rate_limit to: 1000, within: 10.seconds,
172
+ by: -> { request.domain }, with: -> { redirect_to busy_controller_url, alert: "Too many signups!" }, only: :new
500
173
  end
501
174
  ```
502
175
 
503
- This ability is restored.
504
-
505
- *Jean Boussier*
176
+ *DHH*, *Jean Boussier*
506
177
 
507
- * Fix `content_security_policy` returning invalid directives.
178
+ * Add `image/svg+xml` to the compressible content types of `ActionDispatch::Static`.
508
179
 
509
- Directives such as `self`, `unsafe-eval` and few others were not
510
- single quoted when the directive was the result of calling a lambda
511
- returning an array.
180
+ *Georg Ledermann*
512
181
 
513
- ```ruby
514
- content_security_policy do |policy|
515
- policy.frame_ancestors lambda { [:self, "https://example.com"] }
516
- end
517
- ```
182
+ * Add instrumentation for `ActionController::Live#send_stream`.
518
183
 
519
- With this fix the policy generated from above will now be valid.
184
+ Allows subscribing to `send_stream` events. The event payload contains the filename, disposition, and type.
520
185
 
521
- *Edouard Chin*
186
+ *Hannah Ramadan*
522
187
 
523
- * Fix `skip_forgery_protection` to run without raising an error if forgery
524
- protection has not been enabled / `verify_authenticity_token` is not a
525
- defined callback.
188
+ * Add support for `with_routing` test helper in `ActionDispatch::IntegrationTest`.
526
189
 
527
- This fix prevents the Rails 7.0 Welcome Page (`/`) from raising an
528
- `ArgumentError` if `default_protect_from_forgery` is false.
190
+ *Gannon McGibbon*
529
191
 
530
- *Brad Trick*
192
+ * Remove deprecated support to set `Rails.application.config.action_dispatch.show_exceptions` to `true` and `false`.
531
193
 
532
- * Make `redirect_to` return an empty response body.
194
+ *Rafael Mendonça França*
533
195
 
534
- Application controllers that wish to add a response body after calling
535
- `redirect_to` can continue to do so.
196
+ * Remove deprecated `speaker`, `vibrate`, and `vr` permissions policy directives.
536
197
 
537
- *Jon Dufresne*
198
+ *Rafael Mendonça França*
538
199
 
539
- * Use non-capturing group for subdomain matching in `ActionDispatch::HostAuthorization`
200
+ * Remove deprecated `Rails.application.config.action_dispatch.return_only_request_media_type_on_content_type`.
540
201
 
541
- Since we do nothing with the captured subdomain group, we can use a non-capturing group instead.
202
+ *Rafael Mendonça França*
542
203
 
543
- *Sam Bostock*
204
+ * Deprecate `Rails.application.config.action_controller.allow_deprecated_parameters_hash_equality`.
544
205
 
545
- * Fix `ActionController::Live` to copy the IsolatedExecutionState in the ephemeral thread.
206
+ *Rafael Mendonça França*
546
207
 
547
- Since its inception `ActionController::Live` has been copying thread local variables
548
- to keep things such as `CurrentAttributes` set from middlewares working in the controller action.
208
+ * Remove deprecated comparison between `ActionController::Parameters` and `Hash`.
549
209
 
550
- With the introduction of `IsolatedExecutionState` in 7.0, some of that global state was lost in
551
- `ActionController::Live` controllers.
210
+ *Rafael Mendonça França*
552
211
 
553
- *Jean Boussier*
212
+ * Remove deprecated constant `AbstractController::Helpers::MissingHelperError`.
554
213
 
555
- * Fix setting `trailing_slash: true` in route definition.
214
+ *Rafael Mendonça França*
556
215
 
557
- ```ruby
558
- get '/test' => "test#index", as: :test, trailing_slash: true
216
+ * Fix a race condition that could cause a `Text file busy - chromedriver`
217
+ error with parallel system tests.
559
218
 
560
- test_path() # => "/test/"
561
- ```
219
+ *Matt Brictson*
562
220
 
563
- *Jean Boussier*
221
+ * Add `racc` as a dependency since it will become a bundled gem in Ruby 3.4.0
564
222
 
565
- * Make `Session#merge!` stringify keys.
223
+ *Hartley McGuire*
224
+ * Remove deprecated constant `ActionDispatch::IllegalStateError`.
566
225
 
567
- Previously `Session#update` would, but `merge!` wouldn't.
226
+ *Rafael Mendonça França*
568
227
 
569
- *Drew Bragg*
228
+ * Add parameter filter capability for redirect locations.
570
229
 
571
- * Add `:unsafe_hashes` mapping for `content_security_policy`
230
+ It uses the `config.filter_parameters` to match what needs to be filtered.
231
+ The result would be like this:
572
232
 
573
- ```ruby
574
- # Before
575
- policy.script_src :strict_dynamic, "'unsafe-hashes'", "'sha256-rRMdkshZyJlCmDX27XnL7g3zXaxv7ei6Sg+yt4R3svU='"
233
+ Redirected to http://secret.foo.bar?username=roque&password=[FILTERED]
576
234
 
577
- # After
578
- policy.script_src :strict_dynamic, :unsafe_hashes, "'sha256-rRMdkshZyJlCmDX27XnL7g3zXaxv7ei6Sg+yt4R3svU='"
579
- ```
235
+ Fixes #14055.
580
236
 
581
- *Igor Morozov*
237
+ *Roque Pinel*, *Trevor Turk*, *tonytonyjan*
582
238
 
583
- Please check [7-0-stable](https://github.com/rails/rails/blob/7-0-stable/actionpack/CHANGELOG.md) for previous changes.
239
+ Please check [7-1-stable](https://github.com/rails/rails/blob/7-1-stable/actionpack/CHANGELOG.md) for previous changes.