aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-03-09 02:22:17 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-03-09 02:22:17 +0530
commitdb6542178cb175602c597e8c974c4585f8ef7e24 (patch)
treebd837608aaba8ccdf151e44a2d11096b25909944 /actionpack/CHANGELOG.md
parent188d1d27876018c492280059b3d721be9afcc231 (diff)
downloadrails-db6542178cb175602c597e8c974c4585f8ef7e24.tar.gz
rails-db6542178cb175602c597e8c974c4585f8ef7e24.tar.bz2
rails-db6542178cb175602c597e8c974c4585f8ef7e24.zip
changelog updates for Rails 4 [ci skip]
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 78ac05389c..50b3ac4ce7 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,17 @@
## Rails 4.0.0 (unreleased) ##
+* Upgrade rack-cache to 1.2. *José Valim*
+
+* ActionController::SessionManagement is removed. *Santiago Pastorino*
+
+* Since the router holds references to many parts of the system like engines, controllers and the application itself, inspecting the route set can actually be really slow, therefore we default alias inspect to to_s. *José Valim*
+
+* Add a new line after the textarea opening tag. Closes #393 *rafaelfranca*
+
+* Always pass a respond block from to responder. We should let the responder to decide what to do with the given overridden response block, and not short circuit it. *sikachu*
+
+* Fixes layout rendering regression from 3.2.2. *José Valim*
+
* Adds support for layouts when rendering a partial with a given collection. *serabe*
* Allows the route helper `root` to take a string argument. For example, `root 'pages#main'`. *bcardarella*