From 3b2cb4fb037bf6033b87d3c87ee917b2f686d309 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 15 Jun 2026 13:29:03 +0200 Subject: [PATCH] 1.6.7 --- NEWS | 41 +++++++++++++++++++++++++++++++++++++++-- meson.build | 2 +- 2 files changed, 40 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 1831abd59..75cf7c657 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,42 @@ +# PipeWire 1.6.7 (2026-06-18) + +This is a bugfix release that is API and ABI compatible with the previous +1.6.x releases. + +## Highlights + - Fix a race issue where some ports would stay silent after a rate change. + - Fix sync regressions between ALSA cards in some cases. + - Small fixes and improvements. + + +## PipeWire + - Fix a scheduler regression where some driver nodes would not run + correctly and cause sync issues. (#5210) + - Fix a race issue with suspend on samplerate changes. It can cause ports + to be silent. (#3547) + +## Modules + - There are some locking issues in the RT portal, for now reduce the + DBus timeout to something more sane. Also disable portal RT for + pipewire and the pulse server. These are not usually run in a sandbox + and can go directly to RTKit. + - Fix potential incorrect delay in combine-stream. + +## SPA + - Fix a regression in ALSA period_size calculations. For non-power-of-2 + periods, it would in some cases round down a a power-of-2, causing a + mismatch between requested and configured period_size. (#5302) + - Fix a potential segfault when removing a card because of bad ALSA api + usage. (#5255) + - Emit a route param update when card properties change. Otherwise, jack + port updates are not always reflected correctly. + +## Misc + - Make sure we don't deal with uninitialized spa_dict. + + +Older versions: + # PipeWire 1.6.6 (2026-05-26) This is a bugfix release that is API and ABI compatible with the previous @@ -39,8 +78,6 @@ This is a bugfix release that is API and ABI compatible with the previous correctly on close. - Make sure pw-cat does not try to convert Midi to UMP. -Older versions: - # PipeWire 1.6.5 (2026-05-13) This is a bugfix release that is API and ABI compatible with the previous diff --git a/meson.build b/meson.build index a9cc5d6d8..aa3cbd6b5 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('pipewire', ['c' ], - version : '1.6.6', + version : '1.6.7', license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ], meson_version : '>= 0.61.1', default_options : [ 'warning_level=3',