Commit graph

18 commits

Author SHA1 Message Date
wiz
26abd19c3d Update to 0.104. You should read the changelog below.
dbus-glib 0.104 (2015-02-09)
============================

The “smoke and ashes” release.

Deprecations:

• Document the entire library as deprecated (Simon McVittie, Philip Withnall)

Dependencies:

• libdbus 1.8 is required
• GLib 2.32 is required

Enhancements:

• The libdbus 1.8 dependency means we can now document that
  dbus_g_thread_init() is idempotent and thread-safe
  (fd.o #54770, Simon McVittie)

• Use g_cclosure_marshal_generic for all marshalling (fd.o #64214,
  Simon McVittie)

Fixes:

• Allow timeouts to be migrated from one main context to another
  without an assertion failure (fd.o #30574, Mike Gorse)

• Don't trip a libdbus fatal warning if a Unix fd or other unsupported type
  is encountered in a message (fd.o #80557, Alban Crequy)

• Make the tests pass with newer GLib by not removing removed sources
  (fd.o #83530, Simon McVittie)

• Fix some typos in the documentation (fd.o #45686, Jiří Klimeš)

• Make the Autotools setup less awful (fd.o #58698;
  Rafał Mużyło, Simon McVittie)
2015-02-17 14:03:54 +00:00
wiz
f48fc61167 Update to 0.102:
dbus-glib 0.102 (2014-02-12)
============================

The “I've come to the conclusion that Debian should choose Russ Allbery
to be its new init system” release. [1]

Enhancements:

• Add dbus_g_method_invocation_get_connection (fd.o #55729, Dan Williams)

• Add dbus_g_connection_open_private (fd.o #55730, Dan Williams)

• Better regression tests (fd.o #23633, fd.o #40711, fd.o #41129, fd.o #51511,
  fd.o #68603; Simon McVittie, Dan Williams)

• Get rid of more dead code (fd.o #40711, Simon McVittie)

• dbus-binding-tool: check validity of names (fd.o #7909, Simon McVittie)

Fixes:

• dbus_g_value_build_g_variant: treat GValues containing (G_TYPE_STRING, NULL)
  or (G_TYPE_STRV, NULL) as empty string or empty array instead of asserting
  (fd.o #71811, Xavier Claessens)

• Upload documentation correctly (Simon McVittie)

• Fix under-linking (fd.o #68601, Simon McVittie)

[1] credit: https://twitter.com/keybuk/status/433058371290157056
2014-02-20 10:17:45 +00:00
wiz
12e30d91bd Update to 0.100.2: documentation updates. 2013-03-15 22:09:12 +00:00
drochner
a83d2eca08 update to 0.100.1
changes:
-dbus-gproxy: Verify sender of NameOwnerChanged signals to be o.f.DBus
 fixes possible security bypass (CVE-2013-0292)
-minor fixes/cleanup
2013-02-18 11:51:21 +00:00
drochner
a72efa67bd update to 0.100
no useful changelog found, apparently fixes and cleanups
(The previous version was too ols for newer Python bindings.)
2012-08-01 17:56:20 +00:00
wiz
3e3404e635 Update to 0.92:
0.92:
Senko Rašić found that this should have depended on GLib 2.26, but still
only checked for 2.24. Sorry about that. So here's a new version,
identical to 0.90 except with the GLib dependency fixed.

0.90:

Christian Dywan (6):
      Remove unused method attribute variables in introspect_interfaces
      Dereference main loop once variant recursion test is done
      Plug leak of expected_str in threaded server test
      Free path string after emission in in statemachine server example
      Always free method_c_name in dbus binding tool
      Free looked up function name in dbus binding tool

Mike Gorse (1):
      Fix switching a connection's GMainContext

Simon McVittie (18):
      Add DBusGObjectPath, DBusGSignature typedefs
      Give specialized GArrays iteration/appending support
      Actually run test/core/test-gvariant
      Test dbus_g_value_build_g_variant for various fixed arrays
      Remove gcov decoder, which hasn't worked since dbus-glib left libdbus
      replace remnants of gcov support with lcov.am from telepathy-glib
      fd.o #30428: add dbus_g_value_parse_g_variant
      dbus_g_type_specialized_map_append: document that the value contents are stolen
      dbus_g_value_build_g_variant: cope with empty arrays, maps
      Test dbus_g_value_parse_g_variant
      dbus_g_value_basic_array_parse_variant: allow the fast path to be taken
      Adjust syntax to avoid relying on array/pointer duality
      dbus_g_value_parse_variant_by_type: talk about GVariant, not GDBus, in docs
      Add dbus_g_value_parse_g_variant to gtkdoc
      output unhandled GVariantClass as ASCII if possible
      copy arrays of 'o', 'g' from GVariant without constructing a format string programmatically
      Merge branch 'gvariant'
      Merge branch 'type-names'

Will Thompson (5):
      Build test/ before its subdirs.
      Release version 0.90
      Makefile.am: Remove ChangeLog's spurious FORCE dependency
      HACKING: Fix release URL; be honest about NEWS
2010-12-12 13:17:45 +00:00
wiz
c202c59512 Update to 0.88:
0.88:
 Astone Lin (1):
       Allow duplicate object path registrations for different connections

 Christian Dywan (1):
       Refer to dbus_g_connection_flush rather than the plain dbus call

 Colin Walters (3):
       Disable test-profile on win32 for now
       Respect property access flags for writing, allow disabling for reads
       configure: Release 0.88

 Dan Williams (2):
       core: don't pass malformed error interface to dbus (rh#581794)
       Fix lookup of regular properties when shadow properties are used

 Danielle Madeley (6):
       Bumping required GLib to 2.24 for GVariant
       fd.o #28715: Add dbus_g_value_build_g_variant()
       Tests for GValue-to-GVariant
       Write a recursive equivalence function for testing the
 equivalence of GVariants
       Test test_g_variant_equivalent itself
       Support DBUS_TYPE_G_SIGNATURE

 Fridrich Strba (2):
       Use AC_CANONICAL_HOST, not _TARGET
       Don't use the identifier "interface" in public headers

 Fridrich Strba (3):
       Use EXEEXT so that we satisfy dependencies when cross-compiling
       Fix linking of tests. On windows, undefined symbols are not
 allowed and symbol lookup is sequencial
       Put the G_OS_WIN32 check where it can be defined.

 Guillaume Desmottes (1):
       add mising DBUS_TYPE_G_* to the doc

 Simon McVittie (6):
       Bug 14579: remove pending call from hash table before cancelling it
       Merge branch '14579-remove-before-cancel'
       fd.o #27958: dbus_g_error_domain_register: rewrite the documentation
       Add Libtool m4 to .gitignore
       Add various tests etc. to .gitignore
       Consolidate LDADD variables in tests/examples and make them more complete

 Will Thompson (1):
       Merge remote branch 'danni/gvalue-to-gvariant'

0.86:
 Colin Walters (8):
       Squash underscores and dashes in errors when converting to DBus errors
       Remove dbus-glib-undocumented.txt from git
       Revert "Squash underscores and dashes in errors when converting
 to DBus errors"
       Fix hyphenated error codes correctly
       [configure.ac] Use AM_SILENT_RULES if available
       Remove dbus-glib-undeclared.txt from git; it's a generated file
       [dbus-gobject.c] Trivial compiler warning fixes
       [configure] Release 0.86

 Dan Williams (2):
       core: allow duplicate property names on GInterfaces
       core: performance optimization for object info lookup

 Sven Herzberg (1):
       turn the gtk-doc documentation into buildable shape

 Will Thompson (1):
       Free errors returned by method implementations
2010-08-17 13:33:39 +00:00
wiz
82ceabf0ce Update to 0.84:
There are some compatibility fixes here, but I should call out for OS
builders commit 34636b12c62523b9db789b0fbeb3a86782debf10 where you no
longer have to pass --with-introspect-xml to configure.
2010-02-16 13:23:50 +00:00
sketch
f4cbaac968 Cleaner fix for previous, from wiz. 2009-09-18 14:51:56 +00:00
sketch
863784022f Shell fix for Solaris. 2009-09-18 13:09:02 +00:00
wiz
bd048c1636 Update to 0.82:
dbus-glib-0.82:

 Alban Crequy (1):
       Bug 18294 - Be defensive about a possibly NULL property string

 Brian Cameron (1):
       Bug 20343 - Add a man page for dbus-binding-tool

 Brian Tarricone (1):
       Bug 21753 - Correctly initialize GValues in dbus-binding-tool
 generated code

 Colin Walters (8):
       Bump configure for unstable cycle
       Use -fno-strict-aliasing by default
       Bug 14183 - Listen to NameOwnerChanged using arg0 matching
       Bug 19927 - Use const for GError * param we're not modifying
       Add missing prototype for dbus_g_connection_unregister_g_object
       Clean up some compilation warnings
       Test for git-log in Makefile.am should just be for git now
       Release 0.82

 Frederic Crozat (1):
       Fix format-security warning

 Jason Leach (1):
       Bug 21362 - Remove use of deprecated symbols

 Luis Menina (1):
       Bugg 22244 - Only include <glib.h>, not individual headers

 Marc-Andre Lureau (1):
       build: fix undefined macro: AM_PROG_LIBTOOL with recent libtool

 Mikkel Kamstrup Erlandsen (1):
       Bug 13908: make dbus_g_type_specialized_init() safe for library
 users to call

 Peter Korsgaard (1):
       add --with-dbus-binding-tool option to use an external dbus-binding-tool

 Simon McVittie (24):
       Bug 16776: teach dbus_g_method_return_error about DBUS_GERROR
       Bug #16776: add a regression test
       Remove CXX cruft from configure.ac
       configure.ac: don't check the sizes of integers
       Don't define DBUS_API_SUBJECT_TO_CHANGE
       configure.ac: Don't check endianness
       Don't check whether va_copy works
       Don't check for atomic integer ops
       Remove all sorts of libdbus cruft from configure.ac
       fd.o#20884: dbus_g_proxy_manager_replace_name_owner: don't leave
 freed memory in the hash table if the name was the owner's first
       dbus_g_type_specialized_init: make some effort at being thread-safe
       fd.o #5688: don't assert when exported object is destroyed
 *after* D-Bus connection closes
       fd.o #5688: Add a regression test
       fd.o #21219: implement unregistration of objects
       dbus-gobject: save the ObjectRegistration on each object, not
 just the path
       fd.o #21219: regression test
       Merge branch '20886-configure-cleanup'
       Merge branch '20884-proxy-manager-replace-name-owner'
       Merge branch '16776-make-dbus-errors-throwable'
       Merge part of branch '5688-survive-disconnection'
       Merge branch '5688-survive-disconnection'
       Merge branch '20716-with-dbus-binding-tool'
       fd.o #13908: silently initialize specialized types whenever required
       Merge branch '13908-autoinit'

 Sjoerd Simons (1):
       Use g_strdup instead of strdup in dbus_g_method_get_sender

 Vincent Untz (1):
       Bug 20879 - Use --skip-source argument for glib-genmarshal
2009-08-15 21:10:11 +00:00
wiz
ff113297b4 Update to 0.80:
commit b161082148a51f2a2d8a4ee85f5736791dedc276
Author: Colin Walters <walters@verbum.org>
Date:   Mon Feb 2 15:07:51 2009 -0500

    Bug 19065 - handle nested nodes in dbus-binding-tool

    Patch modified from one provided by Stian Skelstad <stian@nixia.no>.

    Split the generate_glue function explicitly into a toplevel
    function and
    one for processing recursive nodes.

 dbus/dbus-binding-tool-glib.c   |  108
 ++++++++++++++++++++++-----------------
 m4/gtk-doc.m4                   |    2 +-
 test/Makefile.am                |    5 ++
 test/core/Makefile.am           |    6 +-
 test/data/nested-introspect.xml |   10 ++++
 test/test-compile-nested.sh     |    5 ++
 6 files changed, 85 insertions(+), 51 deletions(-)

commit 64ec55f59a9ebe699e240c2a3b4d82e85f2db4a0
Author: Doug Goldstein <cardoe@gentoo.org>
Date:   Fri Jan 30 17:38:19 2009 -0500

    Bug 19325 - parallel build fix

    Signed-off-by: Colin Walters <walters@verbum.org>

 dbus/Makefile.am |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

commit 299460549e92665e5ea09d459d3985fc85d8d73c
Author: Colin Walters <walters@verbum.org>
Date:   Fri Jan 30 16:03:11 2009 -0500

    Bug 19259: Always use /etc/bash_completion.d

    This looks like what bash upstream has standardized on.

 dbus/Makefile.am |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit 78eb504bd9954918c363f357d0ab71ca85e3fc23
Author: Colin Walters <walters@verbum.org>
Date:   Tue Jan 27 18:59:01 2009 -0500

    Bug 19647: Move test-types inside run-test to avoid dep on existing
    session bus

    All tests that use DBUS_BUS_SESSION should be in run-test.sh to
    avoid introducing
    a dependency on an existing session bus.

 test/core/Makefile.am |    2 +-
 test/core/run-test.sh |    1 +
 2 files changed, 2 insertions(+), 1 deletions(-)

commit 3d25c1640d59e9770c33fafb1a12766feb6494e8
Merge: d92a441... 8868486...
Author: Colin Walters <walters@verbum.org>
Date:   Tue Jan 27 18:43:50 2009 -0500

    Merge branch 'master' of
    ssh://walters@git.freedesktop.org/git/dbus/dbus-glib

commit d92a44109e3fdc766e34b53f7ec5329e98e13909
Author: Colin Walters <walters@verbum.org>
Date:   Tue Jan 27 17:00:37 2009 -0500

    Bug 19441: Don't send replies for messages explicitly not requesting
    one

    In sending a reply when a message has the dbus_message_set_no_reply
    flag set, we can cause spurious denials logged on the system bus,
    aside
    from being inefficient.

 dbus/dbus-gobject.c |   67
 +++++++++++++++++++++++++++++++++++---------------
 1 files changed, 47 insertions(+), 20 deletions(-)

commit 88684866d06df99f89b30a07e4809369b4cb0453
Author: Colin Walters <walters@verbum.org>
Date:   Fri Dec 19 11:18:26 2008 -0500

    Add new files missed from last commit

 test/core/my-object-subclass.c           |  115
 ++++++++++++++++++++++++++++++
 test/core/my-object-subclass.h           |   33 +++++++++
 test/core/test-service-glib-subclass.xml |    8 ++
 3 files changed, 156 insertions(+), 0 deletions(-)

commit d55ffa5bbccd027caf7f2e7376b555e397a7ac3c
Author: Dan Williams <dcbw@redhat.com>
Date:   Thu Dec 18 13:09:33 2008 -0500

    Bug 19145: test cases for GetAll

    Add test cases for GetAll.

    Signed-off-by: Colin Walters <walters@verbum.org>

 test/core/Makefile.am           |   11 ++-
 test/core/test-dbus-glib.c      |  187
 +++++++++++++++++++++++++++++++++++++++
 test/core/test-service-glib.c   |    7 ++
 test/core/test-service-glib.xml |    2 +
 4 files changed, 205 insertions(+), 2 deletions(-)

commit 94d68f00d9d244de3b1d66d3cf78bb5171552311
Author: Tambet Ingo <tambet@gmail.com>
Date:   Thu Dec 18 12:09:43 2008 +0200

    Use the provided interface for org.freedesktop.DBus.Properties.GetAll
    call.

 dbus/dbus-gobject.c |   82
 ++++++++++++++++++++++++++++++++++++++++++---------
 1 files changed, 68 insertions(+), 14 deletions(-)

commit 1b150c32aa574b421161b63bb01eeeb5ad23bf3a
Author: Frederic Crozat <fcrozat@mandriva.com>
Date:   Fri Dec 5 11:16:46 2008 -0500

    Fix linking order so -Wl,--as-needed works

    Signed-off-by: Colin Walters <walters@verbum.org>

 dbus/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
2009-02-24 15:41:29 +00:00
wiz
37112c9f0e Update to 0.78:
D-Bus GLib Bindings 0.78 (04 Dec 2008)

Thanks to Robert McQueen, Philip Van Hoof, David Zeuthen, Colin
Walters, Dan Williams, Nick Welch, Tomas Pelka and others for their
contributions.

Reliability fixes:
- #16114 [patch] wincaps-to-uscore property names for GetAll()
- #16419: recursive variants demarshaling limits
- #18573: service tracker race

Other notable fixes and enhancements:
- #17329: allow hash tables to contain complex types
- #17798: add support for 'o', 'g' and 'as' in dictionaries
- #16925: bash completion for dbus-send
2009-01-07 20:57:43 +00:00
drochner
aa03a20cab update to 0.76
changes:
-some critical bugfixes
-more bugfixes
-New function to specify default timeout for calls on proxy
-Implement org.freedesktop.DBus.Properties.GetAll
2008-06-13 11:31:10 +00:00
drochner
edb70b7ae6 update to 0.74
changes:
Init threading first to stop a warning from new GLib.
Remove the XML documentation support in configure
Fix typo in _dbus_gvalue_signals_error (#10837) (Thanks to Peter Kjellerstedt)
Update GLib requirement (Closes #10889).
Document dbus-gtype-specialized
Add simple test suite for peer objects.
Support peer-to-peer proxies. (Closes #10233).
Add dbus_connection_get_g_connection.
Stop compiler warnings (Closes #10374).
Handle dbus errors which are not name has no owner
Update abstract socket test from DBus, which now cross-compiles
Rename the error quark to be unique
Update AUTHORS
2007-07-06 18:23:26 +00:00
drochner
aef01e774f update to 0.73
changes:
-Allow passing of NULL to strv out arguments
-bugfixes
-documentation improvements
-Add new API for specifying the timeout in DBusGProxy calls
-some cleanup
2007-03-13 11:11:27 +00:00
drochner
ab56302af7 update to 0.72
changes: bugfixes and cleanup
2006-11-13 15:18:45 +00:00
jmmv
e6c0bb7f76 Update to 0.71:
D-Bus GLib Bindings 0.71 (24 July 2006)
==
- Correctly installs a few missing headers
- Build was cleaned up a bit

D-Bus GLib Bindings 0.70 (17 July 2006)
==
- First release after bindings split
- dbus-binding-tool heeds org.freedesktop.DBus.GLib.ClientCSymbol C symbol
  name annotations when generating glib client bindings
- DBusGProxy can now be inherited from
- Support added for generating bindings to arrays that are represented as
  GPtrArrays rather than GArrays (ie size-variable things, such as strings,
  objects, structs, etc).
- Modification of the existing specialised types to have N type parameters
  (rather than the current 1 or 2 for arrays and dictionaries respectively).
  You can then use this to get a glib type to represent any arbitrary
  D-Bus struct type using dbus_g_type_get_struct. The only implementation of
  these types is with GValueArrays as before, but it's now possible to store
  these in arrays, emit them in signals, etc.
- New methodbus_g_connection_open provides a way to open connections to an
  arbitrary address
- Various bugs and memory leaks fixed
2006-08-23 09:45:16 +00:00