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