aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorVishnu Atrai <me@vishnuatrai.com>2012-01-15 01:33:18 +0530
committerVishnu Atrai <me@vishnuatrai.com>2012-01-15 02:08:13 +0530
commit34ad69a16ec0280de8608fa2a4cb21ccac73f1bf (patch)
tree42b04f0c59328b3cc753395ac22e5c8712cc9bee /actionpack
parentf4b1dcdbcfe525efd0eb3ff047bbddca353d47b1 (diff)
downloadrails-34ad69a16ec0280de8608fa2a4cb21ccac73f1bf.tar.gz
rails-34ad69a16ec0280de8608fa2a4cb21ccac73f1bf.tar.bz2
rails-34ad69a16ec0280de8608fa2a4cb21ccac73f1bf.zip
changelog entry for deprecated ActionController::Integration, ActionController::IntegrationTest, ActionController::PerformanceTest,ActionController::AbstractRequest, ActionController::Request, ActionController::AbstractResponse others
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 34110ca228..cc09bcb771 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,3 +1,20 @@
+## Rails 4.0.0 (unreleased) ##
+* Deprecated ActionController::Integration in favour of ActionDispatch::Integration
+
+* Deprecated ActionController::IntegrationTest in favour of ActionDispatch::IntegrationTest
+
+* Deprecated ActionController::PerformanceTest in favour of ActionDispatch::PerformanceTest
+
+* Deprecated ActionController::AbstractRequest in favour of ActionDispatch::Request
+
+* Deprecated ActionController::Request in favour of ActionDispatch::Request
+
+* Deprecated ActionController::AbstractResponse in favour of ActionDispatch::Response
+
+* Deprecated ActionController::Response in favour of ActionDispatch::Response
+
+* Deprecated ActionController::Routing in favour of ActionDispatch::Routing
+
* check_box helper with :disabled => true will generate a disabled hidden field to conform with the HTML convention where disabled fields are not submitted with the form.
This is a behavior change, previously the hidden tag had a value of the disabled checkbox.
*Tadas Tamosauskas*