Revisions of python-stomp.py

buildservice-autocommit accepted request 1070844 from Sebastian Wagner's avatar Sebastian Wagner (sebix) (revision 28)
baserev update by copy to link target
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 27)
- 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
buildservice-autocommit accepted request 980014 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 26)
baserev update by copy to link target
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 25)
- 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)
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 24)
- Relieve python dependencies (replace ^ with >=).
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 23)
- 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)
buildservice-autocommit accepted request 886731 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 22)
baserev update by copy to link target
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 21)
- 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)
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 20)
- 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 ')
buildservice-autocommit accepted request 821979 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 19)
baserev update by copy to link target
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 18)
- 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)
buildservice-autocommit accepted request 807157 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 17)
baserev update by copy to link target
buildservice-autocommit accepted request 780377 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 15)
baserev update by copy to link target
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 14)
- 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
buildservice-autocommit accepted request 767035 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 13)
baserev update by copy to link target
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 12)
- 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)
buildservice-autocommit accepted request 761142 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 11)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 10)
- update to version 5.0.0:
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 9)
- dropped Python 2 support, not supported by the package
- update to version 4.2.0:
 * Fix for credentials exposure (https://github.com/jasonrbriggs/stomp.py/pull/244)
 * Check for ``STOMP_SKIP_HOSTNAME_SCAN`` environment variable before extending ``LOCALHOST_NAMES``
 * Remove python2 backwards compatibility
 * Update dockerfile for better local testing
 * Fix docker and travis setup, so there are consistent builds both locally and via CI
 * Drop deprecated start/stop methods from connection (issue https://github.com/jasonrbriggs/stomp.py/issues/257)
 * Fix for missing return in get_ssl (https://github.com/jasonrbriggs/stomp.py/pull/258)
 * Clear heartbeat event after heartbeat loop ends (https://github.com/jasonrbriggs/stomp.py/pull/260)
 * Update listener to move receive/message_received/heartbeat_received vars inside the 'with' blocks (https://github.com/jasonrbriggs/stomp.py/pull/252)
 * Simplify logging calls
 * Tidy up listeners (correct the behaviour of TestListener)
 * Fix problem with double-disconnect notification (ihttps://github.com/jasonrbriggs/stomp.py/issues/245)
 * Add facility for PrintingListener to write to log rather than print statements
Displaying revisions 1 - 20 of 28
openSUSE Build Service is sponsored by