From 467fd4a02e37f93a8d27448eef548e247f020466 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 21 Oct 2024 10:14:03 +0200 Subject: [PATCH] 1.0.9 --- NEWS | 40 +++++++++++++++++++++++++++++++++++++--- meson.build | 2 +- 2 files changed, 38 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 13c21089d..4662fdbdc 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,40 @@ +# PipeWire 1.0.9 (2024-10-22) + +This is a bugfix release that is API and ABI compatible with previous +1.0.x releases. + +## Highlights + - Fix an fd leak and confusion in the protocol that would cause leaks and + wrong memory to be used. + - Fix bug where the mixer would not be synced correctly after selecting + a port, leaving the audio muted. (#4084) + - Backport v4l2 systemd-logind support to avoid races when starting. + (#3539 and #3960). + - Other small fixed and improvements. + + +## PipeWire + - Fix a bug where renegotiation would sometimes fail to deactivate a link. + - Fix an fd leaks and confusion in the protocol. + +## modules + - Fix a use-after-free in the rt module when stopping a thread. + +## SPA + - Fix bug where the mixer would not be synced correctly after selecting + a port, leaving the audio muted. (#4084) + - Fix a compilation issue with empty initializers. (#4317) + - Backport v4l2 systemd-logind support to avoid races when starting. + (#3539 and #3960). + - Fix a potential crash when cleaning ALSA nodes. + +## JACK + - align buffers to the max cpu alignment in order to allow more + optimizations. + +Older versions: + + # PipeWire 1.0.8 (2024-09-19) This is a small bugfix release that is API and ABI compatible with previous @@ -42,9 +79,6 @@ This is a small bugfix release that is API and ABI compatible with previous ## ALSA - Handle format renegotiation. (#3856) -Older versions: - - # PipeWire 1.0.7 (2024-05-24) This is a small bugfix release that is API and ABI compatible with previous diff --git a/meson.build b/meson.build index 255a580e9..35a5b61a7 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('pipewire', ['c' ], - version : '1.0.8', + version : '1.0.9', license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ], meson_version : '>= 0.61.1', default_options : [ 'warning_level=3',