---- Fix a bug in the storage fixture which prevented overwriting objects by key
13.2
---- Set the logging level, unless specifically overridden, based on the ENVIRONMENT environment variable. If it is set to 'prod' you get logging.INFO, otherwise logging.DEBUG
This is just to make it so I can easily get differnet logging levels in my different environments without having to add client-specific logic
13.1
---- Loosen up the requests dependency to allow for different versions (which will still work with sepiida).
13.0
---- Add support for page[offset] and page[limit] which can be used for paging.
The major breaking change in this version is that in a response handler the self.sorts property is no longer a list of strings but instead a list of AttrDicts with a name and ascending property. This is to help keep client code from having to parse the '-' sign itself
12.3
---- Make celery backend use the same logging format as the frontend
12.2
---- Stop sharing compressionobj between ZipBuffers. This caused a state error whenever we made successive calls to the ZipBuffer to do any work without stopping the progrm. That's pretty bad.