CHANGELOG.md 6.5 KB
Newer Older
1 2 3 4 5 6
*   Add an `abort_on_failure` boolean option to the generator method that shell
    out (`generate`, `rake`, `rails_command`) to abort the generator if the
    command fails.

    *David Rodríguez*

7 8 9 10
*   Remove `app/assets` and `app/javascript` from `eager_load_paths` and `autoload_paths`.

    *Gannon McGibbon*

11 12 13 14 15 16
*   Add JSON support to rails properties route (`/rails/info/properties`).

    Now, `Rails::Info` properties may be accessed in JSON format at `/rails/info/properties.json`.

    *Yoshiyuki Hirano*

17 18
*   Use Ids instead of memory addresses when displaying references in scaffold views.

19 20 21 22
    Fixes #29200.

    *Rasesh Patel*

23 24 25 26 27
*   Adds support for multiple databases to `rails db:migrate:status`.
    Subtasks are also added to get the status of individual databases (eg. `rails db:migrate:status:animals`).

    *Gannon McGibbon*

28 29 30 31 32 33 34 35
*   Use Webpacker by default to manage app-level JavaScript through the new app/javascript directory.
    Sprockets is now solely in charge, by default, of compiling CSS and other static assets.
    Action Cable channel generators will create ES6 stubs rather than use CoffeeScript.
    Active Storage, Action Cable, Turbolinks, and Rails-UJS are loaded by a new application.js pack.
    Generators no longer generate JavaScript stubs.

    *DHH*, *Lachlan Sylvester*

36 37 38
*   Add `database` (aliased as `db`) option to model generator to allow
    setting the database. This is useful for applications that use
    multiple databases and put migrations per database in their own directories.
39 40

    ```
41
    bin/rails g model Room capacity:integer --database=kingston
42 43 44 45 46
          invoke  active_record
          create    db/kingston_migrate/20180830151055_create_rooms.rb
    ```

    Because rails scaffolding uses the model generator, you can
47
    also specify a database with the scaffold generator.
48 49 50

    *Gannon McGibbon*

51
*   Raise an error when "recyclable cache keys" are being used by a cache store
52 53 54
    that does not explicitly support it. Custom cache keys that do support this feature
    can bypass this error by implementing the `supports_cache_versioning?` method on their
    class and returning a truthy value.
55 56 57

    *Richard Schneeman*

58 59 60
*   Support environment specific credentials file.

    For `production` environment look first for `config/credentials/production.yml.enc` file that can be decrypted by
61
    `ENV["RAILS_MASTER_KEY"]` or `config/credentials/production.key` master key.
62 63 64 65 66
    Edit given environment credentials file by command `rails credentials:edit --environment production`.
    Default paths can be overwritten by setting `config.credentials.content_path` and `config.credentials.key_path`.

    *Wojciech Wnętrzak*

67
*   Make `ActiveSupport::Cache::NullStore` the default cache store in the test environment.
68 69 70

    *Michael C. Nelson*

71 72 73 74
*   Emit warning for unknown inflection rule when generating model.

    *Yoshiyuki Kinjo*

75
*   Add `database` (aliased as `db`) option to migration generator.
76 77 78

    If you're using multiple databases and have a folder for each database
    for migrations (ex db/migrate and db/new_db_migrate) you can now pass the
79
    `--database` option to the generator to make sure the the migration
80 81 82
    is inserted into the correct folder.

    ```
83
    rails g migration CreateHouses --database=kingston
84 85 86 87 88 89
      invoke  active_record
      create    db/kingston_migrate/20180830151055_create_houses.rb
    ```

    *Eileen M. Uchitelle*

90 91 92 93
*   Deprecate `rake routes` in favor of `rails routes`.

    *Yuji Yaginuma*

94 95 96 97
*   Deprecate `rake initializers` in favor of `rails initializers`.

    *Annie-Claude Côté*

98 99 100 101
*   Deprecate `rake dev:cache` in favor of `rails dev:cache`.

    *Annie-Claude Côté*

102 103 104
*   Deprecate `rails notes` subcommands in favor of passing an `annotations` argument to `rails notes`.

    The following subcommands are replaced by passing `--annotations` or `-a` to `rails notes`:
105 106 107 108
    - `rails notes:custom ANNOTATION=custom` is deprecated in favor of using `rails notes -a custom`.
    - `rails notes:optimize` is deprecated in favor of using `rails notes -a OPTIMIZE`.
    - `rails notes:todo` is deprecated in favor of  using`rails notes -a TODO`.
    - `rails notes:fixme` is deprecated in favor of using `rails notes -a FIXME`.
109 110 111 112 113 114 115 116 117 118 119 120

    *Annie-Claude Côté*

*   Deprecate `SOURCE_ANNOTATION_DIRECTORIES` environment variable used by `rails notes`
    through `Rails::SourceAnnotationExtractor::Annotation` in favor of using `config.annotations.register_directories`.

    *Annie-Claude Côté*

*   Deprecate `rake notes` in favor of `rails notes`.

    *Annie-Claude Côté*

R
Ryuta Kamizono 已提交
121
*   Don't generate unused files in `app:update` task.
122

R
Ryuta Kamizono 已提交
123
    Skip the assets' initializer when sprockets isn't loaded.
124

R
Ryuta Kamizono 已提交
125
    Skip `config/spring.rb` when spring isn't loaded.
126

R
Ryuta Kamizono 已提交
127
    Skip yarn's contents when yarn integration isn't used.
128

129 130
    *Tsukuru Tanimichi*

131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
*   Make the master.key file read-only for the owner upon generation on
    POSIX-compliant systems.

    Previously:

        $ ls -l config/master.key
        -rw-r--r--   1 owner  group      32 Jan 1 00:00 master.key

    Now:

        $ ls -l config/master.key
        -rw-------   1 owner  group      32 Jan 1 00:00 master.key

    Fixes #32604.

    *Jose Luis Duran*

148 149 150 151 152 153 154 155
*   Deprecate support for using the `HOST` environment to specify the server IP.

    The `BINDING` environment should be used instead.

    Fixes #29516.

    *Yuji Yaginuma*

156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
*   Deprecate passing Rack server name as a regular argument to `rails server`.

    Previously:

        $ bin/rails server thin

    There wasn't an explicit option for the Rack server to use, now we have the
    `--using` option with the `-u` short switch.

    Now:

        $ bin/rails server -u thin

    This change also improves the error message if a missing or mistyped rack
    server is given.

    *Genadi Samokovarov*

174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
*   Add "rails routes --expanded" option to output routes in expanded mode like
    "psql --expanded". Result looks like:

    ```
    $ rails routes --expanded
    --[ Route 1 ]------------------------------------------------------------
    Prefix            | high_scores
    Verb              | GET
    URI               | /high_scores(.:format)
    Controller#Action | high_scores#index
    --[ Route 2 ]------------------------------------------------------------
    Prefix            | new_high_score
    Verb              | GET
    URI               | /high_scores/new(.:format)
    Controller#Action | high_scores#new
    ```

    *Benoit Tigeot*

J
Jeremy Daer 已提交
193 194 195 196 197
*   Rails 6 requires Ruby 2.4.1 or newer.

    *Jeremy Daer*


198
Please check [5-2-stable](https://github.com/rails/rails/blob/5-2-stable/railties/CHANGELOG.md) for previous changes.