All Versions
33
Latest Version
Avg Release Cycle
97 days
Latest Release
1273 days ago
Changelog History
Page 3
Changelog History
Page 3
-
v0.5.1 Changes
- ๐ Fix for parameter with schema (do not set type=string)
-
v0.5.0 Changes
- ๐ Allow shorter syntax to set operation id:
@api.doc('my-operation')
- โ Added a shortcut to specify the expected input model:
@api.expect(my_fields)
- โ Added
title
attribute to fields - โ Added
@api.extend()
to extend models - Ensure coherence between
required
andallow_null
forNestedField
- ๐ Support list of primitive types and list of models as body
- โฌ๏ธ Upgraded to latest version of Swagger UI
- ๐ Fixes
- ๐ Allow shorter syntax to set operation id:
-
v0.4.2 Changes
- ๐จ Rename apidoc blueprint into restplus_doc to avoid collisions
-
v0.4.1 Changes
- Added
SWAGGER_VALIDATOR_URL
config parameter - โ Added
readonly
field parameter - โฌ๏ธ Upgraded to latest version of Swagger UI
- Added
-
v0.4.0 Changes
- Port to Flask-Restful 0.3+
- 0๏ธโฃ Use the default Blueprint/App mecanism
- ๐ Allow to hide some ressources or methods using
@api.doc(False)
or@api.hide
- ๐ Allow to globally customize the default operationId with the
default_id
callable parameter
-
v0.3.0 Changes
- Switch to Swagger 2.0 (Major breakage)
notes
documentation is nowdescription
nickname
documentation is nowid
- new responses declaration format
- โ Added missing
body
parameter to documentbody
input - ๐ Last release before Flask-Restful 0.3+ compatibility switch
- Switch to Swagger 2.0 (Major breakage)
-
v0.2.4 Changes
- ๐ Handle
description
andrequired
attributes onfields.List
- ๐ Handle
-
v0.2.3 Changes
- ๐ Fix custom fields registeration
-
v0.2.2 Changes
- ๐ Fix model list in declaration
-
v0.2.1 Changes
- ๐ Allow to type custom fields with
Api.model
- ๐ Handle custom fields into
fieds.List
0.2
- โฌ๏ธ Upgraded to SwaggerUI 0.2.22
- ๐ Support additional field documentation attributes:
required
,description
,enum
,min
,max
anddefault
- ๐ Initial support for model in RequestParser
- ๐ Allow to type custom fields with