15
0

- update to 0.9.0:

* Fixed subscribing to messages on the message bus with a
    path_namespace parameter (:mr:`38`)
  * Fixed authentication on (some?) BSDs, using SCM_CREDS
    (:mr:`33`), for all integrations except for asyncio
  * :class:`~.DBusAddress` and message generators will now raise
    :exc:`ValueError` if given invalid D-Bus names
  * Bindings can now be :doc:`generated <bindgen>` from D-Bus XML
    in a file with the new :option:`--file` option (:mr:`34`).
  * The async_timeout package is no longer required for running
    the tests on Python 3.11 or above (:mr:`39`).
  * Raise ConnectionResetError in blocking integration if socket.recv()

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jeepney?expand=0&rev=21
This commit is contained in:
2025-07-13 12:15:31 +00:00
committed by Git OBS Bridge
parent c0b350ad92
commit 1e58f73c3c
4 changed files with 20 additions and 5 deletions

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Sun Jul 13 12:14:17 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 0.9.0:
* Fixed subscribing to messages on the message bus with a
path_namespace parameter (:mr:`38`)
* Fixed authentication on (some?) BSDs, using SCM_CREDS
(:mr:`33`), for all integrations except for asyncio
* :class:`~.DBusAddress` and message generators will now raise
:exc:`ValueError` if given invalid D-Bus names
* Bindings can now be :doc:`generated <bindgen>` from D-Bus XML
in a file with the new :option:`--file` option (:mr:`34`).
* The async_timeout package is no longer required for running
the tests on Python 3.11 or above (:mr:`39`).
-------------------------------------------------------------------
Fri May 30 08:37:39 UTC 2025 - Markéta Machová <mmachova@suse.com>
@@ -69,7 +84,7 @@ Thu Nov 26 09:34:46 UTC 2020 - Dirk Mueller <dmueller@suse.com>
Mon Mar 9 16:22:55 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
- Update to 0.4.3
* Raise ConnectionResetError in blocking integration if socket.recv()
* Raise ConnectionResetError in blocking integration if socket.recv()
gives no data
-------------------------------------------------------------------