aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-06-13 10:52:53 +0000
committerJamis Buck <jamis@37signals.com>2005-06-13 10:52:53 +0000
commite0537acaeb6c432db844ff835120de7aabb1e39b (patch)
tree230eb2ffda95892d3997ccf5fb6ac8d826d3c596 /activerecord/CHANGELOG
parent76e4c1a5584c814a761acee6dc36af589e5fe5be (diff)
downloadrails-e0537acaeb6c432db844ff835120de7aabb1e39b.tar.gz
rails-e0537acaeb6c432db844ff835120de7aabb1e39b.tar.bz2
rails-e0537acaeb6c432db844ff835120de7aabb1e39b.zip
Added ActiveRecord::Recursion to guard against recursive calls to #save
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1411 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 0f4fabe293..056c1bf2eb 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added ActiveRecord::Recursion for guarding against recursive saves
+
* Fixed sanitized conditions for has_many finder method. #1281 [jackc@hylesanderson.com, pragdave, Tobias Luetke]
* Comprehensive PostgreSQL schema support. Use the optional schema_search_path directive in database.yml to give a comma-separated list of schemas to search for your tables. This allows you, for example, to have tables in a shared schema without having to use a custom table name. See http://www.postgresql.org/docs/8.0/interactive/ddl-schemas.html to learn more. #827 [dave@cherryville.org]