From f2ba79aa1dc917a0e5a094d2066561954fe36a8d Mon Sep 17 00:00:00 2001 From: "T. Franzel" Date: Mon, 1 Apr 2024 19:11:29 +0200 Subject: [PATCH] version bump --- CHANGELOG.rst | 24 ++++++++++++++++++++++++ drf_spectacular/__init__.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e022039e..6896f8c9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,30 @@ Changelog ========= +0.27.2 (2024-04-01) +------------------- + +- fix non-translated enum override hash `#1198 `_ +- higher order hints for @extend_schema_field (case 2) `#1174 `_ `#1212 `_ +- Add support for TypeAliasType (`#1214 `_) [igorgaming] +- DRF 3.15 counteract new assertion for tests +- Add a specific Action Wrapper for OAuth Authorization requests `#1190 `_ [Bram Esposito] +- Update SWAGGER_UI_DIST settings.rst [Alfie Day] +- fix custom http_method_names for actions `#1184 `_ +- Add support for direct usage of higher order hints `#1174 `_ +- Document `extend_schema_view` support for `@action` (`#1178 `_) [johnthagen] +- remove official 3.6 support due to upstream breakage. +- Add auth extension for django-rest-knox [Callum Gare] +- fix yaml encoder for OrderedDict objects `#1158 `_ +- fix linter warning `#1158 `_ +- Update link to redoc settings [Andrey Otto] +- Add tags support to OpenApiWebhook [Federico Bond] +- set Cross-Origin-Opener-Policy on Swagger-UI view [ftsell] + +Breaking changes / important additions: + +- Some bugfixes and some functionality gaps closed. + 0.27.1 (2024-01-18) ------------------- diff --git a/drf_spectacular/__init__.py b/drf_spectacular/__init__.py index ae663278..7b972efc 100644 --- a/drf_spectacular/__init__.py +++ b/drf_spectacular/__init__.py @@ -1,6 +1,6 @@ import django -__version__ = '0.27.1' +__version__ = '0.27.2' if django.VERSION < (3, 2): default_app_config = 'drf_spectacular.apps.SpectacularConfig'