Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
---------

0.11.1 (unreleased)
*******************

Bug fixes:

* Fix Flask 2.x support (:issue:`229`). Thanks :user:`KyleJamesWalker` for the PR.


0.11.0 (2020-10-25)
*******************

Expand Down
4 changes: 4 additions & 0 deletions flask_apispec/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ def register_existing_resources(self):
except ValueError:
blueprint_name = None

# Skip static rules
if name == 'static':
continue

try:
self.register(rule, blueprint=blueprint_name)
except TypeError:
Expand Down