2021-07-17 13:51:58 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Sat Jul 17 13:51:07 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
|
|
|
|
|
|
|
|
|
- update to 0.7.0:
|
|
|
|
|
* Support for :ref:`sending and receiving file descriptors <send_recv_fds>`.
|
|
|
|
|
This is available with the blocking, threading and trio integration layers.
|
|
|
|
|
* Deprecated older integration APIs, in favour of new APIs introduced in 0.5.
|
|
|
|
|
* Fixed passing a deque in to :meth:`~.blocking.DBusConnection.filter` in the
|
|
|
|
|
blocking integration API.
|
|
|
|
|
|
2020-12-20 09:54:35 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Sun Dec 20 09:53:53 UTC 2020 - Dirk Müller <dmueller@suse.com>
|
|
|
|
|
|
|
|
|
|
- uppate to 0.6.0:
|
|
|
|
|
* New method :meth:`~.blocking.DBusConnection.recv_until_filtered` in the
|
|
|
|
|
blocking I/O integration to receive messages until one is filtered into a
|
|
|
|
|
queue.
|
|
|
|
|
* More efficient buffering of received data waiting to be parsed into D-Bus
|
|
|
|
|
messages.
|
|
|
|
|
|
2020-11-26 09:36:00 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Thu Nov 26 09:34:46 UTC 2020 - Dirk Mueller <dmueller@suse.com>
|
|
|
|
|
|
|
|
|
|
- update to 0.5.0:
|
|
|
|
|
* New common scheme for I/O integration - see Connections and Routers.
|
|
|
|
|
* Message.serialise() accepts a serial number, to serialise outgoing messages
|
|
|
|
|
without modifying the message object.
|
|
|
|
|
* Improved documentation, including API docs.
|
|
|
|
|
|
2020-03-09 16:30:52 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
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()
|
|
|
|
|
gives no data
|
|
|
|
|
|
2020-02-28 22:50:01 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Fri Feb 28 22:49:01 UTC 2020 - Dirk Mueller <dmueller@suse.com>
|
|
|
|
|
|
|
|
|
|
- update to 0.4.2:
|
|
|
|
|
The blocking ``DBusConnection`` integration class now has a ``.close()``
|
|
|
|
|
method, and can be used as a context manager::
|
|
|
|
|
|
|
|
|
|
from jeepney.integrate.blocking import connect_and_authenticate
|
|
|
|
|
with connect_and_authenticate() as connection:
|
|
|
|
|
|
2019-09-11 14:40:58 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Wed Sep 11 14:40:14 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
|
|
|
|
|
|
|
|
|
- Update to 0.4.1:
|
|
|
|
|
* Avoid using :class:`asyncio.Future` for the blocking integration.
|
|
|
|
|
* Set the 'destination' field on method return and error messages to the
|
|
|
|
|
'sender' from the parent message.
|
|
|
|
|
|
2019-06-18 12:16:38 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Tue Jun 18 12:07:09 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>
|
|
|
|
|
|
|
|
|
|
- initial packaging (version 0.4)
|