Update NEWS, and add regression tests for fd.o #12096 and #12403
[dbus-python-phuang.git] / NEWS
blobae4d1c7299abdc4237588d92079b4bd43dcc9446
1 D-Bus Python Bindings 0.82.3 (unreleased)
2 =========================================
4 Fixes:
6 * Out-of-tree builds with an absolute $(srcdir) can now build docs and run tests
7 * Closing private dbus.Bus no longer raises KeyError (fd.o #12096)
8 * async_err_cb(MyException()) now works (fd.o #12403)
9 * dbus.service.Object.remove_from_connection no longer claims that multiple
10   exports aren't possible (fd.o #12432)
11 * Setting _dbus_error_name as a class attribute of DBusException subclasses
12   works again
14 Deprecations:
16 * dbus.Bus(private=True) (use dbus.bus.BusConnection in new code, dbus.Bus
17   basically just adds the shared-connection behaviour)
19 D-Bus Python Bindings 0.82.2 (2007-08-01)
20 =========================================
22 Incompatibility with 0.82.1:
24 * If you pass the timeout argument to call_async or an asynchronous proxy
25   method call and expect it to be in milliseconds, you should change the
26   argument to be in seconds, and require dbus-python >= 0.82.2.
28   This feature didn't work at all in versions prior to 0.82.1, so any code
29   that works with 0.82.0 or earlier is unaffected.
31 Features:
33 * @dbus.service.method supports a rel_path_keyword argument for the benefit
34   of fallback objects, which provides the method implementation with the path
35   of the object within the exported subtree. For instance, if you have a
36   fallback object exported at /Fallback, and you call a method that has
37   rel_path_keyword='rel_path' on /Fallback and on /Fallback/Some/Where, the
38   method implementation will be called with rel_path='/' and with
39   rel_path='/Some/Where' respectively. (fd.o #11623)
41 * If you have epydoc version 3 (currently in beta), API documention is now
42   generated by default.
44 Fixes:
46 * As mentioned under "Incompatibilities" above, Connection.call_async()
47   measures timeouts in seconds, as was always intended.
48   This means that calls through a proxy object with a reply_handler and
49   error_handler will measure the timeout in seconds too.
51 * Introspect() now works on objects exported in more than one location.
52   (fd.o #11794)
54 * Building against Python 2.4 on non-Debian-derived distributions, or a
55   non-default Python version on Gentoo, should work again (revenge
56   of fd.o #11282, thanks Eyal Ben David).
58 D-Bus Python Bindings 0.82.1 (2007-07-11)
59 =========================================
61 The "double precision" release.
63 Fixes:
65 * Parse the timeout correctly in send_message_with_reply() and
66   send_message_with_reply_and_block(), fixing the use of non-default timeouts
67   (bugs.fd.o #11489)
68 * The tutorial no longer uses interactive-Python syntax, as it confused users.
69   (bugs.fd.o #11209)
70 * When making a call via a proxy object with ignore_reply=True, also get the
71   necessary introspection data asynchronously. This can avoid deadlocks in
72   some cases, such as calling methods in the same process (though this is not
73   recommended, for efficiency and sanity reasons).
74 * dbus.lowlevel exposes enough constants to write correct filter functions.
75 * We don't use dbus_watch_get_fd() (deprecated in libdbus) unless our libdbus
76   is too old to have the modern replacement, dbus_watch_get_unix_fd().
78 Deprecations:
80 * Omitting the bus argument in the BusName constructor is deprecated.
81   The fact that it uses the globally shared connection to the session bus by
82   default is uncomfortably subtle.
84 D-Bus Python Bindings 0.82.0 (2007-06-19)
85 =========================================
87 Features:
89 * dbus.service.Object can start off with no Connection or object path, and
90   become exported later. If suitable class attributes are set, objects can
91   even be exported on multiple connections, or with multiple object-paths,
92   or both.
94 * dbus.service.FallbackObject implements a whole subtree of object-path space
95   (fd.o #9295).
97 * ``@method`` accepts a parameter ``connection_keyword`` so methods can find
98   out which connection to use for any follow-up actions.
100 * ``@signal`` has a new parameter ``rel_path_keyword`` which gets the path at
101   which to emit the signal, relative to the path of the FallbackObject.
102   ``path_keyword`` is now deprecated, and will raise an exception if used
103   on an object with ``SUPPORTS_MULTIPLE_OBJECT_PATHS``, including any
104   ``FallbackObject``.
106 Fixes:
108 * In watch_name_owner, only the desired name is watched!
110 * When cleaning up signal matches, errors are ignored. This avoids using up
111   scarce pending-call allowance on dbus-daemon < 1.1, and emitting error
112   messages if we get disconnected.
114 * Signal handlers which are bound to a unique name are automatically
115   disconnected when the unique name goes away, reducing the likelihood that
116   applications will leak signal matches.
118 * Some corrections were made to the tutorial (@service and @method take a
119   parameter dbus_interface, not just interface; fd.o #11209).
121 * ${PYTHON}-config is used to get the Python include path (patch from
122   Sebastien Bacher/Ubuntu, fd.o #11282).
124 D-Bus Python Bindings 0.81.1 (4 June 2007)
125 ==========================================
127 Features:
129 * When an Error message on the bus is represented as a DBusException, the
130   error name is copied into the exception and can be retrieved by
131   get_dbus_name(). Exception handlers should use this instead of looking at
132   the stringified form of the exception, unless backwards compatibility
133   is needed.
134 * DBusException objects now get all arguments from the Error message, not
135   just the first (although there will usually only be one). Use the 'args'
136   attribute if you need to retrieve them.
137 * The Connection, BusConnection and Bus classes have a method
138   list_exported_child_objects(path: str) -> list of str, which wraps
139   dbus_connection_list_registered()
140 * You can remove objects from D-Bus before they become unreferenced, by
141   using dbus.service.Object.remove_from_connection()
142   (https://bugs.freedesktop.org/show_bug.cgi?id=10457)
144 Bug fixes:
146 * Don't deadlock when removing a signal match that tracks name-owner changes.
147   (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=426412)
148 * Include child nodes in introspection using list_exported_child_objects()
150 D-Bus Python Bindings 0.81.0 (9 May 2007)
151 =========================================
153 The 'series of tubes' release
154 -----------------------------
156 This is a feature release with support for non-bus-daemon connections
157 and improved GObject integration.
159 Features:
161 * Bus has a superclass dbus.bus.BusConnection (a connection to a bus daemon,
162   but without the shared-connection semantics or any deprecated API)
163   for the benefit of those wanting to subclass bus daemon connections
165 * BusConnection has a superclass dbus.connection.Connection (a
166   connection without a bus daemon) for use in peer-to-peer situations,
167   or distributed pseudo-bus situations without a bus daemon such as
168   Telepathy's Tubes API
170 * dbus.gobject_service.ExportedGObject is like dbus.service.Object, but
171   is also a subclass of GObject (with the necessary metaclass magic to
172   make this work). Until someone has verified that the GObject side of
173   things works as expected too, I consider this API to be potentially
174   subject to change!
176 * Connection and BusConnection have gained a number of useful methods,
177   including watch_name_owner (track name owner changes asynchronously,
178   avoiding race conditions), call_blocking and call_async (blocking and
179   asynchronous method calls without going via a proxy - note that these
180   are semi-low-level interfaces which don't do introspection), and
181   list_names, list_activatable_names and get_name_owner which are
182   simple wrappers for the corresponding org.freedesktop.DBus methods
184 * dbus.Interface (now also available at dbus.proxies.Interface)
185   and dbus.proxies.ProxyObject now have some reasonably obvious properties.
187 Deprecations:
189 * All keyword arguments called named_service are deprecated in favour of an
190   argument called bus_name (to be compatible with both older and newer
191   dbus-python, you should pass these positional arguments).
193 * The bus keyword argument to dbus.proxies.ProxyObject is deprecated in
194   favour of an argument called conn, because proxies will work on non-bus
195   connections now (again, for maximum compatibility you should use a
196   positional argument for this).
198 * No warning is raised for this, but I consider calling any remote method
199   on a ProxyObject or Interface whose name is either alllowercase or
200   lower_case_with_underscores to be deprecated, and reserve the right
201   to add properties or methods of this form in future releases - use
202   ProxyObject.get_dbus_method if you must call a remote method named in
203   this way. Methods named following TheUsualDBusConvention or
204   theJavaConvention are safe.
206 Bugfixes:
208 * Exceptions in signal handlers print a stack trace to stderr (this can
209   be redirected elsewhere with Python's logging framework). Partially
210   addresses fd.o #9980.
212 * The reserved local interface and object path are properly checked for.
214 * When you return a tuple that is not a Struct from a method with no
215   out_signature, it's interpreted as multiple return values, not a
216   single Struct (closes fd.o #10174).
218 * If send_with_reply() returns TRUE but with pending call NULL, dbus-python
219   no longer crashes. This can happen when unexpectedly disconnected.
221 * Arguments are not examined for functions declared METH_NOARGS (this is
222   unnecessary and can cause a crash).
224 Other notable changes:
226 * dbus-python uses the standard Python logging framework throughout.
227   The first time a WARNING or ERROR is generated, it will configure the
228   logging framework to output to stderr, unless you have already
229   configured logging in your application.
231 * The tutorial now advocates the use of add_signal_receiver if all you
232   want to do is listen for signals: this avoids undesired activation,
233   e.g. of Listen or Rhythmbox (!). Addresses fd.o #10743, fd.o #10568.
235 D-Bus Python Bindings 0.80.2 (13 February 2007)
236 ===============================================
237 - Fix numerous memory and reference leaks
238 - Only use -Werror if the user specifically asks for it
239 - Audit tp_dealloc callbacks to make sure they correctly preserve the
240   exception state
241 - Relicense files solely owned by Collabora Ltd. more permissively (LGPL/AFL
242   rather than GPL/AFL) - this includes the tutorial and all the C code
244 D-Bus Python Bindings 0.80.1 (24 January 2007)
245 ==============================================
246 - The "oops" release
247 - Install dbus/_version.py, so dbus.__version__ exists again
249 D-Bus Python Bindings 0.80.0 (24 January 2007)
250 ==============================================
251 - The "everything changes" release
252 - Rewrite dbus_bindings (Pyrex) as _dbus_bindings (C) - API changes!
253 - Define what's public API
254 - Move low-level but still public API to dbus.lowlevel
255 - Remove Variant class, add variant_level property on all D-Bus types
256 - Make signal matching keep working as expected when name ownership changes
257 - Use unambiguous D-Bus types when transferring from D-Bus to Python
258 - Follow well-defined rules when transferring from Python to D-Bus
259 - Add utf8_strings and byte_arrays options in various places, so a user
260   can tweak the calling conventions to be more efficient
261 - Raise RuntimeError if user tries to use a connection with no main loop
262   to do something that won't work without one
263 - Make asynchronous method calls actually asynchronous when made before
264   introspection results come back
265 - Redo main loop machinery so we can add pure-Python main loops later without
266   API breakage
267 - Allow construction of a dbus.service.Object if you don't have a BusName
268   (or even a Bus)
269 - Port introspection XML parser from libxml2 (external package) to expat
270   (included with Python)
271 - Port build system from distutils to autoconf/automake/libtool
272 - Install a header file for third-party main loop integration
273 - Make compatible with Python 2.5, including on 64-bit platforms
274 - Add docstrings throughout
275 - Add more tests and examples
276 - Add interoperability tests (which interoperate with Java)
277 - Add copyright notices!
279 D-Bus Python Bindings 0.71 (24 July 2006)
280 ==============================================================
281 - Binary modules are now installed in the correct directory
282 - Distutils exports the dbus and dbus-glib cflags
284 D-Bus Python Bindings 0.70 (17 July 2006)
285 ==============================================================
286 - First release of bindings split
287 - Move to a distutils build enviornment
288 - It is possible to now specify sender_keyword="foo", path_keyword="bar" when 
289   adding a signal listener