diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9dd3a388..6fca3061 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,23 @@ Changelog ========= +0.26.4 (2023-07-23) +------------------- + +- fix django-polymorphic empty serializer case `#1029 `_ `#542 `_ +- Add a blueprint for pydantic 2 [Carmen Alvarez] +- bugfix exclude behavior on subclassing `#1025 `_ +- relax django-filter subclassing restriction `#1022 `_ +- factor out serializer name estimation for easier modification `#976 `_ +- Fixing Pydantic Extension (`#1021 `_) [sydney-runkle] +- add Authorization header for oauth2 Bearer token [Danial] +- allow already supported lazy string in types `#982 `_ + +Breaking changes / important additions: + +- some minor bugfixes as well as improvements to ``django-filter`` and ``django-polymorphic``. +- it is now significantly easier to adapt serializer naming via ``AutoSchema`` subclassing. + 0.26.3 (2023-06-22) ------------------- diff --git a/drf_spectacular/__init__.py b/drf_spectacular/__init__.py index 49be5229..a221e3e8 100644 --- a/drf_spectacular/__init__.py +++ b/drf_spectacular/__init__.py @@ -1,6 +1,6 @@ import django -__version__ = '0.26.3' +__version__ = '0.26.4' if django.VERSION < (3, 2): default_app_config = 'drf_spectacular.apps.SpectacularConfig'