aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-07-26 15:07:19 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2012-07-26 15:07:19 -0700
commit133754ef172706c10d6d1f9393d4fb1a1b19e2d7 (patch)
treec1f96570993ead95bfb8615e42bdc155e17c895e /activesupport
parent3dae4400989174c12730285397c58caf1a2685af (diff)
parentd1b9cf2d48b4e58da2da563107dd2783e326e287 (diff)
downloadrails-133754ef172706c10d6d1f9393d4fb1a1b19e2d7.tar.gz
rails-133754ef172706c10d6d1f9393d4fb1a1b19e2d7.tar.bz2
rails-133754ef172706c10d6d1f9393d4fb1a1b19e2d7.zip
Merge branch '3-2-rel' into 3-2-stable
* 3-2-rel: updating release date bumping to 3.2.7 updating the changelog * Do not convert digest auth strings to symbols. CVE-2012-3424 updating the version updating changelogs
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG.md8
-rw-r--r--activesupport/lib/active_support/version.rb2
2 files changed, 9 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index d20e011f0a..8f53a57423 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,11 @@
+## Rails 3.2.7 (Jul 26, 2012)
+
+* Hash#fetch(fetch) is not the same as doing hash[key]
+* adds a missing require [fixes #6896]
+* make sure the inflection rules are loaded when cherry-picking active_support/core_ext/string/inflections.rb [fixes #6884]
+* Merge pull request #6857 from rsutphin/as_core_ext_time_missing_require
+* bump AS deprecation_horizon to 4.0
+
## Rails 3.2.6 (Jun 12, 2012)
* No changes.
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb
index a54ce0b6cb..02c09a3ff2 100644
--- a/activesupport/lib/active_support/version.rb
+++ b/activesupport/lib/active_support/version.rb
@@ -2,7 +2,7 @@ module ActiveSupport
module VERSION #:nodoc:
MAJOR = 3
MINOR = 2
- TINY = 6
+ TINY = 7
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')