Skip to content

Commit

Permalink
build: prepare v30 release
Browse files Browse the repository at this point in the history
Bump the version number, fill in NEWS.md, update AUTORS, and synchronize
the README information.

Signed-off-by: David Rheinsberg <david.rheinsberg@gmail.com>
  • Loading branch information
dvdhrm committed May 10, 2022
1 parent 33e0595 commit cf3b49c
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 3 deletions.
3 changes: 3 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,17 @@ AUTHORS: (ordered alphabetically)
Daniele Nicolodi <daniele@grinta.net>
David Rheinsberg <david.rheinsberg@gmail.com>
Georg Müller <georgmueller@gmx.net>
Hugo Osvaldo Barrera <hugo@barrera.io>
Jacob Alzén <jacob.alzen@gmail.com>
Khem Raj <raj.khem@gmail.com>
Laurent Bigonville <bigon@bigon.be>
Luca Boccassi <luca.boccassi@microsoft.com>
Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
Michal Schmidt <mschmidt@redhat.com>
Mike Gilbert <floppym@gentoo.org>
msizanoen1 <msizanoen@qtmlabs.xyz>
Thomas Mühlbacher <tmuehlbacher@posteo.net>
Tim Gates <tim.gates@iress.com>
Tom Gundersen <teg@jklm.no>
Yanko Kaneti <yaneti@declera.com>
Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
61 changes: 61 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,66 @@
# dbus-broker - Linux D-Bus Message Broker

## CHANGES WITH 30:

* Pull in subprojects via meson wraps. Subprojects are no longer
included via git submodules, but instead pulled in at build-time via
meson. All subprojects are converted to follow semver-style
versioning, and dbus-broker pulls them in via a versioned dependency.
All subprojects are still statically linked and considered part of
dbus-broker. Any critical update to any subproject will cause a new
release of dbus-broker, as it always did. Distributions are not
required to monitor the subprojects manually.
The official release-tarballs of dbus-broker include up-to-date
subproject sources and can be used for offline builds. Distributions
are free to use newer subproject sources for their rebuilds, and this
is explicitly supported.
Please refer to the meson documentation for details on how to manage
subprojects. You can still pull in other versions of the dependencies
by putting the sources into ./subprojects/. This change merely makes
meson pull in the newest sources via a meson-wrap-file, if, and only
if, no other sources have been provided.
This change requires `meson-0.60` or newer.

* Systemd units with failed `Condition*=` directives are now correctly
considered failed, even if they report success.

* Failed service activations now report more detailed information on
the activation failure back through the activating client. The exact
error information is now transmitted back from the launcher to the
broker and then included in the dbus error message to the client.

* Order the broker unit explicitly after `dbus.socket` to enforce the
dependency even if the broker is disable temporarily. When the unit
is enabled, this dependency is implicit due to the used alias to
`dbus.service`.

* The broker now runs in `session.slice` if applicable. The broker is
thus considered more vital to the session and thus is less likely to
be collected on resource exhaustion.

* The `GetStats()` call on `org.freedeskop.DBus.Debug` now properly
returns reply-owner statistics. Before, those were always set to 0.

* Fix incorrect resource accounting of connecting peers. Before, only
the data a peer actually transmitted/received was accounted, but the
management object of the peer itself was not. This is now fixed to
properly account all resources a peer uses.

* Fix NULL-derefs in the XML configuration parser. Empty XML tags could
have caused NULL-derefs before. This is now fixed.

* Fix a buffer-overflow in shell-quote parsing, used by the `Exec=`
line in activation service files.

* Fix the launcher to obtain service-paths from systemd directly rather
than building them manually. This will correctly resolve unit aliases
and other quirks of systemd units.

Contributions from: David Rheinsberg, Hugo Osvaldo Barrera, Luca
Boccassi, Zbigniew Jędrzejewski-Szmek, msizanoen1

- Dußlingen, 2022-05-10

## CHANGES WITH 29:

* Improve SELinux audit messages. This requires the new libselinux-3.2
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ The requirements for dbus-broker are:
```
Linux kernel >= 4.17
glibc >= 2.16
libaudit >= 3.0 (optional)
libselinux >= 3.2 (optional)
libaudit >= 3.0 (optional)
libcap-ng >= 0.6 (optional)
libselinux >= 3.2 (optional)
```

Additionally, the compatibility launcher requires:
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ project(
],
license: 'Apache',
meson_version: '>=0.60.0',
version: '29',
version: '30',
)

cc = meson.get_compiler('c')
Expand Down

0 comments on commit cf3b49c

Please sign in to comment.