Flask Cors Versions Save

Cross Origin Resource Sharing ( CORS ) support for Flask

4.0.0

8 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/corydolphin/flask-cors/compare/3.1.01...v4.0.0

v4.0.0

10 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/corydolphin/flask-cors/compare/3.1.01...v4.0.0

v4.0.0a

10 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/corydolphin/flask-cors/compare/3.1.01...v4.0.0a

3.1.01

11 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/corydolphin/flask-cors/compare/3.0.10...3.1.01

3.0.10

3 years ago
  • Adds support for PPC64 and ARM64 builds for distribution. Thanks @sreekanth370
  • Fixes warnings for invalid escape sequences Thanks @tirkarthi

3.0.9

3 years ago

Security

  • Escape path before evaluating resource rules (thanks @praetorian-colby-morgan). Prior to this, flask-cors incorrectly evaluated CORS resource matching before path expansion. E.g. "/api/../foo.txt" would incorrectly match resources for "/api/*" whereas the path actually expands simply to "/foo.txt"

3.0.8

4 years ago

Fixes DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working

Thank you @juanmaneo and @jdevera!

3.0.7

5 years ago

Updated logging.warn to logging.warning (#234) Thanks Vaibhav

3.0.6

5 years ago

Manual error in release process. Identical contents at 3.0.5.

3.0.5

5 years ago

Fixes incorrect handling of regexes containg '[', and a few other special characters. https://github.com/corydolphin/flask-cors/issues/212