aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionpack/CHANGELOG4
-rw-r--r--activerecord/CHANGELOG6
2 files changed, 5 insertions, 5 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 2ea1b4da27..8bbbbdf8fd 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,6 +1,6 @@
*SVN*
-* Consistent public/protected/private visibility for chained methods. #7813 [dcmanges]
+* Consistent public/protected/private visibility for chained methods. #7813 [Dan Manges]
* Prefer MIME constants to strings. #7707 [Dan Kubb]
@@ -157,7 +157,7 @@ superclass' view_paths. [Rick]
* Allow inGroupsOf and eachSlice to be called through rjs. #7046 [Cody Fauser]
-* Allow exempt_from_layout :rhtml. #6742, #7026 [dcmanges, Squeegy]
+* Allow exempt_from_layout :rhtml. #6742, #7026 [Dan Manges, Squeegy]
* Recognize the .txt extension as Mime::TEXT [Rick]
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 11b965ad6b..c9785c3172 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,6 +1,6 @@
*SVN*
-* Consistent public/protected/private visibility for chained methods. #7813 [dcmanges]
+* Consistent public/protected/private visibility for chained methods. #7813 [Dan Manges]
* Oracle: fix quoted primary keys and datetime overflow. #7798 [Michael Schoen]
@@ -76,7 +76,7 @@ during calendar reform. #7649, #7724 [fedot, Geoff Buesing]
* [DOC] clear up some ambiguity with the way has_and_belongs_to_many creates the default join table name. #7072 [jeremymcanally]
-* change_column accepts :default => nil. Skip column options for primary keys. #6956, #7048 [dcmanges, Jeremy Kemper]
+* change_column accepts :default => nil. Skip column options for primary keys. #6956, #7048 [Dan Manges, Jeremy Kemper]
* MySQL, PostgreSQL: change_column_default quotes the default value and doesn't lose column type information. #3987, #6664 [Jonathan Viney, manfred, altano@bigfoot.com]
@@ -92,7 +92,7 @@ during calendar reform. #7649, #7724 [fedot, Geoff Buesing]
* PostgreSQL, Oracle: correctly perform eager finds with :limit and :order. #4668, #7021 [eventualbuddha, Michael Schoen]
-* Pass a range in :conditions to use the SQL BETWEEN operator. #6974 [dcmanges]
+* Pass a range in :conditions to use the SQL BETWEEN operator. #6974 [Dan Manges]
Student.find(:all, :conditions => { :grade => 9..12 })
* Fix the Oracle adapter for serialized attributes stored in CLOBs. Closes #6825 [mschoen, tdfowler]