mirror of https://github.com/rails/rails
CHANGELOG for https://github.com/rails/rails/pull/25257 [ci skip]
- Also minor weekly CHANGELOG cleanup.
This commit is contained in:
parent
c1e38d68a2
commit
91251fdcbd
|
@ -1,4 +1,4 @@
|
|||
* Check `request.path_parameters` encoding at the point they're set
|
||||
* Check `request.path_parameters` encoding at the point they're set.
|
||||
|
||||
Check for any non-UTF8 characters in path parameters at the point they're
|
||||
set in `env`. Previously they were checked for when used to get a controller
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
* Add newline between each migration in `structure.sql`
|
||||
* Add newline between each migration in `structure.sql`.
|
||||
|
||||
Keeps schema migration inserts as a single commit, but allows for easier
|
||||
git diff-ing. Fixes #25504.
|
||||
git diffing.
|
||||
|
||||
Fixes #25504.
|
||||
|
||||
*Grey Baker*, *Norberto Lopes*
|
||||
|
||||
|
|
|
@ -8,6 +8,17 @@
|
|||
|
||||
*John Meehan*
|
||||
|
||||
* Display name of the class defining the initializer also in the output
|
||||
of `rails initializers`.
|
||||
|
||||
Before:
|
||||
disable_dependency_loading
|
||||
|
||||
After:
|
||||
DemoApp::Application.disable_dependency_loading
|
||||
|
||||
*ta1kt0me*
|
||||
|
||||
* Do not run `bundle install` when generating a new plugin.
|
||||
|
||||
Since bundler 1.12.0, the gemspec is validated so the `bundle install`
|
||||
|
|
Loading…
Reference in New Issue