14
0

Commit Graph

  • d4a749894f Accepting request 1290223 from devel:languages:python main Ana Guerrero 2025-07-06 15:07:42 +00:00
  • 55d1e23131 Accepting request 1290153 from home:bmwiedemann:branches:devel:languages:python Markéta Machová 2025-07-03 12:20:36 +00:00
  • d009457564 Accepting request 1171279 from devel:languages:python Ana Guerrero 2024-05-02 21:48:02 +00:00
  • 243dbd5504 - update to 2.1.0: * Make transition from 1.x to 2.x version smoother * Fix "protocol" property * Fix publish() a bytearray payload * Fix some type annotations * Fix loop_stop() not stopping thread when called from callback * Fix some documentation errors * Add support for Unix socket * Fix flaky test Dirk Mueller 2024-05-02 08:09:07 +00:00
  • 9ada91479a Accepting request 1161559 from devel:languages:python Ana Guerrero 2024-03-26 18:26:27 +00:00
  • bd33813073 Accepting request 1161361 from home:pgajdos:python Matej Cepl 2024-03-25 21:30:51 +00:00
  • 45ade00fb8 Accepting request 937316 from devel:languages:python Dominique Leuenberger 2021-12-09 18:45:28 +00:00
  • 2f454b6e54 Accepting request 936506 from home:pgajdos:python Martin Hauke 2021-12-08 21:34:22 +00:00
  • 5784067036 Accepting request 930499 from devel:languages:python Dominique Leuenberger 2021-11-09 22:55:06 +00:00
  • 9ace271448 Accepting request 930276 from system:homeautomation:home-assistant Martin Hauke 2021-11-09 16:38:31 +00:00
  • 47e9e26273 Accepting request 836463 from devel:languages:python Dominique Leuenberger 2020-09-25 14:34:30 +00:00
  • 3440f3788a Accepting request 836411 from home:mnhauke Tomáš Chvátal 2020-09-24 08:15:48 +00:00
  • e3bc72ed3e Accepting request 744374 from devel:languages:python Dominique Leuenberger 2019-10-31 21:29:10 +00:00
  • 9bcfde80cc - Update to version 1.5.0: * Add support for clean_session on subscribe helper (gh#eclipse/paho.mqtt.python#219). * Add support for non-standard bridge connection (gh#eclipse/paho.mqtt.python#282). * Fix hang with QoS 2 message and clean_session = False. The fix replace hang with message DROP. See README for known limitation (gh#eclipse/paho.mqtt.python#284, gh#eclipse/paho.mqtt.python#286). * Fix connection establishement timeout (gh#eclipse/paho.mqtt.python#291, gh#eclipse/paho.mqtt.python#288). * Add support for connecting through a proxy (gh#eclipse/paho.mqtt.python#315). * Add MQTT v5 support (gh#eclipse/paho.mqtt.python#334). * Improve error message when sending queue is full (gh#eclipse/paho.mqtt.python#378). * Improve error handling during initialization on edge case (gh#eclipse/paho.mqtt.python#387, gh#eclipse/paho.mqtt.python#388). * Allow to specify local client port used (similar to bind_address) (gh#eclipse/paho.mqtt.python#390). * Add method is_connected to know if MQTT connection is established (gh#eclipse/paho.mqtt.python#414). * Set connection timeout to keepalive (gh#eclipse/paho.mqtt.python#425). Antoine Belvire 2019-10-31 06:51:38 +00:00
  • 014c9e2520 Accepting request 656853 from devel:languages:python Dominique Leuenberger 2018-12-11 14:48:22 +00:00
  • 9dd2521631 - Fix fdupes call Tomáš Chvátal 2018-12-10 14:29:21 +00:00
  • 2866daee95 Accepting request 632743 from devel:languages:python Dominique Leuenberger 2018-09-03 08:36:31 +00:00
  • b41d93cd80 - Update to version 1.4.0: * Fix hang when client restarted and broker resumed a session with Qos2 message. * Fix reconnection loop when a clean_session=True client reconnect while Qos2 message are being sent. * Catch and log any exception raised by user callback. * Improve support for external event loop (like asyncio). * Fix order of message with publish.multiple helper. * Fix hang on wait_for_published() on bad network. * Fix issue with Websocket payload size between 127 and 65536. * Closes socket in client destructor to avoid FD leak. * Fix uncaught timeout exception during connection. * Remove dup flag on PUBREL packet. * Use secure entropy source for Websocket mask_key (urandom). * Fix mid generation that was not thread-safe. * Replace print() statements with proper logging. * Allow insecure TLS on publish and subscribe helpers. * Allow to remove authentication (reset username to None). * Add support for the non-standard bridge mode. Antoine Belvire 2018-09-02 12:23:48 +00:00
  • c7e56e7ca5 Accepting request 580349 from devel:languages:python Dominique Leuenberger 2018-02-28 19:02:28 +00:00
  • 50a472e308 - Update to version 1.3.1: * Fix reconnect_delay_set which ignored the max_delay. * Fix crash when connection is lost while trying to send message. * Fix issue with unicode topic when some character were multi-bytes UTF-8. * Fix issue with empty Client ID with broker that doesn't support them. * Fix issue with tls_set that did not allowed cert_reqs=ssl.CERT_NONE. Antoine Belvire 2017-11-18 19:19:13 +00:00
  • 049864a0db OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-paho-mqtt?expand=0&rev=6 Antoine Belvire 2017-07-08 12:20:18 +00:00
  • 20be3994a0 - Update to version 1.3.0: * Requires Python 2.7 or 3.4+. * Remove support for SSL without SSLContext (Requires Python 2.7.9+ or 3.2+). * on_connect callback is now always called flags. Previously this * callback could accepts 3 OR 4 arguments, now it must accepts 4. * tls_insecure_set() must now be called *after* tls_set(). * Allow username and password to be zero length (as opposed to * not being present). * Allow zero length client ids when using MQTT v3.1.1. * Add SSLContext support, including SNI. * Improved support for unicode topic and binary payload. * Allow arbitrary Websocket headers and path. * Fix issue with large inbound payload over Websocket. * Add exponential delay for reconnection. * Move unit tests to pytest and tox. * Add support for standard Python logging. * Fix duplicate incoming QoS==2 message. Antoine Belvire 2017-07-08 12:19:09 +00:00
  • 8fe7eacd82 - Update to version 1.2.3: * Fix possible hang of TLS connection during handshake. * Fix issue with publish helper with TLS connection. * Fix installation issue on non-UTF-8 system. * Fix non-working Websocket over TLS connection. - Remove paho-mqtt-1.2.2-fix-readme-decoding.patch (fixed upstream). Antoine Belvire 2017-04-22 19:44:04 +00:00
  • 1b5a171968 - Update to version 1.2.2: * Fix message lost when using paho.mqtt.publish helper with QoS=0 message. - Changes from version 1.2.1: * Handle unicode username and passwords correctly. * Fix handling of invalid UTF-8 topics on incoming messages - the library now does not attempt to decode the topic - this will happen when the user accesses msg.topic in the on_message callback. If the topic is not valid UTF-8, an exception will be raised. * Fix issue with WebSocket connection in case of network issue (timeout or connection broken). * Fix issue with SSL connection, where latest incoming message may be delayed or never processed. * Fix possible message lost with publish.single and publish.multiple. - Add paho-mqtt-1.2.2-fix-readme-decoding.patch: * Fix error at build when using non-UTF8 locale. Antoine Belvire 2017-04-14 21:11:39 +00:00
  • fdd95bd0af Accepting request 481009 from home:1Antoine1:branches:devel:languages:python Jan Matejek 2017-03-20 14:37:19 +00:00
  • dbdaa07cc2 Accepting request 460773 from home:1Antoine1 Dirk Mueller 2017-03-02 07:26:07 +00:00