diff options
author | José Valim <jose.valim@gmail.com> | 2011-05-18 12:56:09 -0700 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-05-18 12:56:09 -0700 |
commit | 0ab21539c9d7121fe6b8b79988cf54597c52e5a3 (patch) | |
tree | 4a01e831d5fbb52c17a7c32a851d3ebb56be92bb | |
parent | 200708e7ed4928548bcd07b68e0ad8a60d8b6d86 (diff) | |
parent | c88f7e81aa19f675c06d48ee673d047282c49079 (diff) | |
download | rails-0ab21539c9d7121fe6b8b79988cf54597c52e5a3.tar.gz rails-0ab21539c9d7121fe6b8b79988cf54597c52e5a3.tar.bz2 rails-0ab21539c9d7121fe6b8b79988cf54597c52e5a3.zip |
Merge pull request #1132 from joshk/ares_changelog
Updated the ActiveResource changelog
-rw-r--r-- | activeresource/CHANGELOG | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/activeresource/CHANGELOG b/activeresource/CHANGELOG index a4e79f3d77..25f9242b98 100644 --- a/activeresource/CHANGELOG +++ b/activeresource/CHANGELOG @@ -1,11 +1,15 @@ *Rails 3.1.0 (unreleased)* -* No changes +* The default format has been changed to JSON for all requests. If you want to continue to use XML you will need to set `self.format = :xml` in the class. eg. + +class User < ActiveResource::Base + self.format = :xml +end *Rails 3.0.7 (April 18, 2011)* -*No changes. +* No changes. *Rails 3.0.6 (April 5, 2011) @@ -95,14 +99,14 @@ * Ruby 1.9 compatibility. [Jeremy Kemper] -*2.0.2* (December 16th, 2007) +*2.0.2 (December 16th, 2007)* * Added more specific exceptions for 400, 401, and 403 (all descending from ClientError so existing rescues will work) #10326 [trek] * Correct empty response handling. #10445 [seangeo] -*2.0.1* (December 7th, 2007) +*2.0.1 (December 7th, 2007)* * Don't cache net/http object so that ActiveResource is more thread-safe. Closes #10142 [kou] |