Revisions of python-websocket-client

buildservice-autocommit accepted request 1132851 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 60)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 59)
- update to 1.7.0:
  * Renamed `mask` variable in ABNF to prevent name collision
    with `mask()` function (9b51f73)
  * Fixed old http import of HTTPStatus in _handshake.py
  * Add `send_text()` and `send_bytes()` to _app.py
  * Improved typehint support
  * General readability improvements, made all string
    concatenations use f-strings
  * Applied black formatting style to code (da7f286)
buildservice-autocommit accepted request 1129245 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 58)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 57)
- update to 1.6.4:
  * Fix #952, add support for HTTP 307 and 308 redirect codes
  * Fix type hints issues
  * Add support for Python beta release 3.12 in CI
  * Add maintainer email in setup.py
  * Add support for SSLKEYLOGFILE environment variable
  * Add support for callable header arguments
  * Change handling of proxy environment variables, is_secure set
    to true now prevents http_proxy from getting used
  * Fix Dispatcher keyboard interrupt. Should solve reconnect
    loop with rel
  * Fix teardown issue when ping thread is not properly ended
  * Fix double ping wait time on first ping
  * Minor type hints improvements (eda6724, 54b3013)
  * Add logic to avoid error in the case where content-length
    header does not exist, bug introduced in 1.5.2
  * Fix wsdump.py script typing, bug introduced in 1.5.2
  * Add type hints
  * Fix pytype errors
  * Fix args passed to logging function
  * Standardize PEP 3101 formatting (c6a445f)
  * Add more verbose exception for unsuccessful handshake
buildservice-autocommit accepted request 1120126 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 56)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 55)
- Update in SLE-15 (bsc#1176785, jsc#ECO-3105, jsc#PM-2352)
buildservice-autocommit accepted request 1117672 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 54)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 53)
- Update to version 1.4.2
- Update to version 1.4.1

- Update in SLE-15 (bsc#1199282, jsc#PM-3243, jsc#SLE-24629)
- Clean up spec file
buildservice-autocommit accepted request 1085984 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 52)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 51)
- update to 1.5.1:
  * Fix logic bug that can cause disconnects
  * Refactor and improve ping/pong logic to resolve several
    issues, including an infinite loop issue during reconnect
  * Fix issue where `skip_utf8_validation = True` is ignored
  * Fix issue where sslopt `is_ssl` is ignored
  * Downgrade "websocket connected" message from logging.warning
    to logging.info
buildservice-autocommit accepted request 1082398 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 50)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1081695 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 49)
SR for python stack proposal
buildservice-autocommit accepted request 1046154 from Robert Schweikert's avatar Robert Schweikert (rjschwei) (revision 48)
baserev update by copy to link target
Robert Schweikert's avatar Robert Schweikert (rjschwei) accepted request 1035656 from Petr Gajdos's avatar Petr Gajdos (pgajdos) (revision 47)
- python-six is not required
buildservice-autocommit accepted request 1035647 from Robert Schweikert's avatar Robert Schweikert (rjschwei) (revision 46)
baserev update by copy to link target
Robert Schweikert's avatar Robert Schweikert (rjschwei) accepted request 1034939 from Yogalakshmi Arunachalam's avatar Yogalakshmi Arunachalam (yarunachalam) (revision 45)
- Update to version 1.4.2 
  - create_dispatcher is determined by URL ws/wss, NOT by presence of sslopt args, to maintain consistency (#875)
  - Remove redundant key generation line (#864)
  - Updated docs to fix old links and updated CI to include Python 3.11
buildservice-autocommit accepted request 1030886 from Robert Schweikert's avatar Robert Schweikert (rjschwei) (revision 44)
baserev update by copy to link target
Robert Schweikert's avatar Robert Schweikert (rjschwei) accepted request 1009864 from Yogalakshmi Arunachalam's avatar Yogalakshmi Arunachalam (yarunachalam) (revision 43)
- Update to version 1.4.1 
  - Fix stack growth bug when `run_forever` reconnects (#854)
  - Add doctest CI for sphinx docs code examples (d150099)
  - General docs improvements
buildservice-autocommit accepted request 969543 from Robert Schweikert's avatar Robert Schweikert (rjschwei) (revision 42)
baserev update by copy to link target
Robert Schweikert's avatar Robert Schweikert (rjschwei) accepted request 969450 from John Paul Adrian Glaubitz's avatar John Paul Adrian Glaubitz (glaubitz) (revision 41)
- Update to version 1.3.2
  * Add support for pre-initialized stream socket in new WebSocketApp (#804)
  * Remove rel.saferead() in examples (f0bf03d)
  * Increase scope of linting checks (dca4022)
  * Start adding type hints (a8a4099)
- from version 1.3.1
  * Fix 10 year old bug and improve dispatcher handling
    for run_forever (#795)
  * Fix run_forever to never return None, only
    return True or False, and add two tests (#788)
  * Remove Python 3.6 support, EOL in Dec 2021
- from version 1.3.0
  * BREAKING: Set Origin header to use https:// scheme
    when wss:// WebSocket URL is passed (#787)
  * Replace deprecated/broken WebSocket URLs with working ones (6ad5197)
  * Add documentation referencing rel for automatic
    reconnection with run_forever()
  * Add missing opcodes 1012, 1013 (#771)
  * Add errno.ENETUNREACH to improve error handling (da1b050)
  * Minor documentation improvements and typo fixes
- from version 1.2.3
  * Fix broken run_forever() functionality (#769)
- from version 1.2.2
  * Migrate wsdump script in setup.py from scripts to newer entry_points (#763)
  * Add support for ssl.SSLContext for arbitrary SSL parameters (#762)
  * Remove keep_running variable (#752)
  * Remove HAVE_CONTEXT_CHECK_HOSTNAME variable (dac1692)
  * Replace deprecated ssl.PROTOCOL_TLS with ssl.PROTOCOL_TLS_CLIENT (#760)
  * Simplify code and improve Python 3 support (#751, #750, #746)
  * Fill default license template fields (#748)
Displaying revisions 1 - 20 of 60
openSUSE Build Service is sponsored by