aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorYasyf Mohamedali <yasyfm@gmail.com>2015-03-03 15:16:47 -0500
committerYasyf Mohamedali <yasyfm@gmail.com>2015-03-03 15:16:47 -0500
commit2cc2fa3633edd96773023c6b09d07c7b9d9b841d (patch)
tree214036adbdae276598736e7af29bfed3603caa46 /activesupport/CHANGELOG.md
parentb0edabf3be07f841781bc0b1743c401e666d2952 (diff)
downloadrails-2cc2fa3633edd96773023c6b09d07c7b9d9b841d.tar.gz
rails-2cc2fa3633edd96773023c6b09d07c7b9d9b841d.tar.bz2
rails-2cc2fa3633edd96773023c6b09d07c7b9d9b841d.zip
Take DST into account when locating TimeZone from Numeric.
When given a specific offset, use the first result found where the total current offset (including any periodic deviations such as DST) from UTC is equal.
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 43fb87f203..f5fa70494a 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,13 @@
+* Take DST into account when locating TimeZone from Numeric.
+
+ When given a specific offset, use the first result found where the
+ total current offset (including any periodic deviations such as DST)
+ from UTC is equal.
+
+ Fixes #15209.
+
+ *Yasyf Mohamedali*
+
* Added `#without` on `Enumerable` and `Array` to return a copy of an
enumerable without the specified elements.