aboutsummaryrefslogblamecommitdiffstats
path: root/activemodel/CHANGELOG
blob: 83748532315b6e29711c1e1a5b5e4d147f95a759 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                   



                                                                             
                                       



                                                                                        




                                         
                                        
 











                                                                                
 

                                         










                                                                      

                                                                                     





                                                                                        


                                                                                              
*Rails 3.0.0 [release candidate] (July 26th, 2010)*

* Added ActiveModel::MassAssignmentSecurity [Eric Chapweske, Josh Kalderimis]


*Rails 3.0.0 [beta 4] (June 8th, 2010)*

* JSON supports a custom root option: to_json(:root => 'custom')  #4515 [Jatinder Singh]


*Rails 3.0.0 [beta 3] (April 13th, 2010)*

* No changes


*Rails 3.0.0 [beta 2] (April 1st, 2010)*

* #new_record? and #destroyed? were removed from ActiveModel::Lint. Use
  persisted? instead. A model is persisted if it's not a new_record? and it was 
  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]


*Rails 3.0.0 [beta 1] (February 4, 2010)*

* 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

* Change the ActiveModel::Base.include_root_in_json default to true for Rails 3 [DHH]

* Add validates_format_of :without => /regexp/ option. #430 [Elliot Winkler, Peer Allan]

  Example :

      validates_format_of :subdomain, :without => /www|admin|mail/

* Introduce validates_with to encapsulate attribute validations in a class.  #2630 [Jeff Dean]

* Extracted from Active Record and Active Resource.