This commit is contained in:
Wim Taymans 2024-10-07 18:48:49 +02:00
parent b38ef63028
commit 79eebcb724
2 changed files with 46 additions and 4 deletions

48
NEWS
View file

@ -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) # PipeWire 1.2.5 (2024-09-27)
This is an important bugfix release that is API and ABI compatible with the 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) - Some small doc updates. (#4272)
Older versions:
# PipeWire 1.2.4 (2024-09-19) # PipeWire 1.2.4 (2024-09-19)
This is a bugfix release that is API and ABI compatible with the This is a bugfix release that is API and ABI compatible with the

View file

@ -1,5 +1,5 @@
project('pipewire', ['c' ], project('pipewire', ['c' ],
version : '1.2.5', version : '1.2.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',