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