2007-07-24 Richard Hughes <richard@hughsie.com>
[platform/upstream/dbus.git] / NEWS
1 D-Bus 1.1.1 (18 June 2007)
2 ==
3 - This is a development release, unless you need specific 
4   functionality please use the stable releases as API's may change
5   (though we will try hard not to)
6 - The bus daemon now generates a globally-unique ID for itself, which is available 
7   using the convenience function dbus_bus_get_id(). Use this as a unique ID 
8   for a user's session, for example.
9 - dbus_server_get_id(), dbus_connection_get_server_id() now available to access
10   the unique ID of a particular address
11 - dbus_watch_get_fd() deprecated since it had unclear cross-platform semantics.
12   dbus_watch_get_unix_fd() and dbus_watch_get_socket() replace it.
13 - support ANONYMOUS mechanism for authentication, which allows a client to 
14   authenticate as nobody in particular
15 - add API dbus_connection_set_allow_anonymous() which will allow the message
16   stream to begin if the client auths as anonymous (otherwise, the client 
17   will be dropped unless they auth as a user).
18 - the ANONYMOUS support means you can now use D-Bus (without a bus daemon) as 
19   a protocol for a network service provided to anonymous Internet or LAN  
20   clients
21 - many internal changes to better support the Windows port, though the 
22   port is still not complete in this release
23 - some improved documentation and return_if_fail checks
24 - some small bug fixes
25
26 D-Bus 1.1.0 (25 May 2007)
27 ==
28 - first release in the development series, unless you need specific 
29   functionality please use the stable releases as API's may change
30   (though we will try hard not to)
31 - better eavesdropping support now picks up reply messages for debugging
32 - .pc file now lists the directory the daemon is installed into (daemondir)
33 - GetAll call added to the properties interface
34 - support for message serialization added for use with external transports like
35   TUBES!!!
36 - many bugs fixed