Tue May 24 06:55:07 UTC 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)
* 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)
* 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)
* 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