1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #24495 from vipulnsward/rails-changelog-pass

Railties CHANGELOG Pass [ci skip]
This commit is contained in:
Santiago Pastorino 2016-04-11 21:00:05 -03:00
commit db9bc80973

View file

@ -38,7 +38,7 @@
system monitor and the async plugin for spring. system monitor and the async plugin for spring.
* The Gemfiles of new applications include spring-watcher-listen on Linux and * The Gemfiles of new applications include spring-watcher-listen on Linux and
Mac OS X (unless --skip-spring). Mac OS X (unless `--skip-spring`).
*Xavier Noria* *Xavier Noria*
@ -113,7 +113,7 @@
*Chuck Callebs* *Chuck Callebs*
* Allow use of minitest-rails gem with Rails test runner. * Allow use of `minitest-rails` gem with Rails test runner.
Fixes #22455. Fixes #22455.
@ -126,13 +126,13 @@
*Yuji Yaginuma* *Yuji Yaginuma*
* Make `static_index` part of the `config.public_file_server` config and * Make `static_index` part of the `config.public_file_server` config and
call it `public_file_server.index_name`. call it `config.public_file_server.index_name`.
*Yuki Nishijima* *Yuki Nishijima*
* Deprecate `serve_static_files` in favor of `public_file_server.enabled`. * Deprecate `config.serve_static_files` in favor of `config.public_file_server.enabled`.
Unifies the static asset options under `public_file_server`. Unifies the static asset options under `config.public_file_server`.
To upgrade, replace occurrences of: To upgrade, replace occurrences of:
@ -170,8 +170,8 @@
*Yuki Nishijima* *Yuki Nishijima*
* Route generator should be idempotent * Route generators are now idempotent.
running generators several times no longer require you to cleanup routes.rb Running generators several times no longer require you to cleanup routes.rb.
*Thiago Pinto* *Thiago Pinto*
@ -179,7 +179,7 @@
*Simon Eskildsen* *Simon Eskildsen*
* Allow rake:stats to account for rake tasks in lib/tasks * Allow `rake stats` to account for rake tasks in lib/tasks.
*Kevin Deisz* *Kevin Deisz*
@ -189,7 +189,7 @@
*James Kerr* *James Kerr*
* Add fail fast to `bin/rails test` * Add fail fast to `bin/rails test`.
Adding `--fail-fast` or `-f` when running tests will interrupt the run on Adding `--fail-fast` or `-f` when running tests will interrupt the run on
the first failure: the first failure:
@ -221,7 +221,7 @@
*Kasper Timm Hansen* *Kasper Timm Hansen*
* Add inline output to `bin/rails test` * Add inline output to `bin/rails test`.
Any failures or errors (and skips if running in verbose mode) are output Any failures or errors (and skips if running in verbose mode) are output
during a test run: during a test run:
@ -252,7 +252,7 @@
*Kasper Timm Hansen* *Kasper Timm Hansen*
* Fix displaying mailer previews on non local requests when config * Fix displaying mailer previews on non local requests when config
`action_mailer.show_previews` is set `config.action_mailer.show_previews` is set.
*Wojciech Wnętrzak* *Wojciech Wnętrzak*
@ -283,14 +283,14 @@
*Ersin Akinci* *Ersin Akinci*
* Make enabling or disabling caching in development mode possible with * Make enabling or disabling caching in development mode possible with
rake dev:cache. `rake dev:cache`.
Running rake dev:cache will create or remove tmp/caching-dev.txt. When this Running `rake dev:cache` will create or remove tmp/caching-dev.txt. When this
file exists config.action_controller.perform_caching will be set to true in file exists `config.action_controller.perform_caching` will be set to true in
config/environments/development.rb. config/environments/development.rb.
Additionally, a server can be started with either --dev-caching or Additionally, a server can be started with either `--dev-caching` or
--no-dev-caching included to toggle caching on startup. `--no-dev-caching` included to toggle caching on startup.
*Jussi Mertanen*, *Chuck Callebs* *Jussi Mertanen*, *Chuck Callebs*
@ -303,11 +303,11 @@
*Yuji Yaginuma* *Yuji Yaginuma*
* Adding support for passing a block to the `add_source` action of a custom generator * Adding support for passing a block to the `add_source` action of a custom generator.
*Mike Dalton*, *Hirofumi Wakasugi* *Mike Dalton*, *Hirofumi Wakasugi*
* `assert_file` understands paths with special characters * `assert_file` now understands paths with special characters
(eg. `v0.1.4~alpha+nightly`). (eg. `v0.1.4~alpha+nightly`).
*Diego Carrion* *Diego Carrion*