2010-07-26 13:52:34 -04:00
|
|
|
*Rails 3.0.0 [release candidate] (July 26th, 2010)*
|
2010-07-19 09:14:26 -04:00
|
|
|
|
|
|
|
* Added ActiveModel::MassAssignmentSecurity [Eric Chapweske, Josh Kalderimis]
|
|
|
|
|
|
|
|
|
2010-06-08 14:46:26 -04:00
|
|
|
*Rails 3.0.0 [beta 4] (June 8th, 2010)*
|
2010-05-01 00:02:11 -04:00
|
|
|
|
|
|
|
* JSON supports a custom root option: to_json(:root => 'custom') #4515 [Jatinder Singh]
|
|
|
|
|
|
|
|
|
2010-04-13 15:14:54 -04:00
|
|
|
*Rails 3.0.0 [beta 3] (April 13th, 2010)*
|
|
|
|
|
|
|
|
* No changes
|
|
|
|
|
|
|
|
|
2010-04-01 17:20:03 -04:00
|
|
|
*Rails 3.0.0 [beta 2] (April 1st, 2010)*
|
2009-08-09 03:29:34 -04:00
|
|
|
|
2010-04-01 16:54:53 -04:00
|
|
|
* #new_record? and #destroyed? were removed from ActiveModel::Lint. Use
|
2010-08-14 01:13:00 -04:00
|
|
|
persisted? instead. A model is persisted if it's not a new_record? and it was
|
2010-04-01 16:54:53 -04:00
|
|
|
not destroyed? [MG]
|
|
|
|
|
|
|
|
* Added validations reflection in ActiveModel::Validations [JV]
|
|
|
|
|
|
|
|
Model.validators
|
|
|
|
Model.validators_on(:field)
|
|
|
|
|
|
|
|
* #to_key was added to ActiveModel::Lint so we can generate DOM IDs for
|
|
|
|
AMo objects with composite keys [MG]
|
|
|
|
|
2010-04-01 17:20:03 -04:00
|
|
|
|
2010-04-01 17:04:55 -04:00
|
|
|
*Rails 3.0.0 [beta 1] (February 4, 2010)*
|
|
|
|
|
2010-02-10 17:26:47 -05:00
|
|
|
* ActiveModel::Observer#add_observer!
|
|
|
|
|
|
|
|
It has a custom hook to define after_find that should really be in a
|
|
|
|
ActiveRecord::Observer subclass:
|
|
|
|
|
|
|
|
def add_observer!(klass)
|
|
|
|
klass.add_observer(self)
|
|
|
|
klass.class_eval 'def after_find() end' unless
|
|
|
|
klass.respond_to?(:after_find)
|
|
|
|
end
|
|
|
|
|
2010-01-03 22:02:10 -05:00
|
|
|
* Change the ActiveModel::Base.include_root_in_json default to true for Rails 3 [DHH]
|
|
|
|
|
2009-08-09 22:47:32 -04:00
|
|
|
* Add validates_format_of :without => /regexp/ option. #430 [Elliot Winkler, Peer Allan]
|
|
|
|
|
|
|
|
Example :
|
|
|
|
|
|
|
|
validates_format_of :subdomain, :without => /www|admin|mail/
|
|
|
|
|
2009-08-09 03:29:34 -04:00
|
|
|
* Introduce validates_with to encapsulate attribute validations in a class. #2630 [Jeff Dean]
|
|
|
|
|
|
|
|
* Extracted from Active Record and Active Resource.
|