aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2014-08-19 16:20:53 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2014-08-19 16:20:53 -0500
commitb9700c1e51891de4d5d5d27396e936c9fd46771a (patch)
treede124d93b5ac556ad69457725ee3fc33f541b1bb
parent6b66ec3e65cf294b10f037fccc5da8175da9e8dc (diff)
parent5407084cc55d0c013fbfd21950e04d3c07244bf1 (diff)
downloadrails-b9700c1e51891de4d5d5d27396e936c9fd46771a.tar.gz
rails-b9700c1e51891de4d5d5d27396e936c9fd46771a.tar.bz2
rails-b9700c1e51891de4d5d5d27396e936c9fd46771a.zip
Merge pull request #16561 from gsamokovarov/mention-web-console-in-changelog
Mention web-console in 4.2 release notes
-rw-r--r--guides/source/4_2_release_notes.md3
-rw-r--r--railties/CHANGELOG.md7
2 files changed, 10 insertions, 0 deletions
diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md
index 9937a947a5..b90e5025e2 100644
--- a/guides/source/4_2_release_notes.md
+++ b/guides/source/4_2_release_notes.md
@@ -69,6 +69,9 @@ Please refer to the [Changelog][railties] for detailed changes.
### Notable changes
+* Introduced `web-console` in the default application Gemfile.
+ ([Pull Request](https://github.com/rails/rails/pull/16532))
+
* Added a `required` option to the model generator for associations.
([Pull Request](https://github.com/rails/rails/pull/16062))
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 72bf73cb26..fdc6d1806e 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,3 +1,10 @@
+* The [web-console](https://github.com/rails/web-console) gem is now
+ installed by default for new applications. It can help you debug
+ development exceptions by spawnig an interactive console in its cause
+ binding.
+
+ *Ryan Dao*, *Genadi Samokovarov*, *Guillermo Iguaran*
+
* Add a `required` option to the model generator for associations
*Sean Griffin*