Skip to content

Commit

Permalink
Release 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Jul 29, 2019
1 parent 045188c commit ea016fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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**!)
Expand Down
2 changes: 1 addition & 1 deletion socketio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

2 comments on commit ea016fa

@bluebrown
Copy link

@bluebrown bluebrown commented on ea016fa Aug 1, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey Miguel, I think this update broke something. I could connect without issues to a socket.io client from a node environment. Now it doesn't work anymore. Check this SO question I created:

https://stackoverflow.com/questions/57301646/electron-socket-io-client-python-socketio-aiohttp-server-fail-to-connect

I build the same mini server in node and it works without any issue. I trying also different ports than local host 0.0.0.0 and my actual network address.

Yup, doing pipenv install python-socketio=="4.2.1" removes the issue.

@miguelgrinberg
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm looking into it, this was also reported in miguelgrinberg/python-engineio#131.

Please sign in to comment.