2017-08-13 16:12:07 -04:00
|
|
|
* Add `--skip-yarn` option to the plugin generator.
|
|
|
|
|
|
|
|
*bogdanvlviv*
|
|
|
|
|
2017-08-13 19:12:56 -04:00
|
|
|
* Optimize routes indentation.
|
|
|
|
|
|
|
|
*Yoshiyuki Hirano*
|
|
|
|
|
2017-08-09 12:26:21 -04:00
|
|
|
* Optimize indentation for generator actions.
|
|
|
|
|
|
|
|
*Yoshiyuki Hirano*
|
|
|
|
|
2017-08-07 07:46:14 -04:00
|
|
|
* Skip unused components when running `bin/rails` in Rails plugin.
|
|
|
|
|
|
|
|
*Yoshiyuki Hirano*
|
|
|
|
|
2017-08-14 23:52:18 -04:00
|
|
|
* Add `git_source` to `Gemfile` for plugin generator.
|
2017-08-07 05:10:31 -04:00
|
|
|
|
|
|
|
*Yoshiyuki Hirano*
|
|
|
|
|
2017-08-09 11:56:33 -04:00
|
|
|
* Add `--skip-action-cable` option to the plugin generator.
|
|
|
|
|
|
|
|
*bogdanvlviv*
|
|
|
|
|
2017-01-20 02:11:10 -05:00
|
|
|
* Deprecate support of use `Rails::Application` subclass to start Rails server.
|
|
|
|
|
|
|
|
*Yuji Yaginuma*
|
|
|
|
|
2017-07-31 13:17:47 -04:00
|
|
|
* Add `ruby x.x.x` version to `Gemfile` and create `.ruby-version`
|
2017-08-06 22:32:26 -04:00
|
|
|
root file containing the current Ruby version when new Rails applications are
|
2017-07-31 13:17:47 -04:00
|
|
|
created.
|
|
|
|
|
|
|
|
*Alberto Almagro*
|
|
|
|
|
2016-08-31 11:28:44 -04:00
|
|
|
* Support `-` as a platform-agnostic way to run a script from stdin with
|
|
|
|
`rails runner`
|
|
|
|
|
|
|
|
*Cody Cutrer*
|
|
|
|
|
2017-06-01 14:28:51 -04:00
|
|
|
* Add `bootsnap` to default `Gemfile`.
|
|
|
|
|
|
|
|
*Burke Libbey*
|
|
|
|
|
2017-07-16 08:54:04 -04:00
|
|
|
* Properly expand shortcuts for environment's name running the `console`
|
|
|
|
and `dbconsole` commands.
|
|
|
|
|
|
|
|
*Robin Dupret*
|
|
|
|
|
2017-06-08 18:15:41 -04:00
|
|
|
* Passing the environment's name as a regular argument to the
|
|
|
|
`rails dbconsole` and `rails console` commands is deprecated.
|
|
|
|
The `-e` option should be used instead.
|
|
|
|
|
|
|
|
Previously:
|
|
|
|
|
|
|
|
$ bin/rails dbconsole production
|
|
|
|
|
|
|
|
Now:
|
|
|
|
|
|
|
|
$ bin/rails dbconsole -e production
|
|
|
|
|
|
|
|
*Robin Dupret*, *Kasper Timm Hansen*
|
|
|
|
|
2017-08-06 22:32:26 -04:00
|
|
|
* Allow passing a custom connection name to the `rails dbconsole`
|
2017-06-05 17:19:00 -04:00
|
|
|
command when using a 3-level database configuration.
|
|
|
|
|
|
|
|
$ bin/rails dbconsole -c replica
|
|
|
|
|
|
|
|
*Robin Dupret*, *Jeremy Daer*
|
|
|
|
|
2017-06-25 16:46:12 -04:00
|
|
|
* Skip unused components when running `bin/rails app:update`.
|
|
|
|
|
|
|
|
If the initial app generation skipped Action Cable, Active Record etc.,
|
|
|
|
the update task honors those skips too.
|
|
|
|
|
|
|
|
*Yuji Yaginuma*
|
|
|
|
|
2017-06-25 13:08:26 -04:00
|
|
|
* Make Rails' test runner work better with minitest plugins.
|
|
|
|
|
|
|
|
By demoting the Rails test runner to just another minitest plugin —
|
|
|
|
and thereby not eager loading it — we can co-exist much better with
|
|
|
|
other minitest plugins such as pride and minitest-focus.
|
|
|
|
|
|
|
|
*Kasper Timm Hansen*
|
|
|
|
|
2017-07-08 21:13:11 -04:00
|
|
|
* Load environment file in `dbconsole` command.
|
|
|
|
|
2017-08-14 23:52:18 -04:00
|
|
|
Fixes #29717.
|
2017-07-08 21:13:11 -04:00
|
|
|
|
|
|
|
*Yuji Yaginuma*
|
|
|
|
|
2017-07-06 08:40:33 -04:00
|
|
|
* Add `rails secrets:show` command.
|
|
|
|
|
|
|
|
*Yuji Yaginuma*
|
|
|
|
|
2017-07-02 17:36:33 -04:00
|
|
|
* Allow mounting the same engine several times in different locations.
|
|
|
|
|
|
|
|
Fixes #20204.
|
|
|
|
|
|
|
|
*David Rodríguez*
|
|
|
|
|
2017-06-22 09:17:18 -04:00
|
|
|
* Clear screenshot files in `tmp:clear` task.
|
|
|
|
|
|
|
|
*Yuji Yaginuma*
|
|
|
|
|
2017-06-26 00:01:54 -04:00
|
|
|
* Add `railtie.rb` to the plugin generator
|
|
|
|
|
|
|
|
*Tsukuru Tanimichi*
|
|
|
|
|
2017-06-18 03:14:00 -04:00
|
|
|
* Deprecate `capify!` method in generators and templates.
|
|
|
|
|
|
|
|
*Yuji Yaginuma*
|
|
|
|
|
2017-05-05 02:54:38 -04:00
|
|
|
* Allow irb options to be passed from `rails console` command.
|
|
|
|
|
|
|
|
Fixes #28988.
|
|
|
|
|
|
|
|
*Yuji Yaginuma*
|
|
|
|
|
2017-07-03 10:58:12 -04:00
|
|
|
* Added a shared section to `config/database.yml` that will be loaded for all environments.
|
2017-04-26 22:00:33 -04:00
|
|
|
|
|
|
|
*Pierre Schambacher*
|
|
|
|
|
2017-04-20 11:56:24 -04:00
|
|
|
* Namespace error pages' CSS selectors to stop the styles from bleeding into other pages
|
2017-04-26 22:00:33 -04:00
|
|
|
when using Turbolinks.
|
|
|
|
|
2017-04-20 11:56:24 -04:00
|
|
|
*Jan Krutisch*
|
|
|
|
|
2017-04-26 22:00:33 -04:00
|
|
|
|
2017-03-26 06:14:11 -04:00
|
|
|
Please check [5-1-stable](https://github.com/rails/rails/blob/5-1-stable/railties/CHANGELOG.md) for previous changes.
|