aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorGeoff Buesing <gbuesing@gmail.com>2008-01-21 03:55:54 +0000
committerGeoff Buesing <gbuesing@gmail.com>2008-01-21 03:55:54 +0000
commit1d4f4cdfe22cbe4962ae8953c96bc5c70d8d4e6a (patch)
treedea694c566e1a13c2e63a5a617370542517b7627 /activesupport/CHANGELOG
parent9c4beb5e982aae09a0813f82b8634baa8f8b4d08 (diff)
downloadrails-1d4f4cdfe22cbe4962ae8953c96bc5c70d8d4e6a.tar.gz
rails-1d4f4cdfe22cbe4962ae8953c96bc5c70d8d4e6a.tar.bz2
rails-1d4f4cdfe22cbe4962ae8953c96bc5c70d8d4e6a.zip
Replace non-dst-aware TimeZone class with dst-aware class from tzinfo_timezone plugin. TimeZone#adjust and #unadjust are no longer available; tzinfo gem must now be present in order to perform time zone calculations, via #local_to_utc and #utc_to_local methods.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8679 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 5cd4a483e4..53ae421131 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Replace non-dst-aware TimeZone class with dst-aware class from tzinfo_timezone plugin. TimeZone#adjust and #unadjust are no longer available; tzinfo gem must now be present in order to perform time zone calculations, via #local_to_utc and #utc_to_local methods. [Geoff Buesing]
+
* Extract ActiveSupport::Callbacks from Active Record, test case setup and teardown, and ActionController::Dispatcher. #10727 [Josh Peek]
* Introducing DateTime #utc, #utc? and #utc_offset, for duck-typing compatibility with Time. Closes #10002 [Geoff Buesing]