| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
The current test is asserting against an outdated version of
Request#method where HEAD requests are treated as GET requests.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Prior to this commit shallow resources would only generate paths for
non-direct children (with a nested depth greater than 1).
Take the following routes file.
resources :blogs do
resources :posts, shallow: true do
resources :comments do
resources :tags
end
end
end
This would generate shallow paths for `tags` nested under `posts`,
e.g `/posts/:id/tags/`, however it would not generate shallow paths
for `comments` nested under `posts`, e.g `/posts/:id/comments/new`.
This commit changes the behaviour of the route mapper so that it
generate paths for direct children of shallow resources, for example
if you take the previous routes file, this will now generate
shallow paths for `comments` nested under `posts`, .e.g
`posts/:id/comments/new`.
This was the behaviour in Rails `4.0.4` however this was broken in
@jcoglan's fix for another routes related issue[1].
This also fixes an issue[2] reported by @smdern.
[1] https://github.com/rails/rails/commit/d0e5963
[2] https://github.com/rails/rails/issues/15783
|
|\
| |
| | |
Remove symbolized_path_parameters.
|
| |
| |
| |
| | |
This pull request is a continuation of https://github.com/rails/rails/commit/925bd975 and https://github.com/rails/rails/commit/8d8ebe3d.
|
|\ \
| | |
| | | |
Improve token_and_options regex and test
|
| | |
| | |
| | |
| | | |
add a test case to test the regex for the helper method raw_params
|
| |/
|/|
| |
| |
| |
| |
| | |
The controller can set the response format as 'JSON' before the renderer code be
evaluated, so we must replace it when necessary.
Fixes #15081
|
|/ |
|
|\
| |
| |
| |
| |
| | |
Add always permitted parameters as a configurable option.
[Rafael Mendonça França + Gary S. Weaver]
|
| |
| |
| |
| |
| |
| | |
* General style fixes.
* Add changes to configuration guide.
* Add missing tests.
|
|\ \
| | |
| | | |
Fix state leak.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Fixes issue #15511.
|
|\ \ \
| | | |
| | | |
| | | | |
ActionController::Parameters#require now accepts FalseClass values
|
|/ / /
| | |
| | |
| | | |
Fixes #15685.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
warning: assigned but unused variable - scope_called, path and strexp
|
|\ \ \
| | | |
| | | | |
Restore test deliveries for ActionMailer.
|
| |/ / |
|
| | |
| | |
| | |
| | | |
.. even when the producer is blocked for a write.
|
| | | |
|
| | |
| | |
| | |
| | | |
This is a regression test for 29844dd.
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
We cannot cache keys because arrays are mutable. We rather want to cache
the arrays. This behaviour is tailor-made for the usage pattern strongs
params is designed for.
In a forthcoming commit I am going to add a test that covers why we need
to cache by value.
Every strong params instance has a live span of a request, the cache goes
away with the object. Since strong params have such a concrete intention,
it would be interesting to see if there are actually any real-world use
cases that are an actual leak, one that practically may matter.
I am not convinced that the theoretical leak has any practical consequences,
but if it can be shown there are, then I believe we should either get rid of
the cache (which is an optimization), or else wipe it in the mutating API.
This reverts commit e63be2769c039e4e9ada523a8497ce3206cc8a9b.
|
|\ \
| | |
| | | |
Reset callbacks after test.
|
| | |
| | |
| | |
| | | |
Otherwise the state of callback chain is leaked.
|
|\ \ \
| | | |
| | | | |
Restore Response.default_headers after test.
|
| | | | |
|
|/ / / |
|
|\ \ \
| |/ /
|/| | |
Make sure Mime::Type is not altered after tests.
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Convert StrongParameters cache to a hash. This fixes an unbounded memory leak
|
| | |
| | |
| | |
| | |
| | |
| | | |
memory leak demonstrated on @tenderlove's latest blog post:
http://tenderlovemaking.com/2014/06/02/yagni-methods-are-killing-me.html
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
We are going to deprecate only on Rails 5 to make easier plugin
maintainers support different Rails versions. Right now we are only
discouraging their usage.
This reverts commit 6c5f43bab8206747a8591435b2aa0ff7051ad3de.
Conflicts:
actionpack/CHANGELOG.md
|
|\ \ \
| | | |
| | | | |
Remove duplicated HashWithIndifferentAccess#with_indifferent_access.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
application. Use of a symbol should be replaced with `action: symbol`.
Use of a string without a "#" should be replaced with `controller: string`.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
strexp object
|
| | | | |
|
| | | | |
|