-dbus 1.15.4 (UNRELEASED)
+dbus 1.15.4 (2023-02-08)
========================
Dependencies:
behaviour similar to Autotools otherwise. The path to the system bus
socket can be overridden with the system_socket option if required.
-New features:
+Denial of service fixes:
+
+• Fix an incorrect assertion that could be used to crash dbus-daemon or
+ other users of DBusServer prior to authentication, if libdbus was compiled
+ with assertions enabled.
+ We recommend that production builds of dbus, for example in OS distributions,
+ should be compiled with checks but without assertions.
+ (dbus#421, Ralf Habacker; thanks to Evgeny Vereshchagin)
+
+Enhancements:
+
+• D-Bus Specification 0.41:
+ · Clarify handling of /run vs. /var/run on Unix systems
+ (dbus#180, Simon McVittie)
• Add dbus_connection_set_builtin_filters_enabled(), intended to be called
by tools that use BecomeMonitor() such as dbus-monitor
strongly recommended. See test/use-as-subproject for sample code.
(dbus!368, dbus!388; Daniel Wagner)
-Denial of service fixes:
-
-• Fix an incorrect assertion that could be used to crash dbus-daemon or
- other users of DBusServer prior to authentication, if libdbus was compiled
- with assertions enabled.
- We recommend that production builds of dbus, for example in OS distributions,
- should be compiled with checks but without assertions.
- (dbus#421, Ralf Habacker; thanks to Evgeny Vereshchagin)
-
-Fixes:
+Other fixes:
• When connected to a dbus-broker, stop dbus-monitor from incorrectly
replying to Peer method calls that were sent to the dbus-broker with
m4_define([dbus_major_version], [1])
m4_define([dbus_minor_version], [15])
-m4_define([dbus_micro_version], [3])
+m4_define([dbus_micro_version], [4])
m4_define([dbus_version],
[dbus_major_version.dbus_minor_version.dbus_micro_version])
AC_INIT([dbus], [dbus_version], [https://gitlab.freedesktop.org/dbus/dbus/issues], [dbus])
#
## increment if the interface has additions, changes, removals.
-LT_CURRENT=38
+LT_CURRENT=39
## increment any time the source changes; set to
## 0 if you increment CURRENT
## increment if any interfaces have been added; set to 0
## if any interfaces have been changed or removed. removal has
## precedence over adding, so set to 0 if both happened.
-LT_AGE=35
+LT_AGE=36
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
<article id="index">
<articleinfo>
<title>D-Bus Specification</title>
- <releaseinfo>Version 0.40</releaseinfo>
- <date>2022-10-05</date>
+ <releaseinfo>Version 0.41</releaseinfo>
+ <date>2023-02-08</date>
<authorgroup>
<author>
<firstname>Havoc</firstname>
See <ulink url='http://cgit.freedesktop.org/dbus/dbus/log/doc/dbus-specification.xml'>commit log</ulink>
</revremark>
</revision>
+ <revision>
+ <revnumber>0.41</revnumber>
+ <date>2023-02-08</date>
+ <authorinitials></authorinitials>
+ <revdescription>
+ <itemizedlist>
+ <listitem><simpara>Clarify intended handling of /run vs. /var/run</simpara></listitem>
+ </itemizedlist>
+ </revdescription>
+ </revision>
<revision>
<revnumber>0.40</revnumber>
<date>2022-10-05</date>
project('dbus',
'c',
- version: '1.15.3',
+ version: '1.15.4',
meson_version: '>=0.56',
)
# http://sources.redhat.com/autobook/autobook/autobook_91.html#SEC91
## increment if the interface has additions, changes, removals.
-lt_current = 38
+lt_current = 39
## increment any time the source changes;
## set to 0 if you increment CURRENT
lt_revision = 0
## increment if any interfaces have been added;
## set to 0 if any interfaces have been changed or removed.
## removal has precedence over adding, so set to 0 if both happened.
-lt_age = 35
+lt_age = 36
soversion = (lt_current - lt_age)
version_info = '@0@.@1@.@2@'.format(soversion, lt_age, lt_revision)