14
0
Commit Graph

15 Commits

Author SHA256 Message Date
Sebastian Wagner
ca19f7f6ff - Relieve python dependencies (replace ^ with >=).
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=24
2022-02-14 11:22:47 +00:00
Sebastian Wagner
77b770dd76 - 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)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=23
2022-02-06 08:25:10 +00:00
Sebastian Wagner
4dd3c4d2ad - 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)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=21
2021-04-12 15:27:11 +00:00
Sebastian Wagner
63477aabd1 - 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 ')

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=20
2021-04-05 19:11:18 +00:00
Sebastian Wagner
bbe84e0419 - 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)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=18
2020-07-13 19:51:25 +00:00
Tomáš Chvátal
6a81be656a Accepting request 807138 from home:pgajdos:python
submit

OBS-URL: https://build.opensuse.org/request/show/807138
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=16
2020-05-19 08:52:50 +00:00
Sebastian Wagner
6cf1a28960 - 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

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=14
2020-02-21 20:18:23 +00:00
Sebastian Wagner
c42f1ac269 - 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)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=12
2020-01-18 10:58:05 +00:00
Tomáš Chvátal
41e2980960 - update to version 5.0.0:
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=10
2020-01-06 12:57:55 +00:00
Sebastian Wagner
d4a1795fb9 - 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

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=9
2020-01-01 10:47:42 +00:00
Tomáš Chvátal
e75f2f676b Accepting request 696990 from home:mcalabkova:branches:devel:languages:python
- update to version 4.1.22
 * Infinite retry attempts
 * Terminate heartbeat thread on shutdown
 * Remove unused wait_on_receipt parameter
 * Reduce verbosity in logging to not include headers unless debug 
   level is turned on (potential security issue)
 * Fix for disconnect receipt usage in transport
 * Add __enter__/__exit__ to Connection so it can be used as a 
   context
 * Additional ssl options
- enjoy :) now without remark of tests

OBS-URL: https://build.opensuse.org/request/show/696990
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=7
2019-04-24 08:46:34 +00:00
96fa94d111 Remove superfluous devel dependency for noarch package
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=5
2018-12-04 14:07:58 +00:00
Sebastian Wagner
2bff021f9d - update to version 4.1.20:
* Fix for deadlock issue (https://github.com/jasonrbriggs/stomp.py/issues/197)
 * Fix for encoding issue (https://github.com/jasonrbriggs/stomp.py/issues/195)
 * Fix for reconnect issue (https://github.com/jasonrbriggs/stomp.py/issues/202)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=3
2018-07-07 08:59:48 +00:00
457b1ae9f9 Accepting request 577978 from devel:languages:python
- initial package for version 4.1.20

OBS-URL: https://build.opensuse.org/request/show/577978
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-stomp.py?expand=0&rev=1
2018-02-20 16:54:43 +00:00
Tomáš Chvátal
755a1378f2 Accepting request 577885 from home:sebix
can also maintain it

OBS-URL: https://build.opensuse.org/request/show/577885
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=1
2018-02-19 08:17:26 +00:00