diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4636bde5..bd545869 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -33,6 +33,19 @@ on the Changelog! Bug Fixes ~~~~~~~~~ +:: + + * Update Swagger-UI to latest version to fix several security vulnerabiltiies. [peter-doggart] + * Add a warning to the docs that nested Blueprints are not supported. [peter-doggart] + +.. _section-1.0.6: +1.0.6 +----- + +.. _bug_fixes-1.0.6 +Bug Fixes +~~~~~~~~~ + :: * Update Black to 2023 version [peter-doggart] diff --git a/README.rst b/README.rst index 8668f244..793f7f90 100644 --- a/README.rst +++ b/README.rst @@ -189,7 +189,8 @@ Contributors Flask-RESTX is brought to you by @python-restx. Since early 2019 @SteadBytes, @a-luna, @j5awry, @ziirish volunteered to help @python-restx keep the project up -and running. +and running, they did so for a long time! Since the beginning of 2023, the project +is maintained by @peter-doggart with help from @ziirish. Of course everyone is welcome to contribute and we will be happy to review your PR's or answer to your issues. diff --git a/doc/scaling.rst b/doc/scaling.rst index fa757c36..7b390ba5 100644 --- a/doc/scaling.rst +++ b/doc/scaling.rst @@ -152,7 +152,8 @@ Use With Blueprints ------------------- See :doc:`flask:blueprints` in the Flask documentation for what blueprints are and why you should use them. -Here's an example of how to link an :class:`Api` up to a :class:`~flask.Blueprint`. +Here's an example of how to link an :class:`Api` up to a :class:`~flask.Blueprint`. Nested Blueprints are +not supported. .. code-block:: python diff --git a/package.json b/package.json index e7c2702d..31650e1e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flask-restx", - "version": "0.5.1-dev1", + "version": "1.0.7", "description": "Fully featured framework for fast, easy and documented API development with Flask", "repository": "python-restx/flask-restx", "keywords": [ @@ -10,7 +10,7 @@ "author": "python-restx authors", "license": "BSD-3-Clause", "dependencies": { - "swagger-ui-dist": "^3.48.0", + "swagger-ui-dist": "^4.15.0", "typeface-droid-sans": "0.0.40" } }