File tree Expand file tree Collapse file tree 4 files changed +16
-8
lines changed Expand file tree Collapse file tree 4 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 11Changelog
22*********
33
4- `Unreleased `_ (YYYY-MM-DD )
5- --------------------------
4+ `4.0.0 `_ (2018-01-24 )
5+ ---------------------
66
7- **Important: ** Make sure you're using Python >= 3.5 before upgrading.
7+ **Important: ** Make sure you're using Python >= 3.5.2 before upgrading.
88
99- Drop Python 3.4 support (major)
10+ - Deprecate the CLI options `-sc `, `--sslcert ` and `-sk `, `--sslkey `. Use
11+ `-tc `, `--tlscert ` and `-tk `, `--tlskey ` instead.
12+ - Add type hints
13+ - Fix discard string messages
14+ - Fix validate received client ID types correctly
15+ - Fix validate received sub-protocols correctly
16+ - Fix a race condition during the handshake when one client drops another
17+ - Cleanup of the code base
1018
1119`3.1.2 `_ (2019-01-08)
1220---------------------
@@ -78,7 +86,7 @@ support the `disconnected` message before upgrading.
7886.. _#90 : https://github.com/saltyrtc/saltyrtc-server-python/issues/90
7987.. _SaltyRTC 1.0 Protocol : https://github.com/saltyrtc/saltyrtc-meta/blob/protocol-1.0/Protocol.md
8088
81- .. _ Unreleased : https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.1 ...HEAD
89+ .. _ 4.0.0 : https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.2 ...v4.0.0
8290.. _3.1.2 : https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.1...v3.1.2
8391.. _3.1.1 : https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.0...v3.1.1
8492.. _3.1.0 : https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.0.1...v3.1.0
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Signing key: https://lgrahl.de/pub/pgp-key.txt
88 ``` bash
99 flake8 .
1010 isort -rc -c . || isort -rc -df
11- MYPYPATH=${PWD} /stubs mypy saltyrtc examples
11+ rm -rf .mypy_cache && MYPYPATH=${PWD} /stubs mypy saltyrtc examples
1212 py.test
1313 ```
1414
@@ -35,7 +35,7 @@ Signing key: https://lgrahl.de/pub/pgp-key.txt
35355 . Build source and binary distributions:
3636
3737 ``` bash
38- rm -rf build dist saltyrtc.server.egg-info
38+ rm -rf build dist saltyrtc.server.egg-info .mypy_cache
3939 find . \( -name \* .pyc -o -name \* .pyo -o -name __pycache__ \) -prune -exec rm -rf {} +
4040 python setup.py sdist bdist_wheel
4141 ```
Original file line number Diff line number Diff line change 2525
2626__author__ = 'Lennart Grahl <[email protected] >' 2727__status__ = 'Production'
28- __version__ = '3.1.2 '
28+ __version__ = '4.0.0 '
Original file line number Diff line number Diff line change 11[bdist_wheel]
2- python-tag = py34. py35.py36.py37
2+ python-tag = py35.py36.py37
33
44[easy_install]
55zip_ok = false
You can’t perform that action at this time.
0 commit comments