Releases: JamalZeynalov/swagger-coverage-py
Releases · JamalZeynalov/swagger-coverage-py
2.2.10
Fix errors when 'data' is passed instead of json
Version 2.2.9
Full Changelog: v.2.2.8...v.2.2.9
2.2.8
What's Changed
- Add converting Unicode symbols for path and query parameters by @VyacheslavStepanov in #14
New Contributors
- @VyacheslavStepanov made their first contribution in #14
Full Changelog: v.2.2.7...v.2.2.8
"disable" option is added
Now it's possible to skip requests recording. No files will be saved to "swagger-coverage-output" directory, if API_COVERAGE_REPORTS_DISABLED is set to True.
Update to latest cmd tool and fixes
- Fix issue. HTML report was not generated if not string values were passed into path/query params
- Update command line tool to the latest version
Support schema in YAML format
v.2.2.2 Update package version
Python package
v.2.1.3 update README.md
Publish python package
v.2.1.2 v2.1.2
Support both OpenAPI and Swagger formats
By default, the library generates files in "OpenAPI 3.0.0" format. But you can specify "swagger" format if your API docs are in this format.
Example:
API_DOCS_TYPE="swagger" # Note: "openapi" is default type of API docs
API_DOCS_VERSION="2.0" # Note: "3.0.0" is default version of API docsSupport OpenAPI 3.0.0
What's Changed
- Support OpenAPI 3.0.0 by @JamalZeynalov