This commit is contained in:
Wim Taymans 2025-09-10 11:36:19 +02:00
parent 67a541eac5
commit 8b43ed5c91
2 changed files with 48 additions and 5 deletions

51
NEWS
View file

@ -1,3 +1,50 @@
# PipeWire 1.4.8 (2025-09-11)
This is a bugfix release that is API and ABI compatible with
previous 1.x releases.
## Highlights
- Low latency for Firewire devices using the ALSA drivers.
- Fix potential wrong pointers in memory mappings.
- Improve compatibility with Apple Home Pod Minis.
- JACK now implements the rename_callback.
- Various improvements and bug fixes.
## PipeWire
- Make sure we can only queue buffers that were previously dequeued,
to avoid some API misuse.
- Fix potential wrong pointers in memory mappings. (#4884)
- Improve the node unprepare function. (#4840)
## Modules
- Add fp_sap25 encryption to the ROAP module for compatibility with
Apple Home Pod Minis.
- Write a correct ALAC end tag in RAOP. (#4853)
- Avoid VBAN problems with too long session names.
- Fix a potential crash in the link-factory. (#4691)
## SPA
- Show correct values in the ALSA api.alsa.period-num property.
- Add better support for Razer BlackShark v3.
- Use only 3 periods in ALSA when in Pro-Audio mode. This gives
better latency on some drivers. Also set the period count before
the period size for improved compatibility. (#4785)
- Force IRQ mode for firewire devices in pro-audio mode even if
there are multiple capture and playback devices.
- Add a new flag in the sync_timeline metadata to track if a
release_point will be signaled or not. (#4885)
## JACK
- Support the rename_callback. (#4761)
## Tools
- Fix the -C option in pw-dump.
- Log more info from sndfile when opening a file failed.
Older versions:
# PipeWire 1.4.7 (2025-07-23) # PipeWire 1.4.7 (2025-07-23)
This is a bugfix release that is API and ABI compatible with This is a bugfix release that is API and ABI compatible with
@ -29,7 +76,6 @@ previous 1.x releases.
## GStreamer ## GStreamer
- Add some format validations. - Add some format validations.
# PipeWire 1.4.6 (2025-06-27) # PipeWire 1.4.6 (2025-06-27)
This is a bugfix release that is API and ABI compatible with This is a bugfix release that is API and ABI compatible with
@ -61,9 +107,6 @@ previous 1.x releases.
## GStreamer ## GStreamer
- Fix a refcount issue in the device provider. - Fix a refcount issue in the device provider.
Older versions:
# PipeWire 1.4.5 (2025-06-04) # PipeWire 1.4.5 (2025-06-04)
This is a quick bugfix release that is API and ABI compatible with This is a quick bugfix release that is API and ABI compatible with

View file

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