Releases: hfaran/Tornado-JSON
Releases · hfaran/Tornado-JSON
1.3.4
- Fix regression in 1.3.3
- Pin versions for supported set of dependencies
1.3.3
- Support Tornado >= 5.0 and Python 3.6
1.3.2
- Recovery release for PyPI (1.3.1 had an incomplete module included accidentally)
1.3.1
- Minor updates with versioning
1.3.0
- Added use_defaults support for schema.validate
- Added support for custom validators
- Bugfix: Fixed api_doc_gen duplicated entries
- Bugfix: Remove pyclbr and use inspect instead for module introspection
1.2.2
generate_docs
parameter added to Application
for optional API documentation generation
1.2.1
- arg_pattern now contains hyphen
- Handle case where server would crash when generating docs for methods with
no docstring
- Add support for tornado==3.x.x gen.coroutine
- Add format_checker kwarg to schema.validate
1.2.0
- Implement
tornado_json.gen.coroutine
- As a fix for #59 , a custom wrapper for the
tornado.gen.coroutine
wrapper has been implemented. This was necessary as we lose the original argspec through it because the wrapper simply has (*args, **kwargs)
as its signature. Here, we annotate the original argspec as an attribute to the wrapper so it can be referenced later by Tornado-JSON when generating routes.
1.1.0
- Handle routes as
URLSpec
and >2-tuple in api_doc_gen
- Refactor
api_doc_gen
; now has public function get_api_doc
for use
1.0.1
- Several administrative project changes