summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2007-08-01 19:15:45 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2007-08-01 19:15:45 +0100
commit44f7d60ff7ea038c2e314f05f1ccbc3a76f258d5 (patch)
treed170579800c119eaf566654f3c3ddae6c363a259 /NEWS
parent5e6fa32bf95a0d17fe5ce6a4ecdcae5dd3f967d5 (diff)
Update NEWS to mention #11623 fix
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS10
1 files changed, 10 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 4b4a62d..edeea68 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,16 @@
D-Bus Python Bindings 0.82.2 (unreleased)
=========================================
+Features:
+
+* @dbus.service.method supports a rel_path_keyword argument for the benefit
+ of fallback objects, which provides the method implementation with the path
+ of the object within the exported subtree. For instance, if you have a
+ fallback object exported at /Fallback, and you call a method that has
+ rel_path_keyword='rel_path' on /Fallback and on /Fallback/Some/Where, the
+ method implementation will be called with rel_path='/' and with
+ rel_path='/Some/Where' respectively. (fd.o #11623)
+
Fixes:
* Connection.call_async() measures timeouts in seconds, as was always intended.