Skip to content

Releases: corydolphin/flask-cors

Release 4.0.0

27 Aug 22:12
40acc80
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.1.01...v4.0.0

3.1.01

02 Jun 15:38
c9c55e1
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.0.10...3.1.01

Release 3.0.10

05 Jan 15:16
9fae3e5
Compare
Choose a tag to compare
  • Adds support for PPC64 and ARM64 builds for distribution. Thanks @sreekanth370
  • Fixes warnings for invalid escape sequences Thanks @tirkarthi

Release 3.0.9

30 Aug 21:47
91babb9
Compare
Choose a tag to compare

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"

Release 3.0.8

08 Jun 20:52
Compare
Choose a tag to compare

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!

Release 3.0.7

09 Nov 21:05
13fbb1e
Compare
Choose a tag to compare

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

Release 3.0.6

12 Jun 06:18
caa7ba1
Compare
Choose a tag to compare

Manual error in release process. Identical contents at 3.0.5.

Release 3.0.5

22 May 03:39
006e1f0
Compare
Choose a tag to compare

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

Release 3.0.4

26 Apr 17:26
12b0ccf
Compare
Choose a tag to compare

Handle response.headers being None. (Fixes issue #217) Thanks @dusktreader for the improvement!

Release 3.0.3

28 Jun 16:42
Compare
Choose a tag to compare

Ensure that an Origin of '*' is never sent if supports_credentials is True (fixes Issue #202)

  • If always_send=True, and '*' is in the allowed origins, and a request is made without an Origin header, no Access-Control-Allow-Origins header will now be returned. This is breaking if you depended on it, but was a bug as it goes against the spec.