aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
Commit message (Collapse)AuthorAgeFilesLines
* Implement #many? for NamedScope and AssociationCollection using #size [#1500 ↵Chris Kampmeier2009-05-171-0/+2
| | | | | | state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Added :touch option to belongs_to associations that will touch the parent ↵David Heinemeier Hansson2009-04-161-1/+3
| | | | record when the current record is saved or destroyed [DHH]
* Added ActiveRecord::Base#touch to update the updated_at/on attributes with ↵David Heinemeier Hansson2009-04-161-0/+5
| | | | the current time [DHH]
* Prepare for final 2.3 releaseDavid Heinemeier Hansson2009-03-151-3/+1
|
* Rename ActiveRecord::Base.each to ActiveRecord::Base.find_eachPratik Naik2009-03-111-2/+1
|
* Release RC2 todayDavid Heinemeier Hansson2009-03-051-1/+1
|
* So it didnt happen yesterday, but very soon! Just need the final details ↵David Heinemeier Hansson2009-02-281-1/+1
| | | | ironed out
* Prep for RC2 later todayDavid Heinemeier Hansson2009-02-271-1/+1
|
* Added ActiveRecord::Base.each and ActiveRecord::Base.find_in_batches for ↵David Heinemeier Hansson2009-02-231-0/+2
| | | | batch processing [DHH/Jamis Buck]
* Add ActiveRecord::Base.exists? with no args [#1817 state:committed]Scott Taylor2009-02-051-0/+5
| | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Mark CHANGELOGs for releaseDavid Heinemeier Hansson2009-02-011-1/+1
|
* Add support for nested object forms to ActiveRecord and the helpers in ↵Eloy Duran2009-02-011-0/+9
| | | | | | | | ActionPack Signed-Off-By: Michael Koziarski <michael@koziarski.com> [#1202 state:committed]
* Merge docrailsPratik Naik2009-01-181-2/+2
|
* Fixed broken after_save callback; was being called when before_create was ↵Michael Lovitt2009-01-161-0/+4
| | | | | | | canceled or before_update was canceled Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1735 state:committed]
* Introduce transaction_joinable flag to mark that the fixtures transaction ↵Jeremy Kemper2009-01-101-0/+2
| | | | | | can't joined, a new savepoint is required even if :requires_new is not set. Use :requires_new option instead of :nest. Update changelog. [#383 state:committed]
* Introduce dynamic scopes for ActiveRecord: you can now use class methods ↵Yaroslav Markin2008-12-281-0/+2
| | | | | | like scoped_by_user_name(user_name) and scoped_by_user_name_and_password(user_name, password) that will use the scoped method with attributes you supply. [#1648 state:committed] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* ActiveRecord::Base#new_record? now returns false for existing records (was ↵Yaroslav Markin2008-12-271-0/+2
| | | | | | nil) [#1219 state:committed] Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* normalize author names in changelogs [#1495 state:committed]Xavier Noria2008-12-161-392/+392
| | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Changelog entry for #1294Jeremy Kemper2008-12-081-0/+2
|
* Add :having option to find, to use in combination with grouped finds. Also ↵miloops2008-12-011-0/+2
| | | | | | | added to has_many and has_and_belongs_to_many associations. Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1028 state:committed]
* Added default_scope to Base [#1381 state:committed] (Paweł Kondzior)Pratik Naik2008-11-161-0/+16
|
* Revert "Added default_scope to Base [#1381 state:committed] (Paweł ↵David Heinemeier Hansson2008-11-161-16/+0
| | | | | | Kondzior)" -- won't gel with threads. This reverts commit ff594b2bc94ff2a942fe6ca05672387722dee686.
* Added default_scope to Base [#1381 state:committed] (Paweł Kondzior)David Heinemeier Hansson2008-11-161-0/+16
|
* Prepare for RC2David Heinemeier Hansson2008-11-141-1/+1
|
* Revert commit which breaks all the tests.Michael Koziarski2008-11-071-2/+0
| | | | | | | | This reverts commit 8adb79b9b5983cda8dbdd4ef401661fbd51d8844. Conflicts: activerecord/CHANGELOG
* Fixed the sanitize helper to avoid double escaping already properly escaped ↵David Heinemeier Hansson2008-11-061-1/+1
| | | | entities [#683 state:committed]
* Stop logging SHOW FIELDS and SET SQL_AUTO_IS_NULL=0 for the MysqlAdapter as ↵David Heinemeier Hansson2008-11-061-0/+2
| | | | they only clutter up the log and offer no value [DHH]
* Ensure indices don't flip order in schema.rb [#1266 state:committed]Jordi Bunster2008-10-301-0/+2
| | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Fixed that serialized strings should never be type-casted (i.e. turning ↵David Heinemeier Hansson2008-10-271-0/+5
| | | | "Yes" to a boolean)(Andreas Korth) [#857 state:committed]
* Update CHANGELOGs with the last few fixes, set date for todayDavid Heinemeier Hansson2008-10-241-1/+3
|
* Prepare for Rails 2.2.0 [RC1]David Heinemeier Hansson2008-10-231-1/+1
|
* Add Model#delete instance method, similar to Model.delete class method. ↵Hongli Lai (Phusion2008-09-211-0/+2
| | | | | | [#1086 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Deal with MySQL's quirky handling of defaults and blob/text columnsFrederick Cheung2008-09-141-0/+2
| | | | | | [#1043 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Multiparameter attributes skip time zone conversion for time-only columns ↵gbuesing2008-09-141-0/+2
| | | | [#1030 state:resolved]
* Base.skip_time_zone_conversion_for_attributes uses ↵miloops2008-09-141-0/+2
| | | | class_inheritable_accessor, so that subclasses don't overwrite Base [#346 state:resolved]
* Revert "Add :accessible option to Associations for allowing mass assignments ↵Pratik Naik2008-09-101-18/+0
| | | | | | | | | | | | using hash. [#474 state:resolved]" This reverts commit e0750d6a5c7f621e4ca12205137c0b135cab444a. Conflicts: activerecord/CHANGELOG activerecord/lib/active_record/associations.rb activerecord/lib/active_record/associations/association_collection.rb
* Missing doc updatesDavid Heinemeier Hansson2008-09-091-0/+2
|
* Add special AssociationReflection methods for creating association objects, ↵Hongli Lai (Phusion)2008-09-091-1/+1
| | | | | | | | and modify the code base to use those methods instead of creating association objects directly. This allows plugins to hook into association object creation behavior. [#986 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Make the options that has_many, belongs_to and other association generation ↵Hongli Lai (Phusion)2008-09-091-0/+2
| | | | | | | | methods can accept, configurable. [#985 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Changed all benchmarking reports to be in millisecondsDavid Heinemeier Hansson2008-09-051-0/+2
|
* Database connections are now pooled, one pool per #establish_connection call.Jeremy Kemper2008-09-021-0/+2
| | | | | | | | | | | | | | | | | | | Pools start out empty and grow as necessary to a maximum size (default is 5, configure size with key 'pool' in your database configuration). If no connections are available, a thread will wait up to a 'wait_timeout' time (default is 5 seconds). Connections are verified and reset when checked out from the pool (usually upon first access to ActiveRecord::Base.connection), and returned back to the pool after each request. If you would like to use connection pools outside of ActionPack, there is an ActiveRecord::Base.connection_pool method that gives you access to the pool, and you can manually checkout/checkin connections, or supply a block to ActiveRecord::Base.connection_pool.with_connection which takes care of the checkout/checkin for you. [#936 state:resolved]
* Missed changelog update for #501Jeremy Kemper2008-08-281-0/+2
|
* Rollback the transaction when a before_* callback returns false.Xavier Noria2008-08-241-0/+2
| | | | | | | Previously this would have committed the transaction but not carried out save or destroy operation. [#891 state:committed] Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Made migrations transactional for PostgreSQL [#834 state:resolved]Tarmo Tänav2008-08-221-0/+2
| | | | Patch originally from http://dev.rubyonrails.org/ticket/5470
* Set config.active_record.timestamped_migrations = false to have migrations ↵Nik Wakelin2008-07-171-0/+2
| | | | | | with numeric prefix instead of UTC timestamp. [#446 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Fixed mysql change_column_default to not make the column always nullable.Tarmo Tänav2008-07-141-0/+2
| | | | | | Also added change_column_null to both mysql and sqlite to keep the api features closer to postgresql. [#617 state:resolved]
* Fixed that create database statements would always include "DEFAULT NULL" ↵David Heinemeier Hansson2008-07-141-0/+2
| | | | (Nick Sieger) [#334 status:committed]
* Add :accessible option to Associations for allowing mass assignments using ↵David Dollar2008-07-141-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | hash. [#474 state:resolved] Allows nested Hashes (i.e. from nested forms) to hydrate the appropriate ActiveRecord models. class Post < ActiveRecord::Base belongs_to :author, :accessible => true has_many :comments, :accessible => true end post = Post.create({ :title => 'Accessible Attributes', :author => { :name => 'David Dollar' }, :comments => [ { :body => 'First Post!' }, { :body => 'Nested Hashes are great!' } ] }) post.comments << { :body => 'Another Comment' } Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Add :tokenizer option to validates_length_of. [#507 state:resolved]David Lowenfels2008-07-041-0/+5
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Allow conditions on multiple tables to be specified using hash.Pratik Naik2008-06-281-0/+5
| | | | | | | | | Examples: User.all :joins => :items, :conditions => { :age => 10, :items => { :color => 'black' } } Item.first :conditions => { :items => { :color => 'red' } } Note : Hash key in :conditions is referring to the actual table name or the alias defined in query.