diff --git a/AUTHORS b/AUTHORS index 1a68d8c2..717aade5 100644 --- a/AUTHORS +++ b/AUTHORS @@ -12,7 +12,7 @@ LICENSE: limitations under the License. COPYRIGHT: (ordered alphabetically) - Copyright (C) 2016-2022 Red Hat, Inc. + Copyright (C) 2016-2023 Red Hat, Inc. AUTHORS: (ordered alphabetically) Chris Paulson-Ellis @@ -29,9 +29,11 @@ AUTHORS: (ordered alphabetically) Laurent Bigonville Luca Boccassi Marc-Antoine Perennou + Marcus Sundberg Michal Schmidt Mike Gilbert msizanoen1 + Stefan Agner Thomas Mühlbacher Tim Gates Tom Gundersen diff --git a/NEWS.md b/NEWS.md index b4d54871..2f586822 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,28 @@ # dbus-broker - Linux D-Bus Message Broker +## CHANGES WITH 33: + + * Fix a race-condition when starting systemd-services from the + launcher. In particular, services with guarding systemd `Condition*` + configurations might have incorrectly stalled activation attempts. + + * Return `org.freedesktop.DBus.Error.Failed` rather than a permission + error for unimplemented functionality. The human-readable part of the + error will contain "Unimplemented functionality" as explanation. + + * Improve resiliency of the launcher against runtime changes in dbus + service-files. Changes to the files will no longer affect ongoing + activation attempts. + + * Fix `GetStats()` returning two replies. + + * Fix missing origin-information in the startup log-message. + + Contributions from: David Rheinsberg, draconicfae, Marcus Sundberg, + Mike Gilbert, Stefan Agner, Tom Gundersen + + - Dußlingen, 2023-02-03 + ## CHANGES WITH 32: * Fix several bugs in the d-bus marshalling layer c-dvar, including diff --git a/meson.build b/meson.build index dc105eae..b9dd8467 100644 --- a/meson.build +++ b/meson.build @@ -10,7 +10,7 @@ project( ], license: 'Apache', meson_version: '>=0.60.0', - version: '32', + version: '33', ) cc = meson.get_compiler('c')