- Supports tornado >= 3.0, including latest 4.0.2
- Implemented the
delete
method in collections. - Extracted the callbacks for
all
,get
,add
and the newdelete
actions as publicCollection
methods so can be overridden to achieve custom behaviors. - Extracted public methods for the creation of requests for
all
,get
,add
and the newdelete
actions, so request creation can be overridden as well. - Collections can now overwrite the
Collection.on_error
method to customize response error handling. See GH-10. - Added the
Collection.query
method that works like theall
method allowing to pass query string parameters. See GH-12. - Now when an object is added to the collection, if the response contains a
Location
header, the object url will be the content of that header. See GH-11.
- The former
Model
andCollection
parse
method was renamed todecode
and now receive the entireresponse
object instead of thebody
andheaders
as two arguments.
- Now works with booby 0.4.0!