Releases: axnsan12/drf-yasg
Releases · axnsan12/drf-yasg
1.2.2
1.2.1
1.2.0
- ADDED:
basePath
is now generated by taking into account theSCRIPT_NAME
variable and the
longest common prefix of API urls (#37, #42) - IMPROVED: removed inline scripts and styles from bundled HTML templates to increase CSP compatibility
- IMPROVED: improved validation errors and added more assertion sanity checks (#37, #40)
- IMPROVED: improved handling of
NamespaceVersioning
by excluding endpoints of differing versions (i.e. when accesing the schema view for v1, v2 endpoints will not be included in swagger)
1.1.3
- FIXED: schema view cache will now always
Vary
on theCookie
andAuthentication
(the
Vary
header was previously only added ifpublic
was set toTrue
) - this fixes issues related to Django authentication inswagger-ui
andCurrentUserDefault
values in the schema
1.1.2
1.1.1
1.1.0
- ADDED: added support for APIs versioned with
URLPathVersioning
orNamespaceVersioning
- ADDED: added ability to recursively customize schema generation using pluggable inspector classes
- ADDED: added
operation_id
parameter to@swagger_auto_schema
- ADDED: integration with
djangorestframework-camel-case
(#28) - IMPROVED: strings, arrays and integers will now have min/max validation attributes inferred from the field-level validators
- FIXED: fixed a bug that caused
title
to never be generated for Schemas;title
is now correctly populated from the field'slabel
property
1.0.6
- FIXED: Swagger UI "Try it out!" should now work with Django login
- FIXED: callable
default
values on serializer fields will now be properly called (#24, #25) - IMPROVED: updated
swagger-ui
to version 3.8.0 - IMPROVED:
PrimaryKeyRelatedField
andSlugRelatedField
will now have
appropriate types based on the related model (#26 ) - IMPROVED: mock views will now have a bound request even with
public=False
(#23)
1.0.5
- FIXED: fixed a crash caused by having read-only Serializers nested by reference
- FIXED: removed erroneous backslashes in paths when routes are generated using Django 2
path() - IMPROVED: updated
swagger-ui
to version 3.7.0 - IMPROVED:
FileField
is now generated as an URL or file name in response Schemas
(#21, thanks to @h-hirokawa)