aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-01-15 03:48:20 -0800
committerVijay Dev <vijaydev.cse@gmail.com>2012-01-15 03:48:20 -0800
commitb435ea9570f6f7883d93c2e87add454d0df380f3 (patch)
tree316b38c4bd212cc258f6c22ee5e3bedab169e935
parent0bf4eaa759c349f00e9c47acfd370da63929130d (diff)
parent34ad69a16ec0280de8608fa2a4cb21ccac73f1bf (diff)
downloadrails-b435ea9570f6f7883d93c2e87add454d0df380f3.tar.gz
rails-b435ea9570f6f7883d93c2e87add454d0df380f3.tar.bz2
rails-b435ea9570f6f7883d93c2e87add454d0df380f3.zip
Merge pull request #4467 from castlerock/changelog_for_deprecated
changelog entry for deprecated ActionController::Integration, ActionCont...
-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*