actionpack 7.0.8 → 7.1.0

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.

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