rails/railties/CHANGELOG.md

64 lines
1.7 KiB
Markdown
Raw Normal View History

* Run `Minitest.after_run` hooks when running `rails test`.
*Michael Grosser*
* Run `before_configuration` callbacks as soon as application constant
inherits from `Rails::Application`.
Fixes #19880.
*Yuji Yaginuma*
* A generated app should not include Uglifier with `--skip-javascript` option.
*Ben Pickles*
* Set session store to cookie store internally and remove the initializer from
the generated app.
*Prathamesh Sonpatki*
* Set the server host using the `HOST` environment variable.
*mahnunchik*
* Add public API to register new folders for `rake notes`:
config.annotations.register_directories('spec', 'features')
*John Meehan*
* Display name of the class defining the initializer along with the initializer
2016-07-17 06:04:08 +00:00
name 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`
command will fail just after the gem is created causing confusion to the
users. This change was a bug fix to correctly validate gemspecs.
*Rafael Mendonça França*
2016-06-23 00:43:12 +00:00
* Default `config.assets.quiet = true` in the development environment. Suppress
logging of assets requests by default.
2016-06-23 00:43:12 +00:00
*Kevin McPhillips*
* Ensure `/rails/info` routes match in development for apps with a catch-all globbing route.
*Nicholas Firth-McCoy*
* Added a shared section to `config/secrets.yml` that will be loaded for all environments.
*DHH*
2016-05-06 21:54:40 +00:00
2016-05-10 04:07:09 +00:00
Please check [5-0-stable](https://github.com/rails/rails/blob/5-0-stable/railties/CHANGELOG.md) for previous changes.