Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 7316

Show
Ignore:
Timestamp:
08/14/07 08:53:15 (9 months ago)
Author:
nzkoz
Message:

Add forgotten changelog entry

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/activerecord/CHANGELOG

    r7238 r7316  
    11*SVN* 
     2 
     3* Change the implementation of ActiveRecord's attribute reader and writer methods [nzkoz] 
     4 - Generate Reader and Writer methods which cache attribute values in hashes.  This is to avoid repeatedly parsing the same date or integer columns. 
     5 - Change exception raised when users use find with :select then try to access a skipped column.  Plugins could override missing_attribute() to lazily load the columns. 
     6 - Move method definition to the class, instead of the instance 
     7 - Always generate the readers, writers and predicate methods. 
     8 
    29 
    310* Perform a deep #dup on query cache results so that modifying activerecord attributes does not modify the cached attributes.  [Rick]