This commit is contained in:
Wim Taymans 2026-03-19 09:52:17 +01:00
parent 2895bd59fe
commit 255541eac3
2 changed files with 35 additions and 4 deletions

37
NEWS
View file

@ -1,3 +1,37 @@
# PipeWire 1.4.11 (2026-03-19)
This is a small bugfix release that is API and ABI compatible with
previous 1.x releases.
## Highlights
- Fix a potential invalid memory free and fd close, causing crashes.
- Improve filter-graph setup and channel handling.
- Fix a segfault in some JACK apps (Ardour) when a lot of objects are
created/destroyed because a function was not expected to return NULL.
- Some more small fixes and improvements.
## Modules
- Add priority.session to some of the sink/sources to make it possible to
change the default device. (#5125)
- Support link-local addresses in RAOP and snapcast. (#4830)
- Fix potential invalid mem and fd free in client-node. (#5162)
## SPA
- Improve filter-graph setup and reset.
- Improve filter-graph multichannel handling. (#4866)
- Fix some issues with filter-graph without channel layout. (#5084)
- Mark libcamera properties as write-only.
- Improve the JSON parser, container start ends a symbol.
## JACK
- Avoid segfaults because jack_port_by_id() returns NULL. (#3512)
- Fix jack_port_type_id() compatibility with JACK1/2.
- Fix jack-server port registration.
Older versions:
# PipeWire 1.4.10 (2026-01-16)
This is a small bugfix release that is API and ABI compatible with
@ -37,9 +71,6 @@ previous 1.x releases.
## GStreamer
- Avoid scaling overflow in the clock.
Older versions:
# PipeWire 1.4.9 (2025-10-09)
This is a small bugfix release that is API and ABI compatible with

View file

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