aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice
diff options
context:
space:
mode:
authorLeon Breedt <bitserf@gmail.com>2005-03-02 10:47:25 +0000
committerLeon Breedt <bitserf@gmail.com>2005-03-02 10:47:25 +0000
commit7093c9aaab514398e757cb22a44d134cbab95068 (patch)
tree4b7ac3f801631dd7a47e2bdc51aa490882913916 /actionwebservice
parent654370d9ad7a66f3dd9a66da78b888ab79ea0ae7 (diff)
downloadrails-7093c9aaab514398e757cb22a44d134cbab95068.tar.gz
rails-7093c9aaab514398e757cb22a44d134cbab95068.tar.bz2
rails-7093c9aaab514398e757cb22a44d134cbab95068.zip
add missing entry for #allow_active_record_expects
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@823 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice')
-rw-r--r--actionwebservice/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG
index b2fe8fe3de..77fd903407 100644
--- a/actionwebservice/CHANGELOG
+++ b/actionwebservice/CHANGELOG
@@ -1,5 +1,7 @@
*0.6.0* (Unreleased)
+* Add <tt>ActionWebService::API::Base.allow_active_record_expects</tt> option, with a default of false. Setting this to true will allow specifying ActiveRecord::Base model classes in <tt>:expects</tt>. API writers should take care to validate the received ActiveRecord model objects when turning it on, and/or have an authentication mechanism in place to reduce the security risk.
+
* Improve error message reporting. Bugs in either AWS or the web service itself will send back a protocol-specific error report message if possible, otherwise, provide as much detail as possible.
* Removed type checking of received parameters, and perform casting for XML-RPC if possible, but fallback to the received parameters if casting fails, closes #677