Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python311-stomp.py-8.1.0-1.7 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python311-stomp.py Distribution: openSUSE Tumbleweed
Version: 8.1.0 Vendor: openSUSE
Release: 1.7 Build date: Sat Mar 11 11:22:27 2023
Group: Unspecified Build host: reproducible
Size: 442880 Source RPM: python-stomp.py-8.1.0-1.7.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/jasonrbriggs/stomp.py
Summary: Python STOMP client
A Python client library for accessing messaging servers (such as ActiveMQ, Apollo or RabbitMQ) using the STOMP protocol versions 1.0, 1.1 and 1.2. It can also be run as a standalone, command-line client for testing.

Provides

Requires

License

Apache-2.0

Changelog

* Sat Mar 11 2023 Sebastian Wagner <sebix@sebix.at>
  - Update to version 8.1.0:
    - Remove ssl expiration check as per PR: #380
    - Change deprecated PROTOCOL_TLS to PROTOCOL_TLS_CLIENT
    - Mock dns responses for testing: #383
    - Support for connection over websocket: #395
    - Add default arg for try_setsockopt (#391)
    - Updating log levels (#401)
    - General tidy up of log messages
* Tue May 24 2022 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 8.0.1:
    * Change code to use cryptography lib rather than PyOpenSSL (which is not recommended for use any more - discussed here: https://github.com/jasonrbriggs/stomp.py/issues/378)
* Mon Feb 14 2022 Sebastian Wagner <sebix+novell.com@sebix.at>
  - Relieve python dependencies (replace ^ with >=).
* Sun Feb 06 2022 Sebastian Wagner <sebix+novell.com@sebix.at>
  - remove need for two source tarballs, use only the github one with pyproject macros
  - update to version 8.0.0:
    * Add support for backwards compatible CONNECT in 1.1 and 1.2 protocols (https://github.com/jasonrbriggs/stomp.py/pull/348)
    * Flip DEFAULT_SSL_VERSION to use ssl.PROTOCOL_TLS rather than ssl.PROTOCOL_TLSv1
    * Check SSL certificate for expiry if PyOpenSSL is installed
    * Remove deprecated constructor params (use_ssl, and other ssl params)
    * Minor cleanup (remove debian packaging config, since it didn't work any more)
    * Add log_to_stdout method to force command line logging to stdout (useful for testing)
    * Various updates for docker testing
    * Add mac keepalive functionality
    * Minor update to daemon attribute (https://github.com/jasonrbriggs/stomp.py/pull/361)
    * Fix issue with heartbeat listener disconnecting the socket (https://github.com/jasonrbriggs/stomp.py/issues/219 - https://github.com/jasonrbriggs/stomp.py/pull/369)
* Mon Apr 12 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 7.0.0:
    (from v6.1.1):
    * Add host bind port patch (https://github.com/jasonrbriggs/stomp.py/issues/331)
    * Tidy up based on pycharm suggestions
    * Change quotes to be consistent (" rather than ')
    (from v6.1.0):
    * Remove traceback logging (https://github.com/jasonrbriggs/stomp.py/pull/290)
    * Add support for \r\n EOL handling (as per [stomp protocol v1.2](http://stomp.github.io/stomp-specification-1.2.html#Augmented_BNF))
    * Remove heartbeat loop sleep (issue https://github.com/jasonrbriggs/stomp.py/issues/297, https://github.com/jasonrbriggs/stomp.py/pull/298)
    * Update version number using the makefile and the poetry version command
    * Add `original_headers` access to the Frame so that you can get the original value of a header even if a listener modifies it (issue: https://github.com/jasonrbriggs/stomp.py/issues/300, PR https://github.com/jasonrbriggs/stomp.py/pull/309)
    * Fix for reconnect failures (https://github.com/jasonrbriggs/stomp.py/pull/295)
    * Fix for double disconnect notifications causing issues with reconnection
    * Add 'verbose' to stomp.logging (and defaulting the value to False). Log lines which dump the stacktrace now use that variable - except for a couple of cases (set stomp.logging.verbose = True to change back to the previous behaviour)
* Mon Apr 05 2021 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 6.1.1:
    * Add host bind port patch (https://github.com/jasonrbriggs/stomp.py/issues/331)
    * Tidy up based on pycharm suggestions
    * Change quotes to be consistent (" rather than ')
* Mon Jul 13 2020 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 6.1.0:
    * Remove traceback logging (https://github.com/jasonrbriggs/stomp.py/pull/290)
    * Add support for \r\n EOL handling (as per [stomp protocol v1.2](http://stomp.github.io/stomp-specification-1.2.html#Augmented_BNF))
    * Remove heartbeat loop sleep (issue https://github.com/jasonrbriggs/stomp.py/issues/297, https://github.com/jasonrbriggs/stomp.py/pull/298)
    * Update version number using the makefile and the poetry version command
    * Add `original_headers` access to the Frame so that you can get the original value of a header even if a listener modifies it (issue: https://github.com/jasonrbriggs/stomp.py/issues/300, PR https://github.com/jasonrbriggs/stomp.py/pull/309)
    * Fix for reconnect failures (https://github.com/jasonrbriggs/stomp.py/pull/295)
    * Fix for double disconnect notifications causing issues with reconnection
    * Add 'verbose' to stomp.logging (and defaulting the value to False). Log lines which dump the stacktrace now use that variable - except for a couple of cases (set stomp.logging.verbose = True to change back to the previous behaviour)
* Tue May 19 2020 Petr Gajdos <pgajdos@suse.com>
  - %python3_only -> %python_alternative
* Tue Feb 18 2020 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 6.0.0:
    * Update to not allow a null (None) listener when calling set_listener (minor code "smell" tidy up)
    * Change get_ssl call in connect to be consistent with transport method
    * Add a sleep to the heartbeat loop
    * Minor change to make quote-use more consistent (replace single with double in most places)
    * Change build to use [Python Poetry](https://python-poetry.org/)
    * Test coverage improvement
    * Threading fix (is_alive) - https://github.com/jasonrbriggs/stomp.py/issues/286
* Sat Jan 18 2020 Sebastian Wagner <sebix+novell.com@sebix.at>
  - update to version 5.0.1:
    * Fix logging simplification code (should not be logging to root appender - https://github.com/jasonrbriggs/stomp.py/issues/275)

Files

/etc/alternatives/stomp
/usr/bin/stomp
/usr/bin/stomp-3.11
/usr/lib/python3.11/site-packages/stomp
/usr/lib/python3.11/site-packages/stomp/__init__.py
/usr/lib/python3.11/site-packages/stomp/__main__.py
/usr/lib/python3.11/site-packages/stomp/__pycache__
/usr/lib/python3.11/site-packages/stomp/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/__main__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/__main__.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/colours.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/colours.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/connect.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/connect.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/constants.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/constants.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/exception.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/exception.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/listener.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/listener.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/logging.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/logging.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/protocol.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/protocol.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/transport.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/transport.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/utils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/__pycache__/utils.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/adapter
/usr/lib/python3.11/site-packages/stomp/adapter/__init__.py
/usr/lib/python3.11/site-packages/stomp/adapter/__pycache__
/usr/lib/python3.11/site-packages/stomp/adapter/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/adapter/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/adapter/__pycache__/multicast.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/adapter/__pycache__/multicast.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/adapter/__pycache__/ws.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/stomp/adapter/__pycache__/ws.cpython-311.pyc
/usr/lib/python3.11/site-packages/stomp/adapter/multicast.py
/usr/lib/python3.11/site-packages/stomp/adapter/ws.py
/usr/lib/python3.11/site-packages/stomp/colours.py
/usr/lib/python3.11/site-packages/stomp/connect.py
/usr/lib/python3.11/site-packages/stomp/constants.py
/usr/lib/python3.11/site-packages/stomp/exception.py
/usr/lib/python3.11/site-packages/stomp/listener.py
/usr/lib/python3.11/site-packages/stomp/logging.py
/usr/lib/python3.11/site-packages/stomp/protocol.py
/usr/lib/python3.11/site-packages/stomp/transport.py
/usr/lib/python3.11/site-packages/stomp/utils.py
/usr/lib/python3.11/site-packages/stomp_py-8.1.0.dist-info
/usr/lib/python3.11/site-packages/stomp_py-8.1.0.dist-info/INSTALLER
/usr/lib/python3.11/site-packages/stomp_py-8.1.0.dist-info/LICENSE
/usr/lib/python3.11/site-packages/stomp_py-8.1.0.dist-info/METADATA
/usr/lib/python3.11/site-packages/stomp_py-8.1.0.dist-info/RECORD
/usr/lib/python3.11/site-packages/stomp_py-8.1.0.dist-info/REQUESTED
/usr/lib/python3.11/site-packages/stomp_py-8.1.0.dist-info/WHEEL
/usr/lib/python3.11/site-packages/stomp_py-8.1.0.dist-info/entry_points.txt
/usr/share/doc/packages/python311-stomp.py
/usr/share/doc/packages/python311-stomp.py/README.rst
/usr/share/licenses/python311-stomp.py
/usr/share/licenses/python311-stomp.py/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Wed May 1 23:23:10 2024