aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md43
1 files changed, 42 insertions, 1 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 7e7b157483..797cffc884 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,3 +1,43 @@
+* Don't require passing path to app before options in `rails new`
+ and `rails plugin new`
+
+ *Piotr Sarnacki*
+
+* rake notes now searches *.less files
+
+ *Josh Crowder*
+
+* Generate nested route for namespaced controller generated using
+ `rails g controller`.
+ Fixes #11532.
+
+ Example:
+
+ rails g controller admin/dashboard index
+
+ # Before:
+ get "dashboard/index"
+
+ # After:
+ namespace :admin do
+ get "dashboard/index"
+ end
+
+ *Prathamesh Sonpatki*
+
+* Fix the event name of action_dispatch requests.
+
+ *Rafael Mendonça França*
+
+* Make `config.log_level` work with custom loggers.
+
+ *Max Shytikov*
+
+* Changed stylesheet load order in the stylesheet manifest generator.
+ Fixes #11639.
+
+ *Pawel Janiak*
+
* Added generated unit test for generator generator using new
`test:generators` rake task.
@@ -49,7 +89,8 @@
*John Wang*
-* Clearing autoloaded constants triggers routes reloading [Fixes #10685].
+* Clearing autoloaded constants triggers routes reloading.
+ Fixes #10685.
*Xavier Noria*