From 79eebcb72490484e25208971ca15b9e0ea25bd95 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 7 Oct 2024 18:48:49 +0200 Subject: [PATCH] 1.2.6 --- NEWS | 48 +++++++++++++++++++++++++++++++++++++++++++++--- meson.build | 2 +- 2 files changed, 46 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index faa1fb151..a7423de78 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,48 @@ +# PipeWire 1.2.6 (2024-10-23) + +This is a bugfix release that is API and ABI compatible with the previous +1.2.x and 1.0.x releases. + +## Highlights + - The filter-chain param changes were not aggregated correctly, causing some + param changes to be ignored. (#4331) + - Clear the JACK io ports correctly when stopping to avoid crashes. (#4337) + - Some more small fixes and improvements. + + +## PipeWire + - Stream states are now updated based on the underlying node state. + - Exported nodes now have their state change done synchronously so that the + server can immediately start the driver and avoid some initial xruns. + - Improve stream flush handling and improve the docs. + - Don't send mix_info to destroyed ports to avoid some errors in the + JACK clients. + +## Modules + - The filter-chain param changes were not aggregated correctly, causing some + param changes to be ignored. (#4331) + - The filter-chain now correctly optimizes unlinked nodes in all cases. + +## SPA + - ALSA PCM node properties are now no longer overwritten with card properties. + (#4135) + - Increase the adapter retry count to avoid xruns in some cases. (#4334) + - Fix potential crash in cleanup of ALSA nodes. + +## Bluetooth + - Fix a crash with broadcast sinks. + - Improve compatibility with Phonak hearing aids. + - Don't exit when DBus goes down. + +## JACK + - Clear the io ports correctly when stopping to avoid crashes. (#4337) + +## Docs + - Backport docs from master. + +Older versions: + + # PipeWire 1.2.5 (2024-09-27) This is an important bugfix release that is API and ABI compatible with the @@ -44,9 +89,6 @@ previous 1.2.x and 1.0.x releases. - Some small doc updates. (#4272) -Older versions: - - # PipeWire 1.2.4 (2024-09-19) This is a bugfix release that is API and ABI compatible with the diff --git a/meson.build b/meson.build index 83a2e8de6..691355ef2 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('pipewire', ['c' ], - version : '1.2.5', + version : '1.2.6', license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ], meson_version : '>= 0.61.1', default_options : [ 'warning_level=3',