This commit is contained in:
Wim Taymans 2026-05-19 10:29:10 +02:00
parent 8bb64a5f31
commit a1c1d9f9f1
2 changed files with 44 additions and 4 deletions

46
NEWS
View file

@ -1,3 +1,46 @@
# PipeWire 1.6.6 (2026-05-26)
This is a bugfix release that is API and ABI compatible with the previous
1.6.x releases.
## Highlights
- Fix a bug in the server code that could leave snap clients without
sound. (#5270)
- Relax LADSPA path loading again, absolute paths are only blocked in
unsafe cases.
- Fix a volume restore issue in filter-graph when using custom volume
controls.
- Small fixes and improvements.
## PipeWire
- Fix the meta permission check on metadata.
- Make sure we don't accept too many fds.
- Fix potential race with buffer allocation and Suspend. (#3547)
## SPA
- Relax LADSPA path loading. Absolute paths are allowed when loading
modules from a config file. They are now only blocked when loading
the pulse ladspa modules and filter-chains in nodes because those
can load ladspa plugins in other processes. (#5222)
- Fix a regression in the dither noise that was silent when no input
was available. (#5260)
- Fix volume initialization in filter-graph. (#5192)
## Pulse-server
- Fix a bug in the server code that could leave snap clients without
sound. (#5270)
- Be more careful with the stream suspend messages and only send them
when the stream is monitoring. (#5273)
- Fix monitor mode in pavucontrol.
## Tools
- Fix midifile SysEx writing in pw-cat and ensure the header is written
correctly on close.
- 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
@ -30,9 +73,6 @@ This is a bugfix release that is API and ABI compatible with the previous
## Pulse-server ## Pulse-server
- A whole bunch of extra security checks and hardening fixes. - A whole bunch of extra security checks and hardening fixes.
Older versions:
# PipeWire 1.6.4 (2026-04-22) # PipeWire 1.6.4 (2026-04-22)
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.5', version : '1.6.6',
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',