* Add the ability to control origin wildcard sending as a wildcard seen in the allow origin header can be considered dangerous by some. * Add ``cors_exempt`` to top level package import. * Improve the typing througout. * Support Python 3.13, and 3.12 drop Python 3.8 and 3.7.
0.7.0
----------------
* Send Vary: Origin for non-CORS requests.
0.6.0
----------------
* Add the ability to exempt routes/websockets from cors. * Ensure header name comparison is based on lowercased header names. * Much improve the typing, leading to more accurate type checking. * Officially support Python 3.10, and Python 3.11. * Switch to GitHub rather than GitLab.
0.5.0
----------------
* Support Quart 0.15 as the minimum version.
0.4.0
----------------
* Support Python 3.9. * Allow the allowed origin to be a regex pattern (or iterable thereof). * Bugfix crash when sending OPTIONS with missing Access-Control-Allow-Origin header.
0.3.0
----------------
* Support Python 3.8. * Support Quart >= 0.11.1 - with this only a single origin (or wildcard) can be returned as the Access-Control-Allow-Origin header, as per the specification.