aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md26
1 files changed, 17 insertions, 9 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 8b10144413..0e9ef966ea 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,22 +1,30 @@
-* Created rake restart task. Restarts your Rails app by touching the
- `tmp/restart.txt`.
+* Add a new-line to the end of route method generated code.
- Fixes #18876.
+ We need to add a `\n`, because we cannot have two routes
+ in the same line.
- *Hyonjee Joo*
+ *arthurnn*
-* Set Rails console to use log formatter and log level as specified for the
- given environment.
+* Add `rake initializers`
- Fixes #15470.
+ This task prints out all defined initializers in the order they are invoked
+ by Rails. This is helpful for debugging issues related to the initialization
+ process.
- *Jacob Evelyn*
+ *Naoto Kaneko*
+
+* Created rake restart task. Restarts your Rails app by touching the
+ `tmp/restart.txt`.
+
+ Fixes #18876.
+
+ *Hyonjee Joo*
* Add `config/initializers/active_record_belongs_to_required_by_default.rb`
Newly generated Rails apps have a new initializer called
`active_record_belongs_to_required_by_default.rb` which sets the value of
- the configuration option `config.active_record.belongs_to_requred_by_default`
+ the configuration option `config.active_record.belongs_to_required_by_default`
to `true` when ActiveRecord is not skipped.
As a result, new Rails apps require `belongs_to` association on model