actionpack 7.0.10 → 7.1.0.beta1
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.
Potentially problematic release.
This version of actionpack might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +318 -452
- data/MIT-LICENSE +1 -1
- data/README.rdoc +2 -2
- data/lib/abstract_controller/base.rb +19 -10
- data/lib/abstract_controller/caching/fragments.rb +2 -0
- data/lib/abstract_controller/callbacks.rb +31 -6
- data/lib/abstract_controller/deprecator.rb +7 -0
- data/lib/abstract_controller/helpers.rb +61 -18
- data/lib/abstract_controller/railties/routes_helpers.rb +1 -16
- data/lib/abstract_controller/rendering.rb +3 -3
- data/lib/abstract_controller/translation.rb +1 -27
- data/lib/abstract_controller/url_for.rb +2 -0
- data/lib/abstract_controller.rb +6 -0
- data/lib/action_controller/api.rb +5 -3
- data/lib/action_controller/base.rb +3 -17
- data/lib/action_controller/caching.rb +2 -0
- data/lib/action_controller/deprecator.rb +7 -0
- data/lib/action_controller/form_builder.rb +2 -0
- data/lib/action_controller/log_subscriber.rb +16 -4
- data/lib/action_controller/metal/content_security_policy.rb +1 -1
- data/lib/action_controller/metal/data_streaming.rb +2 -0
- data/lib/action_controller/metal/default_headers.rb +2 -0
- data/lib/action_controller/metal/etag_with_flash.rb +2 -0
- data/lib/action_controller/metal/etag_with_template_digest.rb +2 -0
- data/lib/action_controller/metal/exceptions.rb +8 -0
- data/lib/action_controller/metal/head.rb +8 -6
- data/lib/action_controller/metal/helpers.rb +3 -14
- data/lib/action_controller/metal/http_authentication.rb +11 -5
- data/lib/action_controller/metal/implicit_render.rb +5 -3
- data/lib/action_controller/metal/instrumentation.rb +8 -1
- data/lib/action_controller/metal/live.rb +24 -0
- data/lib/action_controller/metal/mime_responds.rb +2 -2
- data/lib/action_controller/metal/params_wrapper.rb +4 -2
- data/lib/action_controller/metal/permissions_policy.rb +1 -1
- data/lib/action_controller/metal/redirecting.rb +7 -7
- data/lib/action_controller/metal/renderers.rb +2 -2
- data/lib/action_controller/metal/rendering.rb +0 -7
- data/lib/action_controller/metal/request_forgery_protection.rb +138 -50
- data/lib/action_controller/metal/rescue.rb +2 -0
- data/lib/action_controller/metal/streaming.rb +70 -30
- data/lib/action_controller/metal/strong_parameters.rb +89 -50
- data/lib/action_controller/metal/url_for.rb +7 -0
- data/lib/action_controller/metal.rb +79 -21
- data/lib/action_controller/railtie.rb +22 -9
- data/lib/action_controller/renderer.rb +98 -65
- data/lib/action_controller/test_case.rb +15 -5
- data/lib/action_controller.rb +8 -1
- data/lib/action_dispatch/constants.rb +32 -0
- data/lib/action_dispatch/deprecator.rb +7 -0
- data/lib/action_dispatch/http/cache.rb +1 -3
- data/lib/action_dispatch/http/content_security_policy.rb +13 -29
- data/lib/action_dispatch/http/filter_parameters.rb +15 -14
- data/lib/action_dispatch/http/headers.rb +2 -0
- data/lib/action_dispatch/http/mime_negotiation.rb +22 -22
- data/lib/action_dispatch/http/mime_type.rb +35 -12
- data/lib/action_dispatch/http/mime_types.rb +3 -1
- data/lib/action_dispatch/http/parameters.rb +1 -1
- data/lib/action_dispatch/http/permissions_policy.rb +45 -16
- data/lib/action_dispatch/http/rack_cache.rb +2 -0
- data/lib/action_dispatch/http/request.rb +48 -14
- data/lib/action_dispatch/http/response.rb +78 -59
- data/lib/action_dispatch/http/upload.rb +2 -0
- data/lib/action_dispatch/journey/formatter.rb +8 -2
- data/lib/action_dispatch/journey/path/pattern.rb +14 -14
- data/lib/action_dispatch/journey/route.rb +3 -2
- data/lib/action_dispatch/journey/router.rb +5 -4
- data/lib/action_dispatch/journey/routes.rb +2 -2
- data/lib/action_dispatch/log_subscriber.rb +23 -0
- data/lib/action_dispatch/middleware/actionable_exceptions.rb +5 -6
- data/lib/action_dispatch/middleware/assume_ssl.rb +24 -0
- data/lib/action_dispatch/middleware/callbacks.rb +2 -0
- data/lib/action_dispatch/middleware/cookies.rb +81 -98
- data/lib/action_dispatch/middleware/debug_exceptions.rb +26 -25
- data/lib/action_dispatch/middleware/debug_locks.rb +4 -1
- data/lib/action_dispatch/middleware/debug_view.rb +7 -2
- data/lib/action_dispatch/middleware/exception_wrapper.rb +181 -27
- data/lib/action_dispatch/middleware/executor.rb +1 -7
- data/lib/action_dispatch/middleware/flash.rb +7 -0
- data/lib/action_dispatch/middleware/host_authorization.rb +6 -3
- data/lib/action_dispatch/middleware/public_exceptions.rb +5 -3
- data/lib/action_dispatch/middleware/reloader.rb +7 -5
- data/lib/action_dispatch/middleware/remote_ip.rb +17 -16
- data/lib/action_dispatch/middleware/request_id.rb +2 -0
- data/lib/action_dispatch/middleware/server_timing.rb +4 -4
- data/lib/action_dispatch/middleware/session/abstract_store.rb +5 -0
- data/lib/action_dispatch/middleware/session/cache_store.rb +2 -0
- data/lib/action_dispatch/middleware/session/cookie_store.rb +11 -5
- data/lib/action_dispatch/middleware/session/mem_cache_store.rb +3 -1
- data/lib/action_dispatch/middleware/show_exceptions.rb +19 -16
- data/lib/action_dispatch/middleware/ssl.rb +18 -6
- data/lib/action_dispatch/middleware/stack.rb +7 -2
- data/lib/action_dispatch/middleware/static.rb +12 -8
- data/lib/action_dispatch/middleware/templates/rescues/_actions.html.erb +2 -2
- data/lib/action_dispatch/middleware/templates/rescues/_message_and_suggestions.html.erb +4 -4
- data/lib/action_dispatch/middleware/templates/rescues/_source.html.erb +8 -1
- data/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb +7 -7
- data/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb +2 -2
- data/lib/action_dispatch/middleware/templates/rescues/layout.erb +17 -0
- data/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.html.erb +16 -12
- data/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb +1 -1
- data/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb +3 -3
- data/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb +4 -4
- data/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb +1 -1
- data/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb +1 -1
- data/lib/action_dispatch/middleware/templates/routes/_route.html.erb +3 -0
- data/lib/action_dispatch/middleware/templates/routes/_table.html.erb +46 -37
- data/lib/action_dispatch/railtie.rb +14 -4
- data/lib/action_dispatch/request/session.rb +16 -6
- data/lib/action_dispatch/request/utils.rb +8 -3
- data/lib/action_dispatch/routing/inspector.rb +54 -6
- data/lib/action_dispatch/routing/mapper.rb +26 -14
- data/lib/action_dispatch/routing/polymorphic_routes.rb +2 -0
- data/lib/action_dispatch/routing/redirection.rb +15 -6
- data/lib/action_dispatch/routing/route_set.rb +52 -22
- data/lib/action_dispatch/routing/routes_proxy.rb +1 -1
- data/lib/action_dispatch/routing/url_for.rb +5 -1
- data/lib/action_dispatch/routing.rb +4 -4
- data/lib/action_dispatch/system_test_case.rb +3 -3
- data/lib/action_dispatch/system_testing/browser.rb +5 -6
- data/lib/action_dispatch/system_testing/driver.rb +13 -21
- data/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb +27 -16
- data/lib/action_dispatch/testing/assertions/response.rb +13 -6
- data/lib/action_dispatch/testing/assertions/routing.rb +67 -28
- data/lib/action_dispatch/testing/assertions.rb +3 -1
- data/lib/action_dispatch/testing/integration.rb +27 -17
- data/lib/action_dispatch/testing/request_encoder.rb +4 -1
- data/lib/action_dispatch/testing/test_process.rb +4 -3
- data/lib/action_dispatch/testing/test_request.rb +1 -1
- data/lib/action_dispatch/testing/test_response.rb +23 -9
- data/lib/action_dispatch.rb +37 -4
- data/lib/action_pack/gem_version.rb +4 -4
- data/lib/action_pack/version.rb +1 -1
- data/lib/action_pack.rb +1 -1
- metadata +44 -33
data/CHANGELOG.md
CHANGED
|
@@ -1,658 +1,524 @@
|
|
|
1
|
-
## Rails 7.0.
|
|
1
|
+
## Rails 7.1.0.beta1 (September 13, 2023) ##
|
|
2
2
|
|
|
3
|
-
*
|
|
3
|
+
* `AbstractController::Translation.raise_on_missing_translations` removed
|
|
4
4
|
|
|
5
|
+
This was a private API, and has been removed in favour of a more broadly applicable
|
|
6
|
+
`config.i18n.raise_on_missing_translations`. See the upgrading guide for more information.
|
|
5
7
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
* Fix `ActionDispatch::Executor` middleware to report errors handled by `ActionDispatch::ShowExceptions`.
|
|
9
|
-
|
|
10
|
-
In the default production environment, `ShowExceptions` rescue uncaught errors
|
|
11
|
-
and returns a response. Because if this the executor wouldn't report production
|
|
12
|
-
errors with the default Rails configuration.
|
|
13
|
-
|
|
14
|
-
*Jean Boussier*
|
|
15
|
-
|
|
16
|
-
* Add `racc` as a dependency since it will become a bundled gem in Ruby 3.4.0
|
|
17
|
-
|
|
18
|
-
*Hartley McGuire*
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
## Rails 7.0.8.7 (December 10, 2024) ##
|
|
22
|
-
|
|
23
|
-
* Add validation to content security policies to disallow spaces and semicolons.
|
|
24
|
-
Developers should use multiple arguments, and different directive methods instead.
|
|
25
|
-
|
|
26
|
-
[CVE-2024-54133]
|
|
27
|
-
|
|
28
|
-
*Gannon McGibbon*
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
## Rails 7.0.8.6 (October 23, 2024) ##
|
|
32
|
-
|
|
33
|
-
* No changes.
|
|
34
|
-
|
|
35
|
-
## Rails 7.0.8.5 (October 15, 2024) ##
|
|
36
|
-
|
|
37
|
-
* Avoid regex backtracking in HTTP Token authentication
|
|
38
|
-
|
|
39
|
-
[CVE-2024-47887]
|
|
40
|
-
|
|
41
|
-
* Avoid regex backtracking in query parameter filtering
|
|
42
|
-
|
|
43
|
-
[CVE-2024-41128]
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
## Rails 7.0.8.4 (June 04, 2024) ##
|
|
47
|
-
|
|
48
|
-
* Include the HTTP Permissions-Policy on non-HTML Content-Types
|
|
49
|
-
[CVE-2024-28103]
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
## Rails 7.0.8.3 (May 17, 2024) ##
|
|
53
|
-
|
|
54
|
-
* No changes.
|
|
8
|
+
*Alex Ghiculescu*
|
|
55
9
|
|
|
10
|
+
* Add `ActionController::Parameters#extract_value` method to allow extracting serialized values from params
|
|
56
11
|
|
|
57
|
-
|
|
12
|
+
```ruby
|
|
13
|
+
params = ActionController::Parameters.new(id: "1_123", tags: "ruby,rails")
|
|
14
|
+
params.extract_value(:id) # => ["1", "123"]
|
|
15
|
+
params.extract_value(:tags, delimiter: ",") # => ["ruby", "rails"]
|
|
16
|
+
```
|
|
58
17
|
|
|
59
|
-
*
|
|
18
|
+
*Nikita Vasilevsky*
|
|
60
19
|
|
|
20
|
+
* Parse JSON `response.parsed_body` with `ActiveSupport::HashWithIndifferentAccess`
|
|
61
21
|
|
|
62
|
-
|
|
22
|
+
Integrate with Minitest's new `assert_pattern` by parsing the JSON contents
|
|
23
|
+
of `response.parsed_body` with `ActiveSupport::HashWithIndifferentAccess`, so
|
|
24
|
+
that it's pattern-matching compatible.
|
|
63
25
|
|
|
64
|
-
*
|
|
26
|
+
*Sean Doyle*
|
|
65
27
|
|
|
66
|
-
|
|
28
|
+
* Add support for Playwright as a driver for system tests.
|
|
67
29
|
|
|
68
|
-
|
|
30
|
+
*Yuki Nishijima*
|
|
69
31
|
|
|
70
32
|
* Fix `HostAuthorization` potentially displaying the value of the
|
|
71
33
|
X_FORWARDED_HOST header when the HTTP_HOST header is being blocked.
|
|
72
34
|
|
|
73
35
|
*Hartley McGuire*, *Daniel Schlosser*
|
|
74
36
|
|
|
37
|
+
* Rename `fixture_file_upload` method to `file_fixture_upload`
|
|
75
38
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
* No changes.
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
## Rails 7.0.7.1 (August 22, 2023) ##
|
|
82
|
-
|
|
83
|
-
* No changes.
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
## Rails 7.0.7 (August 09, 2023) ##
|
|
87
|
-
|
|
88
|
-
* No changes.
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
## Rails 7.0.6 (June 29, 2023) ##
|
|
92
|
-
|
|
93
|
-
* No changes.
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
## Rails 7.0.5.1 (June 26, 2023) ##
|
|
97
|
-
|
|
98
|
-
* Raise an exception if illegal characters are provide to redirect_to
|
|
99
|
-
[CVE-2023-28362]
|
|
100
|
-
|
|
101
|
-
*Zack Deveau*
|
|
102
|
-
|
|
103
|
-
## Rails 7.0.5 (May 24, 2023) ##
|
|
104
|
-
|
|
105
|
-
* Do not return CSP headers for 304 Not Modified responses.
|
|
106
|
-
|
|
107
|
-
*Tobias Kraze*
|
|
108
|
-
|
|
109
|
-
* Fix `EtagWithFlash` when there is no `Flash` middleware available.
|
|
110
|
-
|
|
111
|
-
*fatkodima*
|
|
112
|
-
|
|
113
|
-
* Fix content-type header with `send_stream`.
|
|
114
|
-
|
|
115
|
-
*Elliot Crosby-McCullough*
|
|
116
|
-
|
|
117
|
-
* Address Selenium `:capabilities` deprecation warning.
|
|
118
|
-
|
|
119
|
-
*Ron Shinall*
|
|
120
|
-
|
|
121
|
-
* Fix cookie domain for domain: all on two letter single level TLD.
|
|
122
|
-
|
|
123
|
-
*John Hawthorn*
|
|
124
|
-
|
|
125
|
-
* Don't double log the `controller`, `action`, or `namespaced_controller` when using `ActiveRecord::QueryLog`
|
|
126
|
-
|
|
127
|
-
Previously if you set `config.active_record.query_log_tags` to an array that included
|
|
128
|
-
`:controller`, `:namespaced_controller`, or `:action`, that item would get logged twice.
|
|
129
|
-
This bug has been fixed.
|
|
130
|
-
|
|
131
|
-
*Alex Ghiculescu*
|
|
132
|
-
|
|
133
|
-
* Rescue `EOFError` exception from `rack` on a multipart request.
|
|
134
|
-
|
|
135
|
-
*Nikita Vasilevsky*
|
|
136
|
-
|
|
137
|
-
* Rescue `JSON::ParserError` in Cookies json deserializer to discards marshal dumps:
|
|
138
|
-
|
|
139
|
-
Without this change, if `action_dispatch.cookies_serializer` is set to `:json` and
|
|
140
|
-
the app tries to read a `:marshal` serialized cookie, it would error out which wouldn't
|
|
141
|
-
clear the cookie and force app users to manually clear it in their browser.
|
|
142
|
-
|
|
143
|
-
(See #45127 for original bug discussion)
|
|
144
|
-
|
|
145
|
-
*Nathan Bardoux*
|
|
146
|
-
|
|
147
|
-
## Rails 7.0.4.3 (March 13, 2023) ##
|
|
148
|
-
|
|
149
|
-
* No changes.
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
## Rails 7.0.4.2 (January 24, 2023) ##
|
|
153
|
-
|
|
154
|
-
* Fix `domain: :all` for two letter TLD
|
|
155
|
-
|
|
156
|
-
This fixes a compatibility issue introduced in our previous security
|
|
157
|
-
release when using `domain: :all` with a two letter but single level top
|
|
158
|
-
level domain domain (like `.ca`, rather than `.co.uk`).
|
|
159
|
-
|
|
39
|
+
Declare an alias to preserve the backwards compatibility of `fixture_file_upload`
|
|
160
40
|
|
|
161
|
-
|
|
41
|
+
*Sean Doyle*
|
|
162
42
|
|
|
163
|
-
*
|
|
43
|
+
* `ActionDispatch::SystemTesting::TestHelpers::ScreenshotHelper` saves the screenshot path in test metadata on failure.
|
|
164
44
|
|
|
165
|
-
|
|
166
|
-
to malicious sites.
|
|
45
|
+
*Matija Čupić*
|
|
167
46
|
|
|
168
|
-
|
|
47
|
+
* `config.dom_testing_default_html_version` controls the HTML parser used by
|
|
48
|
+
`ActionDispatch::Assertions#html_document`.
|
|
169
49
|
|
|
170
|
-
|
|
50
|
+
The Rails 7.1 default configuration opts into the HTML5 parser when it is supported, to better
|
|
51
|
+
represent what the DOM would be in a browser user agent. Previously this test helper always used
|
|
52
|
+
Nokogiri's HTML4 parser.
|
|
171
53
|
|
|
172
|
-
|
|
54
|
+
*Mike Dalessio*
|
|
173
55
|
|
|
174
|
-
*
|
|
56
|
+
* The `with_routing` helper can now be called at the class level. When called at the class level, the routes will
|
|
57
|
+
be setup before each test, and reset after every test. For example:
|
|
175
58
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
*Jakub Malinowski*
|
|
59
|
+
```ruby
|
|
60
|
+
class RoutingTest < ActionController::TestCase
|
|
61
|
+
with_routing do |routes|
|
|
62
|
+
routes.draw do
|
|
63
|
+
resources :articles
|
|
64
|
+
resources :authors
|
|
65
|
+
end
|
|
66
|
+
end
|
|
186
67
|
|
|
68
|
+
def test_articles_route
|
|
69
|
+
assert_routing("/articles", controller: "articles", action: "index")
|
|
70
|
+
end
|
|
187
71
|
|
|
188
|
-
|
|
72
|
+
def test_authors_route
|
|
73
|
+
assert_routing("/authors", controller: "authors", action: "index")
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
```
|
|
189
77
|
|
|
190
|
-
*
|
|
78
|
+
*Andrew Novoselac*
|
|
191
79
|
|
|
80
|
+
* The `Mime::Type` now supports handling types with parameters and correctly handles quotes.
|
|
81
|
+
When parsing the accept header, the parameters before the q-parameter are kept and if a matching mime-type exists it is used.
|
|
82
|
+
To keep the current functionality, a fallback is created to look for the media-type without the parameters.
|
|
192
83
|
|
|
193
|
-
|
|
84
|
+
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/).
|
|
194
85
|
|
|
195
|
-
*
|
|
86
|
+
*Nicolas Erni*
|
|
196
87
|
|
|
197
|
-
|
|
88
|
+
* The url_for helpers now support a new option called `path_params`.
|
|
89
|
+
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.
|
|
198
90
|
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
Before Rails 7.0 it was possible to handle basic authentication with only a username.
|
|
91
|
+
Given the following router...
|
|
202
92
|
|
|
203
93
|
```ruby
|
|
204
|
-
|
|
205
|
-
|
|
94
|
+
Rails.application.routes.draw do
|
|
95
|
+
scope ":account_id" do
|
|
96
|
+
get "dashboard" => "pages#dashboard", as: :dashboard
|
|
97
|
+
get "search/:term" => "search#search", as: :search
|
|
98
|
+
end
|
|
99
|
+
delete "signout" => "sessions#destroy", as: :signout
|
|
206
100
|
end
|
|
207
101
|
```
|
|
208
102
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
*Jean Boussier*
|
|
212
|
-
|
|
213
|
-
* Fix `content_security_policy` returning invalid directives.
|
|
214
|
-
|
|
215
|
-
Directives such as `self`, `unsafe-eval` and few others were not
|
|
216
|
-
single quoted when the directive was the result of calling a lambda
|
|
217
|
-
returning an array.
|
|
103
|
+
And given the following `ApplicationController`
|
|
218
104
|
|
|
219
105
|
```ruby
|
|
220
|
-
|
|
221
|
-
|
|
106
|
+
class ApplicationController < ActionController::Base
|
|
107
|
+
def default_url_options
|
|
108
|
+
{ path_params: { account_id: "foo" } }
|
|
109
|
+
end
|
|
222
110
|
end
|
|
223
111
|
```
|
|
224
112
|
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
*Edouard Chin*
|
|
228
|
-
|
|
229
|
-
* Fix `skip_forgery_protection` to run without raising an error if forgery
|
|
230
|
-
protection has not been enabled / `verify_authenticity_token` is not a
|
|
231
|
-
defined callback.
|
|
232
|
-
|
|
233
|
-
This fix prevents the Rails 7.0 Welcome Page (`/`) from raising an
|
|
234
|
-
`ArgumentError` if `default_protect_from_forgery` is false.
|
|
235
|
-
|
|
236
|
-
*Brad Trick*
|
|
237
|
-
|
|
238
|
-
* Fix `ActionController::Live` to copy the IsolatedExecutionState in the ephemeral thread.
|
|
239
|
-
|
|
240
|
-
Since its inception `ActionController::Live` has been copying thread local variables
|
|
241
|
-
to keep things such as `CurrentAttributes` set from middlewares working in the controller action.
|
|
242
|
-
|
|
243
|
-
With the introduction of `IsolatedExecutionState` in 7.0, some of that global state was lost in
|
|
244
|
-
`ActionController::Live` controllers.
|
|
245
|
-
|
|
246
|
-
*Jean Boussier*
|
|
247
|
-
|
|
248
|
-
* Fix setting `trailing_slash: true` in route definition.
|
|
113
|
+
The standard url_for helper and friends will now behave as follows:
|
|
249
114
|
|
|
250
115
|
```ruby
|
|
251
|
-
|
|
116
|
+
dashboard_path # => /foo/dashboard
|
|
117
|
+
dashboard_path(account_id: "bar") # => /bar/dashboard
|
|
252
118
|
|
|
253
|
-
|
|
119
|
+
signout_path # => /signout
|
|
120
|
+
signout_path(account_id: "bar") # => /signout?account_id=bar
|
|
121
|
+
signout_path(account_id: "bar", path_params: { account_id: "baz" }) # => /signout?account_id=bar
|
|
122
|
+
search_path("quin") # => /foo/search/quin
|
|
254
123
|
```
|
|
255
124
|
|
|
256
|
-
*
|
|
257
|
-
|
|
258
|
-
## Rails 7.0.2.4 (April 26, 2022) ##
|
|
259
|
-
|
|
260
|
-
* Allow Content Security Policy DSL to generate for API responses.
|
|
261
|
-
|
|
262
|
-
*Tim Wade*
|
|
263
|
-
|
|
264
|
-
## Rails 7.0.2.3 (March 08, 2022) ##
|
|
125
|
+
*Jason Meller, Jeremy Beker*
|
|
265
126
|
|
|
266
|
-
*
|
|
127
|
+
* Change `action_dispatch.show_exceptions` to one of `:all`, `:rescuable`, or
|
|
128
|
+
`:none`. `:all` and `:none` behave the same as the previous `true` and
|
|
129
|
+
`false` respectively. The new `:rescuable` option will only show exceptions
|
|
130
|
+
that can be rescued (e.g. `ActiveRecord::RecordNotFound`). `:rescuable` is
|
|
131
|
+
now the default for the test environment.
|
|
267
132
|
|
|
133
|
+
*Jon Dufresne*
|
|
268
134
|
|
|
269
|
-
|
|
135
|
+
* `config.action_dispatch.cookies_serializer` now accepts `:message_pack` and
|
|
136
|
+
`:message_pack_allow_marshal` as serializers. These serializers require the
|
|
137
|
+
[`msgpack` gem](https://rubygems.org/gems/msgpack) (>= 1.7.0).
|
|
270
138
|
|
|
271
|
-
|
|
139
|
+
The Message Pack format can provide improved performance and smaller payload
|
|
140
|
+
sizes. It also supports roundtripping some Ruby types that are not supported
|
|
141
|
+
by JSON. For example:
|
|
272
142
|
|
|
143
|
+
```ruby
|
|
144
|
+
cookies.encrypted[:foo] = [{ a: 1 }, { b: 2 }.with_indifferent_access, 1.to_d, Time.at(0, 123)]
|
|
273
145
|
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
[CVE-2022-23633]
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
## Rails 7.0.2 (February 08, 2022) ##
|
|
284
|
-
|
|
285
|
-
* No changes.
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
## Rails 7.0.1 (January 06, 2022) ##
|
|
289
|
-
|
|
290
|
-
* Fix `ActionController::Parameters` methods to keep the original logger context when creating a new copy
|
|
291
|
-
of the original object.
|
|
292
|
-
|
|
293
|
-
*Yutaka Kamei*
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
## Rails 7.0.0 (December 15, 2021) ##
|
|
297
|
-
|
|
298
|
-
* Deprecate `Rails.application.config.action_controller.urlsafe_csrf_tokens`. This config is now always enabled.
|
|
299
|
-
|
|
300
|
-
*Étienne Barrié*
|
|
301
|
-
|
|
302
|
-
* Instance variables set in requests in a `ActionController::TestCase` are now cleared before the next request
|
|
303
|
-
|
|
304
|
-
This means if you make multiple requests in the same test, instance variables set in the first request will
|
|
305
|
-
not persist into the second one. (It's not recommended to make multiple requests in the same test.)
|
|
306
|
-
|
|
307
|
-
*Alex Ghiculescu*
|
|
146
|
+
# BEFORE with config.action_dispatch.cookies_serializer = :json
|
|
147
|
+
cookies.encrypted[:foo]
|
|
148
|
+
# => [{"a"=>1}, {"b"=>2}, "1.0", "1969-12-31T18:00:00.000-06:00"]
|
|
149
|
+
cookies.encrypted[:foo].map(&:class)
|
|
150
|
+
# => [Hash, Hash, String, String]
|
|
308
151
|
|
|
152
|
+
# AFTER with config.action_dispatch.cookies_serializer = :message_pack
|
|
153
|
+
cookies.encrypted[:foo]
|
|
154
|
+
# => [{:a=>1}, {"b"=>2}, 0.1e1, 1969-12-31 18:00:00.000123 -0600]
|
|
155
|
+
cookies.encrypted[:foo].map(&:class)
|
|
156
|
+
# => [Hash, ActiveSupport::HashWithIndifferentAccess, BigDecimal, Time]
|
|
157
|
+
```
|
|
309
158
|
|
|
310
|
-
|
|
159
|
+
The `:message_pack` serializer can fall back to deserializing with
|
|
160
|
+
`ActiveSupport::JSON` when necessary, and the `:message_pack_allow_marshal`
|
|
161
|
+
serializer can fall back to deserializing with `Marshal` as well as
|
|
162
|
+
`ActiveSupport::JSON`. Additionally, the `:marshal`, `:json`, and
|
|
163
|
+
`:json_allow_marshal` (AKA `:hybrid`) serializers can now fall back to
|
|
164
|
+
deserializing with `ActiveSupport::MessagePack` when necessary. These
|
|
165
|
+
behaviors ensure old cookies can still be read so that migration is easier.
|
|
311
166
|
|
|
312
|
-
*
|
|
167
|
+
*Jonathan Hefner*
|
|
313
168
|
|
|
169
|
+
* Remove leading dot from domains on cookies set with `domain: :all`, to meet RFC6265 requirements
|
|
314
170
|
|
|
315
|
-
|
|
171
|
+
*Gareth Adams*
|
|
316
172
|
|
|
317
|
-
*
|
|
173
|
+
* Include source location in routes extended view.
|
|
318
174
|
|
|
175
|
+
```bash
|
|
176
|
+
$ bin/rails routes --expanded
|
|
319
177
|
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
178
|
+
...
|
|
179
|
+
--[ Route 14 ]----------
|
|
180
|
+
Prefix | new_gist
|
|
181
|
+
Verb | GET
|
|
182
|
+
URI | /gist(.:format)
|
|
183
|
+
Controller#Action | gists/gists#new
|
|
184
|
+
Source Location | config/routes/gist.rb:3
|
|
185
|
+
```
|
|
323
186
|
|
|
324
|
-
|
|
325
|
-
leaking from one request to another.
|
|
187
|
+
*Luan Vieira, John Hawthorn and Daniel Colson*
|
|
326
188
|
|
|
327
|
-
|
|
189
|
+
* Add `without` as an alias of `except` on `ActiveController::Parameters`.
|
|
328
190
|
|
|
329
|
-
*
|
|
191
|
+
*Hidde-Jan Jongsma*
|
|
330
192
|
|
|
331
|
-
*
|
|
193
|
+
* Expand search field on `rails/info/routes` to also search **route name**, **http verb** and **controller#action**.
|
|
332
194
|
|
|
333
|
-
*
|
|
195
|
+
*Jason Kotchoff*
|
|
334
196
|
|
|
335
|
-
* Remove deprecated `
|
|
197
|
+
* Remove deprecated `poltergeist` and `webkit` (capybara-webkit) driver registration for system testing.
|
|
336
198
|
|
|
337
199
|
*Rafael Mendonça França*
|
|
338
200
|
|
|
339
|
-
* Remove deprecated
|
|
201
|
+
* Remove deprecated ability to assign a single value to `config.action_dispatch.trusted_proxies`.
|
|
340
202
|
|
|
341
203
|
*Rafael Mendonça França*
|
|
342
204
|
|
|
343
|
-
*
|
|
205
|
+
* Deprecate `config.action_dispatch.return_only_request_media_type_on_content_type`.
|
|
344
206
|
|
|
345
207
|
*Rafael Mendonça França*
|
|
346
208
|
|
|
347
|
-
* Remove deprecated `
|
|
209
|
+
* Remove deprecated behavior on `Request#content_type`.
|
|
348
210
|
|
|
349
211
|
*Rafael Mendonça França*
|
|
350
212
|
|
|
351
|
-
*
|
|
352
|
-
|
|
353
|
-
*Rafael Mendonça França*
|
|
354
|
-
|
|
355
|
-
* Raise `ActionController::Redirecting::UnsafeRedirectError` for unsafe `redirect_to` redirects.
|
|
356
|
-
|
|
357
|
-
This allows `rescue_from` to be used to add a default fallback route:
|
|
213
|
+
* Change `ActionController::Instrumentation` to pass `filtered_path` instead of `fullpath` in the event payload to filter sensitive query params
|
|
358
214
|
|
|
359
215
|
```ruby
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
216
|
+
get "/posts?password=test"
|
|
217
|
+
request.fullpath # => "/posts?password=test"
|
|
218
|
+
request.filtered_path # => "/posts?password=[FILTERED]"
|
|
363
219
|
```
|
|
364
220
|
|
|
365
|
-
*
|
|
221
|
+
*Ritikesh G*
|
|
366
222
|
|
|
367
|
-
*
|
|
223
|
+
* Deprecate `AbstractController::Helpers::MissingHelperError`
|
|
368
224
|
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
225
|
+
*Hartley McGuire*
|
|
226
|
+
|
|
227
|
+
* Change `ActionDispatch::Testing::TestResponse#parsed_body` to parse HTML as
|
|
228
|
+
a Nokogiri document
|
|
372
229
|
|
|
373
230
|
```ruby
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
231
|
+
get "/posts"
|
|
232
|
+
response.content_type # => "text/html; charset=utf-8"
|
|
233
|
+
response.parsed_body.class # => Nokogiri::HTML5::Document
|
|
234
|
+
response.parsed_body.to_html # => "<!DOCTYPE html>\n<html>\n..."
|
|
377
235
|
```
|
|
378
236
|
|
|
379
|
-
*
|
|
380
|
-
|
|
381
|
-
* Allow Capybara driver name overrides in `SystemTestCase::driven_by`
|
|
382
|
-
|
|
383
|
-
Allow users to prevent conflicts among drivers that use the same driver
|
|
384
|
-
type (selenium, poltergeist, webkit, rack test).
|
|
237
|
+
*Sean Doyle*
|
|
385
238
|
|
|
386
|
-
|
|
239
|
+
* Deprecate `ActionDispatch::IllegalStateError`.
|
|
387
240
|
|
|
388
|
-
*
|
|
241
|
+
*Samuel Williams*
|
|
389
242
|
|
|
390
|
-
*
|
|
243
|
+
* Add HTTP::Request#route_uri_pattern that returns URI pattern of matched route.
|
|
391
244
|
|
|
392
|
-
|
|
393
|
-
a `No route matches` error.
|
|
394
|
-
After this change, routes with newlines are detected on wildcard segments. Example
|
|
245
|
+
*Joel Hawksley*, *Kate Higa*
|
|
395
246
|
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
247
|
+
* Add `ActionDispatch::AssumeSSL` middleware that can be turned on via `config.assume_ssl`.
|
|
248
|
+
It makes the application believe that all requests are arriving over SSL. This is useful
|
|
249
|
+
when proxying through a load balancer that terminates SSL, the forwarded request will appear
|
|
250
|
+
as though its HTTP instead of HTTPS to the application. This makes redirects and cookie
|
|
251
|
+
security target HTTP instead of HTTPS. This middleware makes the server assume that the
|
|
252
|
+
proxy already terminated SSL, and that the request really is HTTPS.
|
|
400
253
|
|
|
401
|
-
|
|
402
|
-
assert_equal "/wildcard/a%0Anewline", url_helpers.wildcard_path(wildcard_segment: "a\nnewline")
|
|
403
|
-
```
|
|
254
|
+
*DHH*
|
|
404
255
|
|
|
405
|
-
|
|
256
|
+
* Only use HostAuthorization middleware if `config.hosts` is not empty
|
|
406
257
|
|
|
407
|
-
*
|
|
258
|
+
*Hartley McGuire*
|
|
408
259
|
|
|
409
|
-
*
|
|
260
|
+
* Allow raising an error when a callback's only/unless symbols aren't existing methods.
|
|
410
261
|
|
|
411
|
-
|
|
262
|
+
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.
|
|
412
263
|
|
|
413
|
-
|
|
264
|
+
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_pack.raise_on_missing_callback_actions` to `false` in your application configuration. See #43487 for more details.
|
|
414
265
|
|
|
415
|
-
|
|
416
|
-
After this change you can specify different fields for each numbered parameter.
|
|
417
|
-
For example params like,
|
|
418
|
-
```ruby
|
|
419
|
-
book: {
|
|
420
|
-
authors_attributes: {
|
|
421
|
-
'0': { name: "William Shakespeare", age_of_death: "52" },
|
|
422
|
-
'1': { name: "Unattributed Assistant" },
|
|
423
|
-
'2': "Not a hash",
|
|
424
|
-
'new_record': { name: "Some name" }
|
|
425
|
-
}
|
|
426
|
-
}
|
|
427
|
-
```
|
|
266
|
+
*Jess Bees*
|
|
428
267
|
|
|
429
|
-
|
|
430
|
-
`permit book: { authors_attributes: [ :name ] }`
|
|
268
|
+
* Allow cookie options[:domain] to accept a proc to set the cookie domain on a more flexible per-request basis
|
|
431
269
|
|
|
432
|
-
|
|
433
|
-
`permit book: { authors_attributes: { '1': [ :name ], '0': [ :name, :age_of_death ] } }`
|
|
270
|
+
*RobL*
|
|
434
271
|
|
|
435
|
-
|
|
272
|
+
* When a host is not specified for an `ActionController::Renderer`'s env,
|
|
273
|
+
the host and related options will now be derived from the routes'
|
|
274
|
+
`default_url_options` and `ActionDispatch::Http::URL.secure_protocol`.
|
|
436
275
|
|
|
437
|
-
|
|
276
|
+
This means that for an application with a configuration like:
|
|
438
277
|
|
|
439
|
-
|
|
440
|
-
|
|
278
|
+
```ruby
|
|
279
|
+
Rails.application.default_url_options = { host: "rubyonrails.org" }
|
|
280
|
+
Rails.application.config.force_ssl = true
|
|
281
|
+
```
|
|
441
282
|
|
|
442
|
-
|
|
283
|
+
rendering a URL like:
|
|
443
284
|
|
|
444
|
-
|
|
285
|
+
```ruby
|
|
286
|
+
ApplicationController.renderer.render inline: "<%= blog_url %>"
|
|
287
|
+
```
|
|
445
288
|
|
|
446
|
-
|
|
289
|
+
will now return `"https://rubyonrails.org/blog"` instead of
|
|
290
|
+
`"http://example.org/blog"`.
|
|
447
291
|
|
|
448
|
-
*
|
|
292
|
+
*Jonathan Hefner*
|
|
449
293
|
|
|
450
|
-
|
|
451
|
-
about the request it is responding to.
|
|
294
|
+
* Add details of cookie name and size to `CookieOverflow` exception.
|
|
452
295
|
|
|
453
|
-
|
|
454
|
-
`config.server_timing` setting and set the relevant duration metrics in the `Server-Timing` header
|
|
296
|
+
*Andy Waite*
|
|
455
297
|
|
|
456
|
-
|
|
298
|
+
* Don't double log the `controller`, `action`, or `namespaced_controller` when using `ActiveRecord::QueryLog`
|
|
457
299
|
|
|
458
|
-
|
|
300
|
+
Previously if you set `config.active_record.query_log_tags` to an array that included
|
|
301
|
+
`:controller`, `:namespaced_controller`, or `:action`, that item would get logged twice.
|
|
302
|
+
This bug has been fixed.
|
|
459
303
|
|
|
304
|
+
*Alex Ghiculescu*
|
|
460
305
|
|
|
461
|
-
|
|
306
|
+
* Add the following permissions policy directives: `hid`, `idle-detection`, `screen-wake-lock`,
|
|
307
|
+
`serial`, `sync-xhr`, `web-share`.
|
|
462
308
|
|
|
463
|
-
*
|
|
309
|
+
*Guillaume Cabanel*
|
|
464
310
|
|
|
311
|
+
* The `speaker`, `vibrate`, and `vr` permissions policy directives are now
|
|
312
|
+
deprecated.
|
|
465
313
|
|
|
466
|
-
|
|
314
|
+
There is no browser support for these directives, and no plan for browser
|
|
315
|
+
support in the future. You can just remove these directives from your
|
|
316
|
+
application.
|
|
467
317
|
|
|
468
|
-
*
|
|
469
|
-
to avoid inadvertently logging the HTTP request body at the `fatal` level when it contains
|
|
470
|
-
malformed JSON.
|
|
318
|
+
*Jonathan Hefner*
|
|
471
319
|
|
|
472
|
-
|
|
320
|
+
* Added the `:status` option to `assert_redirected_to` to specify the precise
|
|
321
|
+
HTTP status of the redirect. Defaults to `:redirect` for backwards
|
|
322
|
+
compatibility.
|
|
473
323
|
|
|
474
|
-
*
|
|
324
|
+
*Jon Dufresne*
|
|
475
325
|
|
|
476
|
-
*
|
|
326
|
+
* Rescue `JSON::ParserError` in Cookies JSON deserializer to discards marshal dumps:
|
|
477
327
|
|
|
478
|
-
|
|
479
|
-
|
|
328
|
+
Without this change, if `action_dispatch.cookies_serializer` is set to `:json` and
|
|
329
|
+
the app tries to read a `:marshal` serialized cookie, it would error out which wouldn't
|
|
330
|
+
clear the cookie and force app users to manually clear it in their browser.
|
|
480
331
|
|
|
481
|
-
|
|
332
|
+
(See #45127 for original bug discussion)
|
|
482
333
|
|
|
483
|
-
*
|
|
334
|
+
*Nathan Bardoux*
|
|
484
335
|
|
|
485
|
-
|
|
486
|
-
Opt in to this behaviour with `ActionController::Base.raise_on_open_redirects = true`.
|
|
336
|
+
* Add `HTTP_REFERER` when following redirects on integration tests
|
|
487
337
|
|
|
488
|
-
|
|
338
|
+
This makes `follow_redirect!` a closer simulation of what happens in a real browser
|
|
489
339
|
|
|
490
|
-
*
|
|
340
|
+
*Felipe Sateler*
|
|
491
341
|
|
|
492
|
-
|
|
342
|
+
* Added `exclude?` method to `ActionController::Parameters`.
|
|
493
343
|
|
|
494
|
-
|
|
344
|
+
*Ian Neubert*
|
|
495
345
|
|
|
496
|
-
|
|
346
|
+
* Rescue `EOFError` exception from `rack` on a multipart request.
|
|
497
347
|
|
|
498
|
-
*
|
|
348
|
+
*Nikita Vasilevsky*
|
|
499
349
|
|
|
500
|
-
|
|
501
|
-
are not listed as actions on that controller.
|
|
350
|
+
* Log redirects from routes the same way as redirects from controllers.
|
|
502
351
|
|
|
503
|
-
|
|
504
|
-
add_flash_types :hype
|
|
505
|
-
end
|
|
352
|
+
*Dennis Paagman*
|
|
506
353
|
|
|
507
|
-
|
|
354
|
+
* Prevent `ActionDispatch::ServerTiming` from overwriting existing values in `Server-Timing`.
|
|
355
|
+
Previously, if another middleware down the chain set `Server-Timing` header,
|
|
356
|
+
it would overwritten by `ActionDispatch::ServerTiming`.
|
|
508
357
|
|
|
509
|
-
*
|
|
358
|
+
*Jakub Malinowski*
|
|
510
359
|
|
|
511
|
-
*
|
|
360
|
+
* Allow opting out of the `SameSite` cookie attribute when setting a cookie.
|
|
512
361
|
|
|
513
|
-
|
|
362
|
+
You can opt out of `SameSite` by passing `same_site: nil`.
|
|
514
363
|
|
|
515
|
-
|
|
364
|
+
`cookies[:foo] = { value: "bar", same_site: nil }`
|
|
516
365
|
|
|
517
|
-
|
|
366
|
+
Previously, this incorrectly set the `SameSite` attribute to the value of the `cookies_same_site_protection` setting.
|
|
518
367
|
|
|
519
|
-
*
|
|
368
|
+
*Alex Ghiculescu*
|
|
520
369
|
|
|
521
|
-
*
|
|
522
|
-
present in `rescued_responses`.
|
|
370
|
+
* Allow using `helper_method`s in `content_security_policy` and `permissions_policy`
|
|
523
371
|
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
`config.action_dispatch.log_rescued_responses` (defaults to `true`) can be set to `false` in
|
|
527
|
-
this case, so that only exceptions not found in `rescued_responses` will be logged.
|
|
372
|
+
Previously you could access basic helpers (defined in helper modules), but not
|
|
373
|
+
helper methods defined using `helper_method`. Now you can use either.
|
|
528
374
|
|
|
529
|
-
|
|
375
|
+
```ruby
|
|
376
|
+
content_security_policy do |p|
|
|
377
|
+
p.default_src "https://example.com"
|
|
378
|
+
p.script_src "https://example.com" if helpers.script_csp?
|
|
379
|
+
end
|
|
380
|
+
```
|
|
530
381
|
|
|
531
|
-
*
|
|
382
|
+
*Alex Ghiculescu*
|
|
532
383
|
|
|
533
|
-
|
|
384
|
+
* Reimplement `ActionController::Parameters#has_value?` and `#value?` to avoid parameters and hashes comparison.
|
|
534
385
|
|
|
535
|
-
|
|
386
|
+
Deprecated equality between parameters and hashes is going to be removed in Rails 7.2.
|
|
387
|
+
The new implementation takes care of conversions.
|
|
536
388
|
|
|
537
|
-
*
|
|
389
|
+
*Seva Stefkin*
|
|
538
390
|
|
|
539
|
-
*
|
|
391
|
+
* Allow only String and Symbol keys in `ActionController::Parameters`.
|
|
392
|
+
Raise `ActionController::InvalidParameterKey` when initializing Parameters
|
|
393
|
+
with keys that aren't strings or symbols.
|
|
540
394
|
|
|
541
|
-
*
|
|
395
|
+
*Seva Stefkin*
|
|
542
396
|
|
|
543
|
-
*
|
|
397
|
+
* Add the ability to use custom logic for storing and retrieving CSRF tokens.
|
|
544
398
|
|
|
545
|
-
|
|
399
|
+
By default, the token will be stored in the session. Custom classes can be
|
|
400
|
+
defined to specify arbitrary behavior, but the ability to store them in
|
|
401
|
+
encrypted cookies is built in.
|
|
546
402
|
|
|
547
|
-
*
|
|
403
|
+
*Andrew Kowpak*
|
|
548
404
|
|
|
549
|
-
*
|
|
405
|
+
* Make ActionController::Parameters#values cast nested hashes into parameters.
|
|
550
406
|
|
|
551
407
|
*Gannon McGibbon*
|
|
552
408
|
|
|
553
|
-
*
|
|
409
|
+
* Introduce `html:` and `screenshot:` kwargs for system test screenshot helper
|
|
410
|
+
|
|
411
|
+
Use these as an alternative to the already-available environment variables.
|
|
554
412
|
|
|
555
|
-
|
|
413
|
+
For example, this will display a screenshot in iTerm, save the HTML, and output
|
|
414
|
+
its path.
|
|
556
415
|
|
|
557
|
-
|
|
416
|
+
```ruby
|
|
417
|
+
take_screenshot(html: true, screenshot: "inline")
|
|
418
|
+
```
|
|
558
419
|
|
|
559
|
-
*
|
|
420
|
+
*Alex Ghiculescu*
|
|
560
421
|
|
|
561
|
-
|
|
422
|
+
* Allow `ActionController::Parameters#to_h` to receive a block.
|
|
562
423
|
|
|
563
|
-
*
|
|
424
|
+
*Bob Farrell*
|
|
564
425
|
|
|
565
|
-
*
|
|
426
|
+
* Allow relative redirects when `raise_on_open_redirects` is enabled
|
|
566
427
|
|
|
567
|
-
|
|
428
|
+
*Tom Hughes*
|
|
568
429
|
|
|
569
|
-
|
|
430
|
+
* Allow Content Security Policy DSL to generate for API responses.
|
|
570
431
|
|
|
571
|
-
*
|
|
432
|
+
*Tim Wade*
|
|
572
433
|
|
|
573
|
-
|
|
434
|
+
* Fix `authenticate_with_http_basic` to allow for missing password.
|
|
574
435
|
|
|
575
|
-
|
|
436
|
+
Before Rails 7.0 it was possible to handle basic authentication with only a username.
|
|
576
437
|
|
|
577
|
-
|
|
438
|
+
```ruby
|
|
439
|
+
authenticate_with_http_basic do |token, _|
|
|
440
|
+
ApiClient.authenticate(token)
|
|
441
|
+
end
|
|
442
|
+
```
|
|
578
443
|
|
|
579
|
-
|
|
444
|
+
This ability is restored.
|
|
580
445
|
|
|
581
|
-
*
|
|
582
|
-
know which controller action received unpermitted parameters.
|
|
446
|
+
*Jean Boussier*
|
|
583
447
|
|
|
584
|
-
|
|
448
|
+
* Fix `content_security_policy` returning invalid directives.
|
|
585
449
|
|
|
586
|
-
|
|
450
|
+
Directives such as `self`, `unsafe-eval` and few others were not
|
|
451
|
+
single quoted when the directive was the result of calling a lambda
|
|
452
|
+
returning an array.
|
|
587
453
|
|
|
588
454
|
```ruby
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
@subscribers.find_each do |subscriber|
|
|
593
|
-
stream.writeln [ subscriber.email_address, subscriber.updated_at ].join(",")
|
|
594
|
-
end
|
|
455
|
+
content_security_policy do |policy|
|
|
456
|
+
policy.frame_ancestors lambda { [:self, "https://example.com"] }
|
|
595
457
|
end
|
|
596
458
|
```
|
|
597
459
|
|
|
598
|
-
|
|
460
|
+
With this fix the policy generated from above will now be valid.
|
|
599
461
|
|
|
600
|
-
*
|
|
462
|
+
*Edouard Chin*
|
|
601
463
|
|
|
602
|
-
|
|
464
|
+
* Fix `skip_forgery_protection` to run without raising an error if forgery
|
|
465
|
+
protection has not been enabled / `verify_authenticity_token` is not a
|
|
466
|
+
defined callback.
|
|
603
467
|
|
|
604
|
-
|
|
468
|
+
This fix prevents the Rails 7.0 Welcome Page (`/`) from raising an
|
|
469
|
+
`ArgumentError` if `default_protect_from_forgery` is false.
|
|
605
470
|
|
|
606
|
-
|
|
607
|
-
This behavior changed to returned Content-Type header containing charset part as it is.
|
|
471
|
+
*Brad Trick*
|
|
608
472
|
|
|
609
|
-
|
|
473
|
+
* Make `redirect_to` return an empty response body.
|
|
610
474
|
|
|
611
|
-
|
|
475
|
+
Application controllers that wish to add a response body after calling
|
|
476
|
+
`redirect_to` can continue to do so.
|
|
612
477
|
|
|
613
|
-
|
|
614
|
-
request = ActionDispatch::Request.new("CONTENT_TYPE" => "text/csv; header=present; charset=utf-16", "REQUEST_METHOD" => "GET")
|
|
615
|
-
request.content_type #=> "text/csv"
|
|
616
|
-
```
|
|
478
|
+
*Jon Dufresne*
|
|
617
479
|
|
|
618
|
-
|
|
480
|
+
* Use non-capturing group for subdomain matching in `ActionDispatch::HostAuthorization`
|
|
619
481
|
|
|
620
|
-
|
|
621
|
-
request = ActionDispatch::Request.new("Content-Type" => "text/csv; header=present; charset=utf-16", "REQUEST_METHOD" => "GET")
|
|
622
|
-
request.content_type #=> "text/csv; header=present; charset=utf-16"
|
|
623
|
-
request.media_type #=> "text/csv"
|
|
624
|
-
```
|
|
482
|
+
Since we do nothing with the captured subdomain group, we can use a non-capturing group instead.
|
|
625
483
|
|
|
626
|
-
*
|
|
484
|
+
*Sam Bostock*
|
|
627
485
|
|
|
628
|
-
*
|
|
486
|
+
* Fix `ActionController::Live` to copy the IsolatedExecutionState in the ephemeral thread.
|
|
629
487
|
|
|
630
|
-
|
|
488
|
+
Since its inception `ActionController::Live` has been copying thread local variables
|
|
489
|
+
to keep things such as `CurrentAttributes` set from middlewares working in the controller action.
|
|
490
|
+
|
|
491
|
+
With the introduction of `IsolatedExecutionState` in 7.0, some of that global state was lost in
|
|
492
|
+
`ActionController::Live` controllers.
|
|
631
493
|
|
|
632
|
-
*
|
|
494
|
+
*Jean Boussier*
|
|
633
495
|
|
|
634
|
-
|
|
496
|
+
* Fix setting `trailing_slash: true` in route definition.
|
|
635
497
|
|
|
636
|
-
|
|
498
|
+
```ruby
|
|
499
|
+
get '/test' => "test#index", as: :test, trailing_slash: true
|
|
637
500
|
|
|
638
|
-
|
|
501
|
+
test_path() # => "/test/"
|
|
502
|
+
```
|
|
639
503
|
|
|
640
|
-
*
|
|
504
|
+
*Jean Boussier*
|
|
641
505
|
|
|
642
|
-
|
|
506
|
+
* Make `Session#merge!` stringify keys.
|
|
643
507
|
|
|
644
|
-
|
|
645
|
-
as `RemoteIp` middleware behaves inconsistently depending on whether this is configured
|
|
646
|
-
with a single value or an enumerable.
|
|
508
|
+
Previously `Session#update` would, but `merge!` wouldn't.
|
|
647
509
|
|
|
648
|
-
|
|
510
|
+
*Drew Bragg*
|
|
649
511
|
|
|
650
|
-
|
|
512
|
+
* Add `:unsafe_hashes` mapping for `content_security_policy`
|
|
651
513
|
|
|
652
|
-
|
|
653
|
-
|
|
514
|
+
```ruby
|
|
515
|
+
# Before
|
|
516
|
+
policy.script_src :strict_dynamic, "'unsafe-hashes'", "'sha256-rRMdkshZyJlCmDX27XnL7g3zXaxv7ei6Sg+yt4R3svU='"
|
|
654
517
|
|
|
655
|
-
|
|
518
|
+
# After
|
|
519
|
+
policy.script_src :strict_dynamic, :unsafe_hashes, "'sha256-rRMdkshZyJlCmDX27XnL7g3zXaxv7ei6Sg+yt4R3svU='"
|
|
520
|
+
```
|
|
656
521
|
|
|
522
|
+
*Igor Morozov*
|
|
657
523
|
|
|
658
|
-
Please check [
|
|
524
|
+
Please check [7-0-stable](https://github.com/rails/rails/blob/7-0-stable/actionpack/CHANGELOG.md) for previous changes.
|