2010-08-30 01:06:48 -04:00
|
|
|
*Rails 3.1.0 (unreleased)*
|
2010-08-28 18:45:14 -04:00
|
|
|
|
|
|
|
* No changes
|
|
|
|
|
2010-10-18 10:24:41 -04:00
|
|
|
*Rails 3.0.1 (October 15, 2010)*
|
|
|
|
|
|
|
|
* No Changes, just a version bump.
|
2010-08-28 18:45:14 -04:00
|
|
|
|
2010-08-30 01:06:48 -04:00
|
|
|
*Rails 3.0.0 (August 29, 2010)*
|
2010-07-19 09:14:26 -04:00
|
|
|
|
|
|
|
* Added ActiveModel::MassAssignmentSecurity [Eric Chapweske, Josh Kalderimis]
|
|
|
|
|
2010-05-01 00:02:11 -04:00
|
|
|
* JSON supports a custom root option: to_json(:root => 'custom') #4515 [Jatinder Singh]
|
|
|
|
|
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-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:
|
|
|
|
|
2010-08-30 01:06:48 -04:00
|
|
|
def add_observer!(klass)
|
|
|
|
klass.add_observer(self)
|
|
|
|
klass.class_eval 'def after_find() end' unless klass.respond_to?(:after_find)
|
|
|
|
end
|
2010-02-10 17:26:47 -05:00
|
|
|
|
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.
|