From ea016fa6a1e39cea7c73641e33114ada3b6ba45c Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Mon, 29 Jul 2019 15:08:40 +0100 Subject: [PATCH] Release 4.3.0 --- CHANGES.md | 5 +++++ socketio/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index ce955465..3abb817d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # python-socketio change log +**Release 4.3.0** - 2019-07-29 + +- Address potential websocket cross-origin attacks [#128](https://github.com/miguelgrinberg/python-engineio/issues/128) ([commit](https://github.com/miguelgrinberg/python-engineio/commit/7548f704a0a3000b7ac8a6c88796c4ae58aa9c37)) +- Documentation for the Same Origin security policy ([commit](https://github.com/miguelgrinberg/python-socketio/commit/045188c63dffeec82539354fd0498fca969e444e)) + **Release 4.2.1** - 2019-07-27 - Added rediss:// URL scheme to AsyncRedisManager [#319](https://github.com/miguelgrinberg/python-socketio/issues/319) * Added rediss:// URL scheme to AsyncRedisManager * Obeyed flake8 ([commit](https://github.com/miguelgrinberg/python-socketio/commit/0b25ff42b8927ac881be7c8ebe1785819bc4c35e)) (thanks **Dylan Anthony**!) diff --git a/socketio/__init__.py b/socketio/__init__.py index b8bc0b31..c0fff424 100644 --- a/socketio/__init__.py +++ b/socketio/__init__.py @@ -24,7 +24,7 @@ AsyncNamespace = None AsyncRedisManager = None -__version__ = '4.2.2dev' +__version__ = '4.3.0' __all__ = ['__version__', 'Client', 'Server', 'BaseManager', 'PubSubManager', 'KombuManager', 'RedisManager', 'ZmqManager', 'Namespace',