CHANGELOG 6.6 KB
Newer Older
1 2
*SVN*

3 4 5 6
* Handle string and symbol param keys when splitting params into prefix params and query params.

    Comment.find(:all, :params => { :article_id => 5, :page => 2 }) or Comment.find(:all, :params => { 'article_id' => 5, :page => 2 })

7 8 9 10 11 12 13 14 15
* Added find-one with symbol [DHH]. Example: Person.find(:one, :from => :leader) # => GET /people/leader.xml

* BACKWARDS INCOMPATIBLE: Changed the finder API to be more extensible with :params and more strict usage of scopes [DHH]. Changes:

    Person.find(:all, :title => "CEO")      ...becomes: Person.find(:all, :params => { :title => "CEO" })
    Person.find(:managers)                  ...becomes: Person.find(:all, :from => :managers)
    Person.find("/companies/1/manager.xml") ...becomes: Person.find(:one, :from => "/companies/1/manager.xml")

* Add support for setting custom headers per Active Resource model [Rick]
16 17

  class Project
18
    headers['X-Token'] = 'foo'
19 20 21 22 23
  end
  
  # makes the GET request with the custom X-Token header
  Project.find(:all)

24 25 26 27 28 29
* Added find-by-path options to ActiveResource::Base.find [DHH]. Examples:

    employees = Person.find(:all, :from => "/companies/1/people.xml") # => GET /companies/1/people.xml
    manager   = Person.find("/companies/1/manager.xml")               # => GET /companies/1/manager.xml


30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
* Added support for using classes from within a single nested module [DHH]. Example:

    module Highrise
      class Note < ActiveResource::Base
        self.site = "http://37s.sunrise.i:3000"
      end

      class Comment < ActiveResource::Base
        self.site = "http://37s.sunrise.i:3000"
      end
    end

  assert_kind_of Highrise::Comment, Note.find(1).comments.first
    

45 46 47 48 49 50 51 52 53 54 55
* Added load_attributes_from_response as a way of loading attributes from other responses than just create [DHH]

    class Highrise::Task < ActiveResource::Base
      def complete
        load_attributes_from_response(post(:complete))
      end
    end

  ...will set "done_at" when complete is called.


56 57 58 59 60
* Added support for calling custom methods #6979 [rwdaigle]

    Person.find(:managers)    # => GET /people/managers.xml
    Kase.find(1).post(:close) # => POST /kases/1/close.xml

61 62 63 64 65 66 67
* Remove explicit prefix_options parameter for ActiveResource::Base#initialize. [Rick]
  ActiveResource splits the prefix_options from it automatically.

* Allow ActiveResource::Base.delete with custom prefix. [Rick]

* Add ActiveResource::Base#dup [Rick]

68 69 70 71 72 73
* Fixed constant warning when fetching the same object multiple times [DHH]

* Added that saves which get a body response (and not just a 201) will use that response to update themselves [DHH]

* Disregard namespaces from the default element name, so Highrise::Person will just try to fetch from "/people", not "/highrise/people" [DHH]

74 75
* Allow array and hash query parameters.  #7756 [Greg Spurrier]

76 77
* Loading a resource preserves its prefix_options.  #7353 [Ryan Daigle]

78 79
* Carry over the convenience of #create from ActiveRecord.  Closes #7340.  [Ryan Daigle]

80 81
* Increase ActiveResource::Base test coverage.  Closes #7173, #7174 [Rich Collins]

82 83
* Interpret 422 Unprocessable Entity as ResourceInvalid.  #7097 [dkubb]

84 85
* Mega documentation patches. #7025, #7069 [rwdaigle]

86 87
* Base.exists?(id, options) and Base#exists? check whether the resource is found.  #6970 [rwdaigle]

88 89 90 91
* Query string support.  [untext, Jeremy Kemper]
    # GET /forums/1/topics.xml?sort=created_at
    Topic.find(:all, :forum_id => 1, :sort => 'created_at')

92 93
* Base#==, eql?, and hash methods. == returns true if its argument is identical to self or if it's an instance of the same class, is not new?, and has the same id. eql? is an alias for ==. hash delegates to id.  [Jeremy Kemper]

94
* Allow subclassed resources to share the site info [Rick, Jeremy Kemper]
95
d
96 97 98
    class BeastResource < ActiveResource::Base
      self.site = 'http://beast.caboo.se'
    end
99

100 101 102 103
    class Forum < BeastResource
      # taken from BeastResource
      # self.site = 'http://beast.caboo.se'
    end
104

105
    class Topic < BeastResource
106
      self.site += '/forums/:forum_id'
107 108
    end

109 110
* Fix issues with ActiveResource collection handling.  Closes #6291. [bmilekic]

111 112
* Use attr_accessor_with_default to dry up attribute initialization. References #6538. [Stuart Halloway]

113 114
* Add basic logging support for logging outgoing requests. [Jamis Buck]

115 116
* Add Base.delete for deleting resources without having to instantiate them first. [Jamis Buck]

117 118
* Make #save behavior mimic AR::Base#save (true on success, false on failure). [Jamis Buck]

119 120
* Add Basic HTTP Authentication to ActiveResource (closes #6305). [jonathan]

121 122 123
* Extracted #id_from_response as an entry point for customizing how a created resource gets its own ID.
  By default, it extracts from the Location response header.

124 125 126 127 128 129 130 131 132
* Optimistic locking: raise ActiveResource::ResourceConflict on 409 Conflict response. [Jeremy Kemper]

    # Example controller action
    def update
      @person.save!
    rescue ActiveRecord::StaleObjectError
      render :xml => @person.reload.to_xml, :status => '409 Conflict'
    end

133 134 135 136 137 138
* Basic validation support [Rick Olson]

  Parses the xml response of ActiveRecord::Errors#to_xml with a similar interface to ActiveRecord::Errors.  
  
    render :xml => @person.errors.to_xml, :status => '400 Validation Error'

139 140 141 142 143 144 145 146 147
* Deep hashes are converted into collections of resources.  [Jeremy Kemper]
    Person.new :name => 'Bob',
               :address => { :id => 1, :city => 'Portland' },
               :contacts => [{ :id => 1 }, { :id => 2 }]
  Looks for Address and Contact resources and creates them if unavailable.
  So clients can fetch a complex resource in a single request if you e.g.
    render :xml => @person.to_xml(:include => [:address, :contacts])
  in your controller action.

148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
* Major updates [Rick Olson]

  * Add full support for find/create/update/destroy
  * Add support for specifying prefixes.
  * Allow overriding of element_name, collection_name, and primary key
  * Provide simpler HTTP mock interface for testing
  
    # rails routing code
    map.resources :posts do |post|
      post.resources :comments
    end
    
    # ActiveResources
    class Post < ActiveResource::Base
      self.site = "http://37s.sunrise.i:3000/"
    end

    class Comment < ActiveResource::Base
      self.site = "http://37s.sunrise.i:3000/posts/:post_id/"
    end
    
    @post     = Post.find 5
    @comments = Comment.find :all, :post_id => @post.id

    @comment  = Comment.new({:body => 'hello world'}, {:post_id => @post.id})
    @comment.save

175
* Base.site= accepts URIs. 200...400 are valid response codes. PUT and POST request bodies default to ''. [Jeremy Kemper]
J
Jeremy Kemper 已提交
176

177
* Initial checkin: object-oriented client for restful HTTP resources which follow the Rails convention. [DHH]