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