diff options
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 07aa0921d4..e2b3404533 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,3 +1,12 @@ +*SVN* + +* Allow multiple association extensions with :extend option (closes #4666) [Josh Susser] + + class Account < ActiveRecord::Base + has_many :people, :extend => [FindOrCreateByNameExtension, FindRecentExtension] + end + + *1.14.2* (April 9th, 2005) * Fixed calculations for the Oracle Adapter (closes #4626) [Michael Schoen] |