Skip to content

Latest commit

 

History

History
121 lines (83 loc) · 3.39 KB

CHANGES.md

File metadata and controls

121 lines (83 loc) · 3.39 KB

Flask-RESTful Changelog

Here you can see the full list of changes between each Flask-RESTful release.

Version 0.2.2

Released on May 5, 2013

  • JSON will be pretty-printed if you're running your app in debug mode.
  • pycrypto is now an optional dependency.

Version 0.2.1

Released on April 9, 2013

  • Use the default Flask-RESTful error handler, instead of the default Flask error handler, to handle 405 Not Allowed errors on requests to Api endpoints.

Version 0.2.0

Released on April 9, 2013

  • Flask-RESTful will no longer clobber your app's error handler; it will only handle errors that occur while handling Flask-RESTful routes. The breaking change is that 404 errors will default to using the Flask text/html error handler. Override this behavior by passing catch_all_404s=True to the Api constructor. (via @yaniv-aknin)
  • Arguments can now take location as a tuple, in case you want to specify that an argument could be passed in multiple places. (via @mindflayer)
  • Fixes a problem where passing an empty post body to a resource that expected a json argument would throw a 500.
  • Creation of the Api and initialization of the Flask app are no longer bundled together. (via @andrew-d)
  • marshal_with now works with responses that are tuples. (via @noise)
  • types.url will no longer throw a ascii decoding ValueError if you pass it Unicode characters

Version 0.1.7

Released on March 24, 2013

The first released version of 0.1.6 contained a problem with the tar.gz uploaded to PyPI. 0.1.7 contains the same changes as 0.1.6 but ensures the version you download from PyPI does not contain problems (if for example, you cached the old, broken version of 0.1.6).

Version 0.1.6

Released on February 27th, 2013

Version 0.1.5

Released on Jan 9th, 2013

  • Fix error handler for exceptions that do not have a message

Version 0.1.4

Released on Jan 8th, 2013

  • Crypto support for paging
  • Added paging helper for resources
  • Stricter arg parse
  • Flask view arguments are no longer implicitly parsed by RequestParser
  • Fixed incorrectly formatted err message

Version 0.1.3

Released on Jan 8th, 2013

  • Smart 404 error in case of slight mistakes in the URL
  • Scheme error message
  • Attribute/key accessible namespace for reqparse
  • Add Namespace with dual attribute/item access
  • Added the original requested URI in the error
  • Better message if user passes URL w/ no scheme
  • Allow chaining of add_argument calls
  • Fixed bug 21 : Endpoint name clash on different views
  • Fixed string formatting for python 2.6
  • Fixed dictionary comprehensions for python 2.6
  • Fixed r'' for python 2.6

Version 0.1.2

Released on Nov 19th, 2012

  • Fixed a bug in fields.Fixed when formatting a value of 0

Version 0.1.1

Released on Nov 19th, 2012

  • Added the Fixed field

Version 0.1

First public release