All Versions
29
Latest Version
Avg Release Cycle
221 days
Latest Release
-
Changelog History
Page 3
Changelog History
Page 3
-
v0.2.0 Changes
๐ 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 theApi
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 Flaskapp
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
- 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
-
v0.1.7 Changes
๐ 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).
-
v0.1.6 Changes
๐ Released on February 27th, 2013
- ๐ Update the documentation with a fuller example (https://github.com/twilio/flask-restful/pull/37)
- โก๏ธ Update the test runner to use setuptools (https://github.com/twilio/flask-restful/pull/46)
- ๐ป Don't set exception data if we have no data to set (https://github.com/twilio/flask-restful/pull/49)
- ๐ action='append' in the RequestParser always returns a list. (https://github.com/twilio/flask-restful/pull/41)
-
v0.1.5 Changes
๐ Released on Jan 9th, 2013
- ๐ Fix error handler for exceptions that do not have a message
-
v0.1.4 Changes
๐ 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
-
v0.1.3 Changes
๐ 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
-
v0.1.2 Changes
๐ Released on Nov 19th, 2012
- ๐ Fixed a bug in fields.Fixed when formatting a value of 0
-
v0.1.1 Changes
๐ Released on Nov 19th, 2012
- โ Added the Fixed field
-
v0.1 Changes
๐ First public release