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