This commit is contained in:
Wim Taymans 2026-06-15 13:29:03 +02:00
parent 5e7e5d3234
commit 3b2cb4fb03
2 changed files with 40 additions and 3 deletions

41
NEWS
View file

@ -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) # PipeWire 1.6.6 (2026-05-26)
This is a bugfix release that is API and ABI compatible with the previous 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. correctly on close.
- Make sure pw-cat does not try to convert Midi to UMP. - Make sure pw-cat does not try to convert Midi to UMP.
Older versions:
# PipeWire 1.6.5 (2026-05-13) # PipeWire 1.6.5 (2026-05-13)
This is a bugfix release that is API and ABI compatible with the previous This is a bugfix release that is API and ABI compatible with the previous

View file

@ -1,5 +1,5 @@
project('pipewire', ['c' ], project('pipewire', ['c' ],
version : '1.6.6', version : '1.6.7',
license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ], license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ],
meson_version : '>= 0.61.1', meson_version : '>= 0.61.1',
default_options : [ 'warning_level=3', default_options : [ 'warning_level=3',