aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorgbuesing <gbuesing@gmail.com>2008-06-29 15:17:51 -0500
committergbuesing <gbuesing@gmail.com>2008-06-29 15:21:40 -0500
commit676d6a651497b56f31e00db4e7795669de0da672 (patch)
tree65e609936284d02bb3db3b335392fcbd8b8a7aef /activesupport/CHANGELOG
parent01db5ded54b0e3a2ea80d28e4841d40fcec23cdf (diff)
downloadrails-676d6a651497b56f31e00db4e7795669de0da672.tar.gz
rails-676d6a651497b56f31e00db4e7795669de0da672.tar.bz2
rails-676d6a651497b56f31e00db4e7795669de0da672.zip
TimeWithZone: when crossing DST boundary, treat Durations of days, months or years as variable-length, and all other values as absolute length. A time + 24.hours will advance exactly 24 hours, but a time + 1.day will advance 23-25 hours, depending on the day. Ensure consistent behavior across all advancing methods.
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 a540150329..f0c1a208a5 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*Edge*
+* TimeWithZone: when crossing DST boundary, treat Durations of days, months or years as variable-length, and all other values as absolute length. A time + 24.hours will advance exactly 24 hours, but a time + 1.day will advance 23-25 hours, depending on the day. Ensure consistent behavior across all advancing methods [Geoff Buesing]
+
* Added TimeZone #=~, to support matching zones by regex in time_zone_select. #195 [Ernie Miller]
* Added Array#second through Array#tenth as aliases for Array#[1] through Array#[9] [DHH]