This is not a backwards compatible change.
First OSS release
features - dispatching handler for individual HTTP methods - (optional) jsonschema validation for endpoints - automatic wrapping of responses
This is not a backwards compatible change.
features - now json is divided into ["json"]["body"] for post body and ["json"]["query"] for json loaded query params - jsonschema validation gets whole ["json"] object so remember to change your schemas/code!!!
bugfixes - empty body and queryStringParameters are tolerated
features - query parameters arrays are now supported - array items are tried casted to numbers, defaulted to strings (see last README example) - more tests
features - builds and deploys automatically using travis to pypi and github releases
features - An error handler can now be passed when creating a handler. Any unhandled error will be re-raise when None is passed
features - added Werkzeug path parameters
features - added support for custom domains
This is not a backwards compatible change.
features - removed support for python 3.3
features - Fixed issue with custom domains and path variables
features - Return None only if the value of the variable is None. This will allow to return empty strings.