CHANGELOG.md 2.6 KB
Newer Older
1 2 3 4 5
*   Don't require passing path to app before options in `rails new`
    and `rails plugin new`

    *Piotr Sarnacki*

J
Josh Crowder 已提交
6 7 8 9
*   rake notes now searches *.less files

    *Josh Crowder*

10 11 12
*   Generate nested route for namespaced controller generated using
    `rails g controller`.
    Fixes #11532.
13

14
    Example:
15

16
        rails g controller admin/dashboard index
17

18 19
        # Before:
        get "dashboard/index"
20

21 22 23 24
        # After:
        namespace :admin do
          get "dashboard/index"
        end
25

26
    *Prathamesh Sonpatki*
27

28 29 30 31
*   Fix the event name of action_dispatch requests.

    *Rafael Mendonça França*

32 33 34 35
*   Make `config.log_level` work with custom loggers.

    *Max Shytikov*

36 37 38 39 40
*   Changed stylesheet load order in the stylesheet manifest generator.
    Fixes #11639.

    *Pawel Janiak*

41 42 43 44 45
*   Added generated unit test for generator generator using new
    `test:generators` rake task.

    *Josef Šimánek*

46 47 48 49
*   Removed `update:application_controller` rake task.

    *Josef Šimánek*

50 51 52 53
*   Fix `rake environment` to do not eager load modules

    *Paul Nikitochkin*

Y
Yuri Artemev 已提交
54 55 56 57
*   Fix `rake notes` to look into `*.sass` files

    *Yuri Artemev*

58 59 60 61
*   Removed deprecated `Rails.application.railties.engines`.

    *Arun Agrawal*

62 63 64 65
*   Removed deprecated threadsafe! from Rails Config.

    *Paul Nikitochkin*

66 67 68 69 70
*   Remove deprecated `ActiveRecord::Generators::ActiveModel#update_attributes` in
    favor of `ActiveRecord::Generators::ActiveModel#update`

    *Vipul A M*

71 72 73 74
*   Remove deprecated `config.whiny_nils` option

    *Vipul A M*

S
schneems 已提交
75 76 77 78
*   Rename `commands/plugin_new.rb` to `commands/plugin.rb` and fix references

    *Richard Schneeman*

S
schneems 已提交
79 80 81 82
*   Fix `rails plugin --help` command.

    *Richard Schneeman*

83 84 85 86
*   Omit turbolinks configuration completely on skip_javascript generator option.

    *Nikita Fedyashev*

87 88
*   Removed deprecated rake tasks for running tests: `rake test:uncommitted` and
    `rake test:recent`.
W
wangjohn 已提交
89 90 91

    *John Wang*

92 93
*   Clearing autoloaded constants triggers routes reloading.
    Fixes #10685.
94 95 96

    *Xavier Noria*

97 98
*   Fixes bug with scaffold generator with `--assets=false --resource-route=false`.
    Fixes #9525.
99 100 101

    *Arun Agrawal*

102
*   Rails::Railtie no longer forces the Rails::Configurable module on everything
P
Prathamesh Sonpatki 已提交
103
    that subclasses it. Instead, the methods from Rails::Configurable have been
104 105 106
    moved to class methods in Railtie and the Railtie has been made abstract.

    *John Wang*
107

S
Sıtkı Bağdat 已提交
108
*   Changes repetitive th tags to use colspan attribute in `index.html.erb` template.
109

S
Sıtkı Bağdat 已提交
110
    *Sıtkı Bağdat*
R
Rafael Mendonça França 已提交
111

112
Please check [4-0-stable](https://github.com/rails/rails/blob/4-0-stable/railties/CHANGELOG.md) for previous changes.