actionpack 6.1.7.3 → 7.0.0.alpha1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of actionpack might be problematic. Click here for more details.

Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +99 -567
  3. data/MIT-LICENSE +2 -1
  4. data/README.rdoc +2 -3
  5. data/lib/abstract_controller/asset_paths.rb +1 -1
  6. data/lib/abstract_controller/base.rb +7 -21
  7. data/lib/abstract_controller/caching/fragments.rb +2 -2
  8. data/lib/abstract_controller/caching.rb +1 -1
  9. data/lib/abstract_controller/callbacks.rb +9 -8
  10. data/lib/abstract_controller/collector.rb +2 -2
  11. data/lib/abstract_controller/error.rb +1 -1
  12. data/lib/abstract_controller/helpers.rb +3 -2
  13. data/lib/abstract_controller/logger.rb +1 -1
  14. data/lib/abstract_controller/railties/routes_helpers.rb +2 -0
  15. data/lib/abstract_controller/translation.rb +0 -2
  16. data/lib/abstract_controller/url_for.rb +4 -6
  17. data/lib/action_controller/api.rb +1 -1
  18. data/lib/action_controller/log_subscriber.rb +3 -1
  19. data/lib/action_controller/metal/conditional_get.rb +38 -1
  20. data/lib/action_controller/metal/content_security_policy.rb +1 -1
  21. data/lib/action_controller/metal/cookies.rb +1 -1
  22. data/lib/action_controller/metal/data_streaming.rb +5 -13
  23. data/lib/action_controller/metal/exceptions.rb +19 -30
  24. data/lib/action_controller/metal/flash.rb +6 -2
  25. data/lib/action_controller/metal/http_authentication.rb +15 -16
  26. data/lib/action_controller/metal/instrumentation.rb +55 -52
  27. data/lib/action_controller/metal/live.rb +42 -2
  28. data/lib/action_controller/metal/mime_responds.rb +3 -3
  29. data/lib/action_controller/metal/params_wrapper.rb +7 -7
  30. data/lib/action_controller/metal/permissions_policy.rb +1 -1
  31. data/lib/action_controller/metal/query_tags.rb +16 -0
  32. data/lib/action_controller/metal/redirecting.rb +50 -16
  33. data/lib/action_controller/metal/rendering.rb +9 -9
  34. data/lib/action_controller/metal/request_forgery_protection.rb +64 -20
  35. data/lib/action_controller/metal/rescue.rb +1 -1
  36. data/lib/action_controller/metal/streaming.rb +1 -3
  37. data/lib/action_controller/metal/strong_parameters.rb +25 -29
  38. data/lib/action_controller/metal/testing.rb +0 -2
  39. data/lib/action_controller/metal.rb +7 -10
  40. data/lib/action_controller/railtie.rb +42 -5
  41. data/lib/action_controller/test_case.rb +6 -2
  42. data/lib/action_controller.rb +2 -5
  43. data/lib/action_dispatch/http/cache.rb +14 -7
  44. data/lib/action_dispatch/http/content_security_policy.rb +47 -37
  45. data/lib/action_dispatch/http/filter_parameters.rb +5 -0
  46. data/lib/action_dispatch/http/mime_negotiation.rb +13 -3
  47. data/lib/action_dispatch/http/mime_type.rb +9 -11
  48. data/lib/action_dispatch/http/parameters.rb +4 -4
  49. data/lib/action_dispatch/http/permissions_policy.rb +1 -1
  50. data/lib/action_dispatch/http/request.rb +10 -19
  51. data/lib/action_dispatch/http/response.rb +3 -3
  52. data/lib/action_dispatch/http/url.rb +9 -10
  53. data/lib/action_dispatch/journey/gtg/builder.rb +11 -12
  54. data/lib/action_dispatch/journey/gtg/simulator.rb +10 -4
  55. data/lib/action_dispatch/journey/gtg/transition_table.rb +77 -21
  56. data/lib/action_dispatch/journey/nodes/node.rb +70 -5
  57. data/lib/action_dispatch/journey/path/pattern.rb +22 -13
  58. data/lib/action_dispatch/journey/route.rb +5 -12
  59. data/lib/action_dispatch/journey/router/utils.rb +2 -2
  60. data/lib/action_dispatch/journey/router.rb +1 -1
  61. data/lib/action_dispatch/journey/routes.rb +3 -3
  62. data/lib/action_dispatch/journey/visualizer/fsm.js +49 -24
  63. data/lib/action_dispatch/journey/visualizer/index.html.erb +1 -1
  64. data/lib/action_dispatch/middleware/actionable_exceptions.rb +0 -1
  65. data/lib/action_dispatch/middleware/cookies.rb +27 -31
  66. data/lib/action_dispatch/middleware/debug_exceptions.rb +6 -4
  67. data/lib/action_dispatch/middleware/debug_locks.rb +3 -3
  68. data/lib/action_dispatch/middleware/exception_wrapper.rb +4 -0
  69. data/lib/action_dispatch/middleware/executor.rb +1 -1
  70. data/lib/action_dispatch/middleware/flash.rb +9 -11
  71. data/lib/action_dispatch/middleware/host_authorization.rb +25 -73
  72. data/lib/action_dispatch/middleware/remote_ip.rb +16 -4
  73. data/lib/action_dispatch/middleware/session/abstract_store.rb +1 -1
  74. data/lib/action_dispatch/middleware/show_exceptions.rb +6 -18
  75. data/lib/action_dispatch/middleware/stack.rb +50 -9
  76. data/lib/action_dispatch/middleware/static.rb +2 -5
  77. data/lib/action_dispatch/middleware/templates/rescues/_message_and_suggestions.html.erb +1 -1
  78. data/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb +4 -11
  79. data/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb +2 -2
  80. data/lib/action_dispatch/middleware/templates/rescues/blocked_host.html.erb +2 -2
  81. data/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb +4 -4
  82. data/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb +3 -3
  83. data/lib/action_dispatch/middleware/templates/rescues/layout.erb +28 -18
  84. data/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.html.erb +3 -3
  85. data/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb +3 -3
  86. data/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb +3 -3
  87. data/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb +3 -3
  88. data/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb +3 -3
  89. data/lib/action_dispatch/middleware/templates/routes/_table.html.erb +5 -14
  90. data/lib/action_dispatch/railtie.rb +8 -2
  91. data/lib/action_dispatch/request/session.rb +43 -13
  92. data/lib/action_dispatch/routing/mapper.rb +44 -72
  93. data/lib/action_dispatch/routing/redirection.rb +0 -2
  94. data/lib/action_dispatch/routing/route_set.rb +7 -4
  95. data/lib/action_dispatch/routing/routes_proxy.rb +1 -1
  96. data/lib/action_dispatch/routing/url_for.rb +1 -2
  97. data/lib/action_dispatch/routing.rb +2 -2
  98. data/lib/action_dispatch/system_test_case.rb +6 -12
  99. data/lib/action_dispatch/system_testing/driver.rb +24 -4
  100. data/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb +10 -6
  101. data/lib/action_dispatch/testing/assertions.rb +2 -5
  102. data/lib/action_dispatch/testing/integration.rb +6 -8
  103. data/lib/action_dispatch/testing/test_process.rb +2 -2
  104. data/lib/action_dispatch.rb +1 -1
  105. data/lib/action_pack/gem_version.rb +4 -4
  106. data/lib/action_pack.rb +1 -1
  107. metadata +21 -21
data/CHANGELOG.md CHANGED
@@ -1,147 +1,69 @@
1
- ## Rails 6.1.7.3 (March 13, 2023) ##
1
+ ## Rails 7.0.0.alpha1 (September 15, 2021) ##
2
2
 
3
- * No changes.
3
+ * Use a static error message when raising `ActionDispatch::Http::Parameters::ParseError`
4
+ to avoid inadvertently logging the HTTP request body at the `fatal` level when it contains
5
+ malformed JSON.
4
6
 
7
+ Fixes #41145
5
8
 
6
- ## Rails 6.1.7.2 (January 24, 2023) ##
9
+ *Aaron Lahey*
7
10
 
8
- * Fix `domain: :all` for two letter TLD
11
+ * Add `Middleware#delete!` to delete middleware or raise if not found.
9
12
 
10
- This fixes a compatibility issue introduced in our previous security
11
- release when using `domain: :all` with a two letter but single level top
12
- level domain domain (like `.ca`, rather than `.co.uk`).
13
+ `Middleware#delete!` works just like `Middleware#delete` but will
14
+ raise an error if the middleware isn't found.
13
15
 
16
+ *Alex Ghiculescu*, *Petrik de Heus*, *Junichi Sato*
14
17
 
15
- ## Rails 6.1.7.1 (January 17, 2023) ##
18
+ * Raise error on unpermitted open redirects.
16
19
 
17
- * Avoid regex backtracking on If-None-Match header
20
+ Add `allow_other_host` options to `redirect_to`.
21
+ Opt in to this behaviour with `ActionController::Base.raise_on_open_redirects = true`.
18
22
 
19
- [CVE-2023-22795]
20
-
21
- * Use string#split instead of regex for domain parts
22
-
23
- [CVE-2023-22792]
24
-
25
-
26
- ## Rails 6.1.7 (September 09, 2022) ##
27
-
28
- * No changes.
29
-
30
-
31
- ## Rails 6.1.6.1 (July 12, 2022) ##
32
-
33
- * No changes.
34
-
35
-
36
- ## Rails 6.1.6 (May 09, 2022) ##
37
-
38
- * No changes.
39
-
40
-
41
- ## Rails 6.1.5.1 (April 26, 2022) ##
42
-
43
- * Allow Content Security Policy DSL to generate for API responses.
44
-
45
- *Tim Wade*
46
-
47
- ## Rails 6.1.5 (March 09, 2022) ##
48
-
49
- * Fix `content_security_policy` returning invalid directives.
50
-
51
- Directives such as `self`, `unsafe-eval` and few others were not
52
- single quoted when the directive was the result of calling a lambda
53
- returning an array.
54
-
55
- ```ruby
56
- content_security_policy do |policy|
57
- policy.frame_ancestors lambda { [:self, "https://example.com"] }
58
- end
59
- ```
60
-
61
- With this fix the policy generated from above will now be valid.
62
-
63
- *Edouard Chin*
64
-
65
- * Update `HostAuthorization` middleware to render debug info only
66
- when `config.consider_all_requests_local` is set to true.
67
-
68
- Also, blocked host info is always logged with level `error`.
69
-
70
- Fixes #42813.
71
-
72
- *Nikita Vyrko*
73
-
74
- * Dup arrays that get "converted".
75
-
76
- Fixes #43681.
77
-
78
- *Aaron Patterson*
79
-
80
- * Don't show deprecation warning for equal paths.
81
-
82
- *Anton Rieder*
83
-
84
- * Fix crash in `ActionController::Instrumentation` with invalid HTTP formats.
85
-
86
- Fixes #43094.
87
-
88
- *Alex Ghiculescu*
89
-
90
- * Add fallback host for SystemTestCase driven by RackTest.
91
-
92
- Fixes #42780.
93
-
94
- *Petrik de Heus*
95
-
96
- * Add more detail about what hosts are allowed.
97
-
98
- *Alex Ghiculescu*
99
-
100
-
101
- ## Rails 6.1.4.7 (March 08, 2022) ##
102
-
103
- * No changes.
104
-
105
-
106
- ## Rails 6.1.4.6 (February 11, 2022) ##
107
-
108
- * No changes.
23
+ *Gannon McGibbon*
109
24
 
25
+ * Deprecate `poltergeist` and `webkit` (capybara-webkit) driver registration for system testing (they will be removed in Rails 7.1). Add `cuprite` instead.
110
26
 
111
- ## Rails 6.1.4.5 (February 11, 2022) ##
27
+ [Poltergeist](https://github.com/teampoltergeist/poltergeist) and [capybara-webkit](https://github.com/thoughtbot/capybara-webkit) are already not maintained. These usage in Rails are removed for avoiding confusing users.
112
28
 
113
- * Under certain circumstances, the middleware isn't informed that the
114
- response body has been fully closed which result in request state not
115
- being fully reset before the next request
29
+ [Cuprite](https://github.com/rubycdp/cuprite) is a good alternative to Poltergeist. Some guide descriptions are replaced from Poltergeist to Cuprite.
116
30
 
117
- [CVE-2022-23633]
31
+ *Yusuke Iwaki*
118
32
 
33
+ * Exclude additional flash types from `ActionController::Base.action_methods`.
119
34
 
120
- ## Rails 6.1.4.4 (December 15, 2021) ##
35
+ Ensures that additional flash types defined on ActionController::Base subclasses
36
+ are not listed as actions on that controller.
121
37
 
122
- * Fix issue with host protection not allowing host with port in development.
38
+ class MyController < ApplicationController
39
+ add_flash_types :hype
40
+ end
123
41
 
42
+ MyController.action_methods.include?('hype') # => false
124
43
 
125
- ## Rails 6.1.4.3 (December 14, 2021) ##
44
+ *Gavin Morrice*
126
45
 
127
- * Fix issue with host protection not allowing localhost in development.
46
+ * OpenSSL constants are now used for Digest computations.
128
47
 
48
+ *Dirkjan Bussink*
129
49
 
130
- ## Rails 6.1.4.2 (December 14, 2021) ##
50
+ * Remove IE6-7-8 file download related hack/fix from ActionController::DataStreaming module.
131
51
 
132
- * Fix X_FORWARDED_HOST protection. [CVE-2021-44528]
52
+ Due to the age of those versions of IE this fix is no longer relevant, more importantly it creates an edge-case for unexpected Cache-Control headers.
133
53
 
134
- ## Rails 6.1.4.1 (August 19, 2021) ##
54
+ *Tadas Sasnauskas*
135
55
 
136
- * [CVE-2021-22942] Fix possible open redirect in Host Authorization middleware.
56
+ * Configuration setting to skip logging an uncaught exception backtrace when the exception is
57
+ present in `rescued_responses`.
137
58
 
138
- Specially crafted "X-Forwarded-Host" headers in combination with certain
139
- "allowed host" formats can cause the Host Authorization middleware in Action
140
- Pack to redirect users to a malicious website.
59
+ It may be too noisy to get all backtraces logged for applications that manage uncaught
60
+ exceptions via `rescued_responses` and `exceptions_app`.
61
+ `config.action_dispatch.log_rescued_responses` (defaults to `true`) can be set to `false` in
62
+ this case, so that only exceptions not found in `rescued_responses` will be logged.
141
63
 
142
- ## Rails 6.1.4 (June 24, 2021) ##
64
+ *Alexander Azarov*, *Mike Dalessio*
143
65
 
144
- * Ignore file fixtures on `db:fixtures:load`
66
+ * Ignore file fixtures on `db:fixtures:load`.
145
67
 
146
68
  *Kevin Sjöberg*
147
69
 
@@ -149,513 +71,123 @@
149
71
 
150
72
  *Dylan Thacker-Smith*
151
73
 
152
- * Correctly place optional path parameter booleans.
153
-
154
- Previously, if you specify a url parameter that is part of the path as false it would include that part
155
- of the path as parameter for example:
156
-
157
- ```
158
- get "(/optional/:optional_id)/things" => "foo#foo", as: :things
159
- things_path(optional_id: false) # => /things?optional_id=false
160
- ```
161
-
162
- After this change, true and false will be treated the same when used as optional path parameters. Meaning now:
163
-
164
- ```
165
- get '(this/:my_bool)/that' as: :that
166
-
167
- that_path(my_bool: true) # => `/this/true/that`
168
- that_path(my_bool: false) # => `/this/false/that`
169
- ```
170
-
171
- *Adam Hess*
172
-
173
- * Add support for 'private, no-store' Cache-Control headers.
174
-
175
- Previously, 'no-store' was exclusive; no other directives could be specified.
176
-
177
- *Alex Smith*
178
-
179
-
180
- ## Rails 6.1.3.2 (May 05, 2021) ##
181
-
182
- * Prevent open redirects by correctly escaping the host allow list
183
- CVE-2021-22903
184
-
185
- * Prevent catastrophic backtracking during mime parsing
186
- CVE-2021-22902
187
-
188
- * Prevent regex DoS in HTTP token authentication
189
- CVE-2021-22904
190
-
191
- * Prevent string polymorphic route arguments.
192
-
193
- `url_for` supports building polymorphic URLs via an array
194
- of arguments (usually symbols and records). If a developer passes a
195
- user input array, strings can result in unwanted route helper calls.
196
-
197
- CVE-2021-22885
198
-
199
- *Gannon McGibbon*
200
-
201
- ## Rails 6.1.3.1 (March 26, 2021) ##
202
-
203
- * No changes.
204
-
205
-
206
- ## Rails 6.1.3 (February 17, 2021) ##
207
-
208
- * Re-define routes when not set correctly via inheritance.
209
-
210
- *John Hawthorn*
211
-
212
-
213
- ## Rails 6.1.2.1 (February 10, 2021) ##
214
-
215
- * Prevent open redirect when allowed host starts with a dot
216
-
217
- [CVE-2021-22881]
218
-
219
- Thanks to @tktech (https://hackerone.com/tktech) for reporting this
220
- issue and the patch!
221
-
222
- *Aaron Patterson*
223
-
224
-
225
- ## Rails 6.1.2 (February 09, 2021) ##
226
-
227
- * Fix error in `ActionController::LogSubscriber` that would happen when throwing inside a controller action.
228
-
229
- *Janko Marohnić*
230
-
231
- * Fix `fixture_file_upload` deprecation when `file_fixture_path` is a relative path.
232
-
233
- *Eugene Kenny*
234
-
235
-
236
- ## Rails 6.1.1 (January 07, 2021) ##
237
-
238
- * Fix nil translation key lookup in controllers/
239
-
240
- *Jan Klimo*
241
-
242
- * Quietly handle unknown HTTP methods in Action Dispatch SSL middleware.
243
-
244
- *Alex Robbin*
245
-
246
- * Change the request method to a `GET` when passing failed requests down to `config.exceptions_app`.
247
-
248
- *Alex Robbin*
249
-
250
-
251
- ## Rails 6.1.0 (December 09, 2020) ##
252
-
253
- * Support for the HTTP header `Feature-Policy` has been revised to reflect
254
- its [rename](https://github.com/w3c/webappsec-permissions-policy/pull/379) to [`Permissions-Policy`](https://w3c.github.io/webappsec-permissions-policy/#permissions-policy-http-header-field).
255
-
256
- ```ruby
257
- Rails.application.config.permissions_policy do |p|
258
- p.camera :none
259
- p.gyroscope :none
260
- p.microphone :none
261
- p.usb :none
262
- p.fullscreen :self
263
- p.payment :self, "https://secure-example.com"
264
- end
265
- ```
266
-
267
- *Julien Grillot*
268
-
269
- * Allow `ActionDispatch::HostAuthorization` to exclude specific requests.
270
-
271
- Host Authorization checks can be skipped for specific requests. This allows for health check requests to be permitted for requests with missing or non-matching host headers.
272
-
273
- *Chris Bisnett*
274
-
275
- * Add `config.action_dispatch.request_id_header` to allow changing the name of
276
- the unique X-Request-Id header
277
-
278
- *Arlston Fernandes*
74
+ * New `ActionController::ConditionalGet#no_store` method to set HTTP cache control `no-store` directive.
279
75
 
280
- * Deprecate `config.action_dispatch.return_only_media_type_on_content_type`.
76
+ *Tadas Sasnauskas*
281
77
 
282
- *Rafael Mendonça França*
283
-
284
- * Change `ActionDispatch::Response#content_type` to return the full Content-Type header.
285
-
286
- *Rafael Mendonça França*
287
-
288
- * Remove deprecated `ActionDispatch::Http::ParameterFilter`.
289
-
290
- *Rafael Mendonça França*
291
-
292
- * Added support for exclusive no-store Cache-Control header.
78
+ * Drop support for the `SERVER_ADDR` header.
293
79
 
294
- If `no-store` is set on Cache-Control header it is exclusive (all other cache directives are dropped).
80
+ Following up https://github.com/rack/rack/pull/1573 and https://github.com/rails/rails/pull/42349.
295
81
 
296
- *Chris Kruger*
82
+ *Ricardo Díaz*
297
83
 
298
- * Catch invalid UTF-8 parameters for POST requests and respond with BadRequest.
299
-
300
- Additionally, perform `#set_binary_encoding` in `ActionDispatch::Http::Request#GET` and
301
- `ActionDispatch::Http::Request#POST` prior to validating encoding.
302
-
303
- *Adrianna Chang*
304
-
305
- * Allow `assert_recognizes` routing assertions to work on mounted root routes.
84
+ * Set session options when initializing a basic session.
306
85
 
307
86
  *Gannon McGibbon*
308
87
 
309
- * Change default redirection status code for non-GET/HEAD requests to 308 Permanent Redirect for `ActionDispatch::SSL`.
310
-
311
- *Alan Tan*, *Oz Ben-David*
312
-
313
- * Fix `follow_redirect!` to follow redirection with same HTTP verb when following
314
- a 308 redirection.
315
-
316
- *Alan Tan*
317
-
318
- * When multiple domains are specified for a cookie, a domain will now be
319
- chosen only if it is equal to or is a superdomain of the request host.
320
-
321
- *Jonathan Hefner*
322
-
323
- * `ActionDispatch::Static` handles precompiled Brotli (.br) files.
324
-
325
- Adds to existing support for precompiled gzip (.gz) files.
326
- Brotli files are preferred due to much better compression.
327
-
328
- When the browser requests /some.js with `Accept-Encoding: br`,
329
- we check for public/some.js.br and serve that file, if present, with
330
- `Content-Encoding: br` and `Vary: Accept-Encoding` headers.
331
-
332
- *Ryan Edward Hall*, *Jeremy Daer*
333
-
334
- * Add raise_on_missing_translations support for controllers.
335
-
336
- This configuration determines whether an error should be raised for missing translations.
337
- It can be enabled through `config.i18n.raise_on_missing_translations`. Note that described
338
- configuration also affects raising error for missing translations in views.
339
-
340
- *fatkodima*
341
-
342
- * Added `compact` and `compact!` to `ActionController::Parameters`.
343
-
344
- *Eugene Kenny*
345
-
346
- * Calling `each_pair` or `each_value` on an `ActionController::Parameters`
347
- without passing a block now returns an enumerator.
348
-
349
- *Eugene Kenny*
350
-
351
- * `fixture_file_upload` now uses path relative to `file_fixture_path`
352
-
353
- Previously the path had to be relative to `fixture_path`.
354
- You can change your existing code as follow:
355
-
356
- ```ruby
357
- # Before
358
- fixture_file_upload('files/dog.png')
359
-
360
- # After
361
- fixture_file_upload('dog.png')
362
- ```
363
-
364
- *Edouard Chin*
365
-
366
- * Remove deprecated `force_ssl` at the controller level.
367
-
368
- *Rafael Mendonça França*
369
-
370
- * The +helper+ class method for controllers loads helper modules specified as
371
- strings/symbols with `String#constantize` instead of `require_dependency`.
372
-
373
- Remember that support for strings/symbols is only a convenient API. You can
374
- always pass a module object:
375
-
376
- ```ruby
377
- helper UtilsHelper
378
- ```
379
-
380
- which is recommended because it is simple and direct. When a string/symbol
381
- is received, `helper` just manipulates and inflects the argument to obtain
382
- that same module object.
383
-
384
- *Xavier Noria*, *Jean Boussier*
385
-
386
- * Correctly identify the entire localhost IPv4 range as trusted proxy.
387
-
388
- *Nick Soracco*
389
-
390
- * `url_for` will now use "https://" as the default protocol when
391
- `Rails.application.config.force_ssl` is set to true.
392
-
393
- *Jonathan Hefner*
394
-
395
- * Accept and default to base64_urlsafe CSRF tokens.
396
-
397
- Base64 strict-encoded CSRF tokens are not inherently websafe, which makes
398
- them difficult to deal with. For example, the common practice of sending
399
- the CSRF token to a browser in a client-readable cookie does not work properly
400
- out of the box: the value has to be url-encoded and decoded to survive transport.
401
-
402
- Now, we generate Base64 urlsafe-encoded CSRF tokens, which are inherently safe
403
- to transport. Validation accepts both urlsafe tokens, and strict-encoded tokens
404
- for backwards compatibility.
405
-
406
- *Scott Blum*
407
-
408
- * Support rolling deploys for cookie serialization/encryption changes.
409
-
410
- In a distributed configuration like rolling update, users may observe
411
- both old and new instances during deployment. Users may be served by a
412
- new instance and then by an old instance.
413
-
414
- That means when the server changes `cookies_serializer` from `:marshal`
415
- to `:hybrid` or the server changes `use_authenticated_cookie_encryption`
416
- from `false` to `true`, users may lose their sessions if they access the
417
- server during deployment.
418
-
419
- We added fallbacks to downgrade the cookie format when necessary during
420
- deployment, ensuring compatibility on both old and new instances.
421
-
422
- *Masaki Hara*
423
-
424
- * `ActionDispatch::Request.remote_ip` has ip address even when all sites are trusted.
425
-
426
- Before, if all `X-Forwarded-For` sites were trusted, the `remote_ip` would default to `127.0.0.1`.
427
- Now, the furthest proxy site is used. e.g.: It now gives an ip address when using curl from the load balancer.
428
-
429
- *Keenan Brock*
88
+ * Add `cache_control: {}` option to `fresh_when` and `stale?`.
430
89
 
431
- * Fix possible information leak / session hijacking vulnerability.
90
+ Works as a shortcut to set `response.cache_control` with the above methods.
432
91
 
433
- The `ActionDispatch::Session::MemcacheStore` is still vulnerable given it requires the
434
- gem dalli to be updated as well.
92
+ *Jacopo Beschi*
435
93
 
436
- CVE-2019-16782.
94
+ * Writing into a disabled session will now raise an error.
437
95
 
438
- * Include child session assertion count in ActionDispatch::IntegrationTest.
96
+ Previously when no session store was set, writing into the session would silently fail.
439
97
 
440
- `IntegrationTest#open_session` uses `dup` to create the new session, which
441
- meant it had its own copy of `@assertions`. This prevented the assertions
442
- from being correctly counted and reported.
98
+ *Jean Boussier*
443
99
 
444
- Child sessions now have their `attr_accessor` overridden to delegate to the
445
- root session.
100
+ * Add support for 'require-trusted-types-for' and 'trusted-types' headers.
446
101
 
447
- Fixes #32142.
102
+ Fixes #42034.
448
103
 
449
- *Sam Bostock*
104
+ *lfalcao*
450
105
 
451
- * Add SameSite protection to every written cookie.
106
+ * Remove inline styles and address basic accessibility issues on rescue templates.
452
107
 
453
- Enabling `SameSite` cookie protection is an addition to CSRF protection,
454
- where cookies won't be sent by browsers in cross-site POST requests when set to `:lax`.
108
+ *Jacob Herrington*
455
109
 
456
- `:strict` disables cookies being sent in cross-site GET or POST requests.
457
-
458
- Passing `:none` disables this protection and is the same as previous versions albeit a `; SameSite=None` is appended to the cookie.
459
-
460
- See upgrade instructions in config/initializers/new_framework_defaults_6_1.rb.
110
+ * Add support for 'private, no-store' Cache-Control headers.
461
111
 
462
- More info [here](https://tools.ietf.org/html/draft-west-first-party-cookies-07)
112
+ Previously, 'no-store' was exclusive; no other directives could be specified.
463
113
 
464
- _NB: Technically already possible as Rack supports SameSite protection, this is to ensure it's applied to all cookies_
114
+ *Alex Smith*
465
115
 
466
- *Cédric Fabianski*
116
+ * Expand payload of `unpermitted_parameters.action_controller` instrumentation to allow subscribers to
117
+ know which controller action received unpermitted parameters.
467
118
 
468
- * Bring back the feature that allows loading external route files from the router.
119
+ *bbuchalter*
469
120
 
470
- This feature existed back in 2012 but got reverted with the incentive that
471
- https://github.com/rails/routing_concerns was a better approach. Turned out
472
- that this wasn't fully the case and loading external route files from the router
473
- can be helpful for applications with a really large set of routes.
474
- Without this feature, application needs to implement routes reloading
475
- themselves and it's not straightforward.
121
+ * Add `ActionController::Live#send_stream` that makes it more convenient to send generated streams:
476
122
 
477
123
  ```ruby
478
- # config/routes.rb
479
-
480
- Rails.application.routes.draw do
481
- draw(:admin)
482
- end
483
-
484
- # config/routes/admin.rb
485
-
486
- get :foo, to: 'foo#bar'
487
- ```
488
-
489
- *Yehuda Katz*, *Edouard Chin*
490
-
491
- * Fix system test driver option initialization for non-headless browsers.
492
-
493
- *glaszig*
494
-
495
- * `redirect_to.action_controller` notifications now include the `ActionDispatch::Request` in
496
- their payloads as `:request`.
497
-
498
- *Austin Story*
124
+ send_stream(filename: "subscribers.csv") do |stream|
125
+ stream.writeln "email_address,updated_at"
499
126
 
500
- * `respond_to#any` no longer returns a response's Content-Type based on the
501
- request format but based on the block given.
502
-
503
- Example:
504
-
505
- ```ruby
506
- def my_action
507
- respond_to do |format|
508
- format.any { render(json: { foo: 'bar' }) }
509
- end
127
+ @subscribers.find_each do |subscriber|
128
+ stream.writeln [ subscriber.email_address, subscriber.updated_at ].join(",")
510
129
  end
511
-
512
- get('my_action.csv')
513
- ```
514
-
515
- The previous behaviour was to respond with a `text/csv` Content-Type which
516
- is inaccurate since a JSON response is being rendered.
517
-
518
- Now it correctly returns a `application/json` Content-Type.
519
-
520
- *Edouard Chin*
521
-
522
- * Replaces (back)slashes in failure screenshot image paths with dashes.
523
-
524
- If a failed test case contained a slash or a backslash, a screenshot would be created in a
525
- nested directory, causing issues with `tmp:clear`.
526
-
527
- *Damir Zekic*
528
-
529
- * Add `params.member?` to mimic Hash behavior.
530
-
531
- *Younes Serraj*
532
-
533
- * `process_action.action_controller` notifications now include the following in their payloads:
534
-
535
- * `:request` - the `ActionDispatch::Request`
536
- * `:response` - the `ActionDispatch::Response`
537
-
538
- *George Claghorn*
539
-
540
- * Updated `ActionDispatch::Request.remote_ip` setter to clear set the instance
541
- `remote_ip` to `nil` before setting the header that the value is derived
542
- from.
543
-
544
- Fixes #37383.
545
-
546
- *Norm Provost*
547
-
548
- * `ActionController::Base.log_at` allows setting a different log level per request.
549
-
550
- ```ruby
551
- # Use the debug level if a particular cookie is set.
552
- class ApplicationController < ActionController::Base
553
- log_at :debug, if: -> { cookies[:debug] }
554
130
  end
555
131
  ```
556
132
 
557
- *George Claghorn*
558
-
559
- * Allow system test screen shots to be taken more than once in
560
- a test by prefixing the file name with an incrementing counter.
561
-
562
- Add an environment variable `RAILS_SYSTEM_TESTING_SCREENSHOT_HTML` to
563
- enable saving of HTML during a screenshot in addition to the image.
564
- This uses the same image name, with the extension replaced with `.html`
565
-
566
- *Tom Fakes*
567
-
568
- * Add `Vary: Accept` header when using `Accept` header for response.
569
-
570
- For some requests like `/users/1`, Rails uses requests' `Accept`
571
- header to determine what to return. And if we don't add `Vary`
572
- in the response header, browsers might accidentally cache different
573
- types of content, which would cause issues: e.g. javascript got displayed
574
- instead of html content. This PR fixes these issues by adding `Vary: Accept`
575
- in these types of requests. For more detailed problem description, please read:
576
-
577
- https://github.com/rails/rails/pull/36213
578
-
579
- Fixes #25842.
133
+ *DHH*
580
134
 
581
- *Stan Lo*
135
+ * Add `ActionController::Live::Buffer#writeln` to write a line to the stream with a newline included.
582
136
 
583
- * Fix IntegrationTest `follow_redirect!` to follow redirection using the same HTTP verb when following
584
- a 307 redirection.
137
+ *DHH*
585
138
 
586
- *Edouard Chin*
139
+ * `ActionDispatch::Request#content_type` now returned Content-Type header as it is.
587
140
 
588
- * System tests require Capybara 3.26 or newer.
141
+ Previously, `ActionDispatch::Request#content_type` returned value does NOT contain charset part.
142
+ This behavior changed to returned Content-Type header containing charset part as it is.
589
143
 
590
- *George Claghorn*
144
+ If you want just MIME type, please use `ActionDispatch::Request#media_type` instead.
591
145
 
592
- * Reduced log noise handling ActionController::RoutingErrors.
593
-
594
- *Alberto Fernández-Capel*
595
-
596
- * Add DSL for configuring HTTP Feature Policy.
597
-
598
- This new DSL provides a way to configure an HTTP Feature Policy at a
599
- global or per-controller level. Full details of HTTP Feature Policy
600
- specification and guidelines can be found at MDN:
601
-
602
- https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy
603
-
604
- Example global policy:
146
+ Before:
605
147
 
606
148
  ```ruby
607
- Rails.application.config.feature_policy do |f|
608
- f.camera :none
609
- f.gyroscope :none
610
- f.microphone :none
611
- f.usb :none
612
- f.fullscreen :self
613
- f.payment :self, "https://secure.example.com"
614
- end
149
+ request = ActionDispatch::Request.new("CONTENT_TYPE" => "text/csv; header=present; charset=utf-16", "REQUEST_METHOD" => "GET")
150
+ request.content_type #=> "text/csv"
615
151
  ```
616
152
 
617
- Example controller level policy:
153
+ After:
618
154
 
619
155
  ```ruby
620
- class PagesController < ApplicationController
621
- feature_policy do |p|
622
- p.geolocation "https://example.com"
623
- end
624
- end
156
+ request = ActionDispatch::Request.new("Content-Type" => "text/csv; header=present; charset=utf-16", "REQUEST_METHOD" => "GET")
157
+ request.content_type #=> "text/csv; header=present; charset=utf-16"
158
+ request.media_type #=> "text/csv"
625
159
  ```
626
160
 
627
- *Jacob Bednarz*
161
+ *Rafael Mendonça França*
628
162
 
629
- * Add the ability to set the CSP nonce only to the specified directives.
163
+ * Change `ActionDispatch::Request#media_type` to return `nil` when the request don't have a `Content-Type` header.
630
164
 
631
- Fixes #35137.
165
+ *Rafael Mendonça França*
632
166
 
633
- *Yuji Yaginuma*
167
+ * Fix error in `ActionController::LogSubscriber` that would happen when throwing inside a controller action.
634
168
 
635
- * Keep part when scope option has value.
169
+ *Janko Marohnić*
636
170
 
637
- When a route was defined within an optional scope, if that route didn't
638
- take parameters the scope was lost when using path helpers. This commit
639
- ensures scope is kept both when the route takes parameters or when it
640
- doesn't.
171
+ * Allow anything with `#to_str` (like `Addressable::URI`) as a `redirect_to` location.
641
172
 
642
- Fixes #33219.
173
+ *ojab*
643
174
 
644
- *Alberto Almagro*
175
+ * Change the request method to a `GET` when passing failed requests down to `config.exceptions_app`.
645
176
 
646
- * Added `deep_transform_keys` and `deep_transform_keys!` methods to ActionController::Parameters.
177
+ *Alex Robbin*
647
178
 
648
- *Gustavo Gutierrez*
179
+ * Deprecate the ability to assign a single value to `config.action_dispatch.trusted_proxies`
180
+ as `RemoteIp` middleware behaves inconsistently depending on whether this is configured
181
+ with a single value or an enumerable.
649
182
 
650
- * Calling `ActionController::Parameters#transform_keys`/`!` without a block now returns
651
- an enumerator for the parameters instead of the underlying hash.
183
+ Fixes #40772.
652
184
 
653
- *Eugene Kenny*
185
+ *Christian Sutter*
654
186
 
655
- * Fix strong parameters blocks all attributes even when only some keys are invalid (non-numerical).
656
- It should only block invalid key's values instead.
187
+ * Add `redirect_back_or_to(fallback_location, **)` as a more aesthetically pleasing version of `redirect_back fallback_location:, **`.
188
+ The old method name is retained without explicit deprecation.
657
189
 
658
- *Stan Lo*
190
+ *DHH*
659
191
 
660
192
 
661
- Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/actionpack/CHANGELOG.md) for previous changes.
193
+ Please check [6-1-stable](https://github.com/rails/rails/blob/6-1-stable/actionpack/CHANGELOG.md) for previous changes.