=== release 1.26.10 ===

2025-12-25 15:44:26 +0100  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.26.10

2025-12-05 11:19:25 +0200  Sebastian Dröge <sebastian@centricular.com>

	* libs/gst/base/gstbasesrc.c:
	  basesrc: Fix decide allocation fallback
	  Fallback to generic pool, even if the change to the config was validated. Pools
	  may have other restrictions that may render them unusable.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10304>

2025-12-04 16:48:37 -0500  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* libs/gst/base/gstbasetransform.c:
	  basetransform: Fix decide allocation fallback
	  Fallback to generic pool, even if the change to the config was validated. Pools
	  may have other restrictions that may render them unusable.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10304>

2025-12-02 18:58:29 +0100  Christoph Reiter <reiter.christoph@gmail.com>

	* plugins/elements/gstfilesink.c:
	  gstfilesink: fix the build with recent mingw-w64
	  The build fails with:
	  /clang64/include/unistd.h:59:5: error: conflicting types for '_chsize'
	  59 | int ftruncate(int, off_t)
	  since ftruncate is redefined before unistd.h is included.
	  Avoid it by including the system headers first.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10277>

2025-11-24 19:42:58 +0900  Haejung Hwang <haejung.hwang@lge.com>

	* gst/gstpipeline.c:
	  gstpipeline: Improve resource cleanup logic for clock objects
	  Clarify and strengthen object release handling by:
	  -Use gst_clear_object() for NULL-safe unref and to avoid dangling pointers
	  -Ensure proper refcounting when reusing cur_clock
	  -Limit clock scope to where it’s needed for base-time and clock recalculation
	  -Fix memory leak in error path by releasing cur_clock
	  Reason:
	  This change makes cleanup more predictable and prevents scenarios where two
	  pointers could reference the same object, ensuring each resource is released
	  only once and pointers are invalidated after use. This improves robustness and
	  maintains consistent object lifetime management
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10270>

2025-12-01 17:32:18 +0000  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.26.9

=== release 1.26.9 ===

2025-12-01 17:27:07 +0000  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.26.9

2025-11-27 10:23:25 -0500  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* gst/gstvalue.c:
	  gstvalue: Fix GstAllocationParams string convertion on 32bit
	  The GstAllocationParams structure uses gsize, which is not always 64bit. When
	  passed to a vararg it must be casted, so it uses the right amount of space.
	  Not doing so lead to crash when using this feature on 32bit plaforms.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10250>

2025-11-25 18:29:12 +0200  Sebastian Dröge <sebastian@centricular.com>

	* gst/gststreamcollection.c:
	  streamcollection: Fix race condition between disconnecting notify proxy and notifications
	  It can happen that a GstStream gets notified at the very same time as a
	  collection that contains it is being disposed. When timing is bad this can end
	  up using an already freed GstStreamCollection for proxying the signal.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10207>

2025-11-25 18:20:37 +0200  Sebastian Dröge <sebastian@centricular.com>

	* gst/gststreamcollection.c:
	  streamcollection: Use a GstVecDeque instead of a GQueue for the streams
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10207>

2025-11-11 20:12:41 +0900  Seungha Yang <seungha@centricular.com>

	* plugins/elements/gstqueue.c:
	  queue: Use GST_PTR_FORMAT everywhere
	  Prints detailed information about the object instead of the pointer
	  address
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10189>

2025-11-20 20:52:08 -0500  Doug Nazar <nazard@nazar.ca>

	* gst/gstinfo.h:
	  gstinfo: Force comparision to same types
	  warning: equality comparison between function pointer and void pointer ('::GstLogFunction' (aka 'void (*)
	  (_GstDebugCategory *, GstDebugLevel, const char *, const char *, int, _GObject *, _GstDebugMessage *, void *)')
	  and 'void *') [-Wpedantic]
	  263 |   gst_debug_add_log_function (_peel_func, _peel_user_data, _peel_notify);
	  |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	  /usr/include/gstreamer-1.0/gst/gstinfo.h:598:14: note: expanded from macro 'gst_debug_add_log_function'
	  598 |   if ((func) == (void *) gst_debug_log_default) {    \
	  |       ~~~~~~ ^  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10168>

2025-11-10 17:30:54 +0000  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.26.8

=== release 1.26.8 ===

2025-11-10 17:22:05 +0000  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.26.8

2025-11-06 17:06:02 +0100  Piotr Brzeziński <piotr@centricular.com>

	* gst/gststructure.c:
	  structure: Don't crash if GArray has NULL value
	  NULL can be a valid value in this case and it would previously cause a segfault here.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10038>

2025-11-05 09:43:55 +0200  Sebastian Dröge <sebastian@centricular.com>

	* tests/check/gst/gstinfo.c:
	  info: Fix test pattern to check for an expected debug log line
	  There's not necessarily a `0` between the sub-second `.` and the debug category.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10023>

2025-10-25 08:56:00 +0900  Inbok Kim <inbok.kim@lge.com>

	* gst/printf/vasnprintf.c:
	  vasnprintf: free dynamic tmp buffer on error to prevent memory leak
	  If an error occurs and a dynamically allocated tmp buffer is used,
	  ensure it is properly freed to prevent a memory leak.
	  Upstream fix reference:
	  https://cgit.git.savannah.gnu.org/cgit/gnulib.git/commit/?id=4dd9d8a7fa85e9e9223a6c175b4a3fd46d222ff6
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9942>

2025-02-28 19:09:46 +0900  DongJoo Kim <dongjoo.kim@lge.com>

	* gst/gstinfo.h:
	  gstinfo: Added parentheses to ensure proper evaluation of conditions in logging level checks
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9924>

2025-06-11 16:02:13 +0900  dongjoo.kim <dongjoo.kim@lge.com>

	* gst/parse/grammar.y.in:
	  parse: Move g_strfreev() a bit later to avoid use-after-free
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9938>

2025-06-10 14:40:16 +0900  dongjoo.kim <dongjoo.kim@lge.com>

	* gst/gstutils.c:
	  utils: Fix leak in gst_util_filename_compare
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9923>

2025-10-25 12:08:25 +0100  Xavier Claessens <xclaessens@netflix.com>

	* tools/gst-launch.c:
	  gst-launch: Print details of error msg
	  It does it already for every message in bus_handler(), which includes
	  warnings and info, but not for error messages that are instead handled
	  by bus_sync_handler().
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9908>

2025-10-10 12:39:20 +0200  Havard Graff <havard@pexip.com>

	* gst/gstpad.c:
	  gstpad: make gst_pad_forward not O(n²)
	  With many pads, this function grinds to a complete halt.
	  By instead using a hash-table, and only bother to check if we have
	  been resynced (because if not, our pads are in order from the iterator),
	  the algorithm is more like O(n)
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9907>

2025-10-14 18:34:39 +0100  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.26.7

=== release 1.26.7 ===

2025-10-14 18:25:43 +0100  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.26.7

2025-10-10 20:56:21 -0300  Thibault Saunier <tsaunier@igalia.com>

	* libs/gst/controller/gsttimedvaluecontrolsource.c:
	  controller: Fix get_all() return type annotation in GIR
	  The method returns a list of GstControlPoint, not GstTimedValue.
	  This fixes the type annotation to match the actual return type.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9831>

2025-09-25 09:46:23 +0900  Inbok Kim <inbok.kim@lge.com>

	* libs/gst/net/gstnetclientclock.c:
	  netclientclock: Fix memory leak in error paths
	  Add missing g_object_unref() calls for servaddr in error handling
	  blocks to prevent memory leaks when socket creation, binding, or
	  address resolution fails.
	  The servaddr object was not being properly unreferenced in the
	  no_socket, bind_error, and getsockname_error error paths, leading
	  to memory leaks in failure scenarios.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9741>

2025-09-24 12:55:28 -0400  Xavier Claessens <xclaessens@netflix.com>

	* tools/gst-launch.c:
	  gst-launch: Do not assume error messages have a src element
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9739>

2025-09-25 08:19:07 +0900  Inbok Kim <inbok.kim@lge.com>

	* plugins/elements/gstmultiqueue.c:
	  multiqueue: Fix object reference handling in signal callbacks
	  Move gst_object_unref() calls after signal emissions in overrun and
	  underrun callbacks to ensure the multiqueue object remains valid
	  during signal handler execution.
	  This prevents potential race conditions where signal handlers might
	  access a freed object, improving thread safety in multiqueue operations.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9742>

2025-09-14 13:19:28 +0100  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.26.6

=== release 1.26.6 ===

2025-09-14 13:13:58 +0100  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.26.6

2025-08-21 09:02:45 +0300  Sebastian Dröge <sebastian@centricular.com>

	* libs/gst/base/gstbaseparse.c:
	  baseparse: Try harder to fixate caps based on upstream in default negotiation
	  Upstream might provide a width/height while downstream has the field but accepts
	  a range. gst_caps_fixate() would select the minimum value of that range later
	  but it would be more accurate to take the upstream value, at least if it's a
	  subset of what downstream accepts.
	  Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4608
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9603>

2025-08-07 17:09:22 +0200  Vivienne Watermeier <vwatermeier@igalia.com>

	* libs/gst/base/gstbaseparse.c:
	* tests/check/libs/baseparse.c:
	  baseparse: don't clear most sticky events after a FLUSH_STOP event
	  Clearing sticky events - besides EOS, STREAM_GROUP_DONE, and SEGMENT -
	  risks losing them if a flush occurs before we get another buffer.
	  Also adds a unit test: parser_sticky_events_after_flush
	  Fixes #4193
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9594>

2025-08-09 19:00:00 +0300  Sebastian Dröge <sebastian@centricular.com>

	* gst/gstcaps.c:
	* gst/gstchildproxy.c:
	* gst/gstelementfactory.c:
	* gst/gststructure.c:
	* gst/gsttaglist.c:
	* gst/gsttracerrecord.c:
	  gstreamer: Make sure to zero-initialize the GValue before G_VALUE_COLLECT_INIT
	  G_VALUE_INIT does not zero-initialize the data member as automatic
	  zero-initialization only happens for non-union types. For union types the
	  initialized value is undefined.
	  Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4595
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9529>

2025-08-11 10:42:06 +0300  Sebastian Dröge <sebastian@centricular.com>

	* libs/gst/helpers/ptp/net.rs:
	  ptp: Fix a new Rust 1.89 compiler warning on Windows
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9528>

2025-08-08 17:50:03 +0300  Sebastian Dröge <sebastian@centricular.com>

	* gst/meson.build:
	  gstreamer: Disable miniobject inline functions for gobject-introspection for non-subprojects too
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9519>

2025-08-08 10:13:55 +0300  Sebastian Dröge <sebastian@centricular.com>

	* libs/gst/helpers/ptp/net.rs:
	  ptp: Fix new compiler warning with Rust 1.89
	  This still compiles with Rust 1.48 and newer.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9516>

2025-08-07 19:15:29 +0100  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.26.5

=== release 1.26.5 ===

2025-08-07 19:06:46 +0100  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.26.5

2025-07-01 20:53:47 +0200  Mathieu Duponchelle <mathieu@centricular.com>

	* libs/gst/base/gstaggregator.c:
	  aggregator: add sub_latency_min to pad queue size
	  It should be possible for a subclass to let data accumulate on any of its input
	  pads for as long as it has introduced latency.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9490>

2025-07-13 17:30:20 +0100  Nirbheek Chauhan <nirbheek@centricular.com>

	* gst/gstevent.h:
	* gst/gstquery.h:
	* gst/gstsegment.h:
	  gstreamer: Disable C5287 warning on MSVC
	  ```
	  ../subprojects/gstreamer/gst/gstpad.c(3866): warning C5287:
	  operands are different enum types 'GstQueryType' and 'GstQueryTypeFlags';
	  use an explicit cast to silence this warning
	  ```
	  We abuse these enums, and MSVC emits a warning for this specific case:
	  https://learn.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warnings-c5200-through-c5399
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9450>

2025-07-16 15:33:19 +0200  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.26.4

=== release 1.26.4 ===

2025-07-16 15:26:21 +0200  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.26.4

2025-07-08 17:06:15 +0100  Tim-Philipp Müller <tim@centricular.com>

	* po/hr.po:
	* po/ka.po:
	  gstreamer: update translations

2025-05-30 15:05:30 -0400  Doug Nazar <nazard@nazar.ca>

	* gst/gsttracerutils.c:
	  tracerutils: Fix a few memory leaks
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9347>

2025-05-28 08:25:45 -0400  Doug Nazar <nazard@nazar.ca>

	* tests/check/libs/gstnetclientclock.c:
	* tests/check/meson.build:
	  netclientclock: test: add delay under valgrind to free clock from cache
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9343>

2025-05-28 08:23:25 -0400  Doug Nazar <nazard@nazar.ca>

	* gst/gstinfo.c:
	  info: free dwarf cache during shutdown
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9343>

2025-05-28 08:22:05 -0400  Doug Nazar <nazard@nazar.ca>

	* plugins/elements/gstidentity.c:
	  identity: unref clock after usage
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9343>

2025-06-22 03:07:58 -0400  Doug Nazar <nazard@nazar.ca>

	* tests/check/elements/selector.c:
	  selector: tests: Fix initialization of segment
	  If GST_DEBUG is enabled and it dumps the segment, valgrind will warn about
	  uninitialized memory.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9314>

2025-06-22 03:05:20 -0400  Doug Nazar <nazard@nazar.ca>

	* tests/check/gst/gstinfo.c:
	  gstinfo: tests: Ensure that the target msg is one of the ones seen
	  If GST_DEBUG is enabled we will get multiple log messages. Signal
	  success if one of messages is correct.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9314>

2025-06-22 03:01:52 -0400  Doug Nazar <nazard@nazar.ca>

	* tests/check/gst/gstmemory.c:
	  memory: tests: Fix test to ensure all logs are less severe than WARN
	  If GST_DEBUG is enabled the existing test will fail as it gets INFO
	  log messages.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9314>

2025-06-22 02:59:06 -0400  Doug Nazar <nazard@nazar.ca>

	* tests/check/libs/transform1.c:
	* tests/check/libs/transform2.c:
	  transform: test: TestTransData is not an object
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9314>

2025-05-02 10:23:18 +0200  Alicia Boya García <aboya@igalia.com>

	* gst/gstpad.c:
	  tracers: Fix deadlock in latency tracer
	  Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4317
	  This patch fixes a regression in
	  a35bf1e3847351703542869755b6b9e536b9d2fd.
	  The new calls to tracers in the affected change were being done while
	  holding the pad object lock, which wasn't the case in the old ones,
	  leading to the latency tracer deadlocking in gst_object_get_parent().
	  The dependency on the pad lock for those calls was accidental. This
	  patch removes it by temporarily unlocking during the affected calls,
	  not unlike how it's done when calling a probe callback or the
	  send_event() function of the downstream element.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9254>

2025-06-26 21:29:34 +0100  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.26.3

=== release 1.26.3 ===

2025-06-26 21:25:24 +0100  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.26.3

2025-06-26 10:27:33 +0300  Sebastian Dröge <sebastian@centricular.com>

	* tests/check/gst/gstutils.c:
	  gstutils: Mark times array as static to avoid symbol conflict with the POSIX function
	  It works fine but there can be linker warnings, e.g. with mold.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9291>

2025-06-23 12:44:52 +0300  Sebastian Dröge <sebastian@centricular.com>

	* gst/gstpad.c:
	  pad: Only remove TAG events on STREAM_START if the stream-id actually changes
	  Missing part from 88a36b53c5064d186acb317b0b72633ef5d886e3
	  See also https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4097
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9275>

2025-06-19 09:47:32 -0400  Doug Nazar <nazard@nazar.ca>

	* tests/check/libs/baseparse.c:
	  baseparse: test: Fix race on test start
	  It's possible that the sink pad is still flushing when the first buffer
	  is processed causing the test to timeout when we activate the sink after
	  starting the pipeline.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9261>

2025-06-03 22:11:59 +0100  James Cowgill <james.cowgill@blaize.com>

	* gst/gstvecdeque.c:
	  vecdeque: Use correct index type in gst_vec_deque_drop_struct
	  Fixes some `-Wsign-compare` warnings. These two indices should be
	  `gsize` like the other variables in this function.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9182>

2024-09-23 10:31:13 -0300  Thibault Saunier <tsaunier@igalia.com>

	* libs/gst/base/gstaggregator.c:
	  aggregator: Do not set event seqnum to INVALID
	  This might happen when we get EOS without any data flow
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9152>

2025-05-30 00:03:12 +0100  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.26.2

=== release 1.26.2 ===

2025-05-29 23:56:43 +0100  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.26.2

2025-05-23 13:07:34 +0200  Thibault Saunier <tsaunier@igalia.com>

	* gst/gststructure.c:
	* gst/gststructure.h:
	  gst: Add a gst_structure_is_writable method
	  There are cases (in the gst-python bindings for example) where
	  it is interesting to know that the structure is not writable
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9071>

2025-05-13 19:47:37 -0400  Doug Nazar <nazard@nazar.ca>

	* tests/check/gst/gstcontroller.c:
	  controller: Free various props before being set
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9088>

2025-05-13 19:46:34 -0400  Doug Nazar <nazard@nazar.ca>

	* libs/gst/controller/gstdirectcontrolbinding.c:
	  directcontrolbinding: Free various props before being set
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9088>

2025-05-13 19:15:21 -0400  Doug Nazar <nazard@nazar.ca>

	* gst/gstpadtemplate.c:
	  all: Annotate *_set_property() contructor only props without free
	  Properties that are marked constructor only aren't required to be freed
	  before g_value_dup_*() as they can only be called once during construction.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9088>

2025-05-18 16:02:52 +0300  Jordan Petridis <jordan@centricular.com>

	* gst/gsttracerutils.c:
	  gsttracerutils: Fix leak in gst_tracer_utils_create_tracer()
	  Co-authored-by: Alicia Boya García <aboya@igalia.com>
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9065>

2025-05-13 09:54:07 +0300  Sebastian Dröge <sebastian@centricular.com>

	* gst/gstpipeline.c:
	  pipeline: Store the actual latency even if no static latency was configured
	  Previously the latency was only stored if a static latency was configured on the
	  pipeline, which caused gst_pipeline_get_configured_latency() to always return
	  GST_CLOCK_TIME_NONE in that case.
	  Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4429
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9008>

2025-05-16 13:11:33 +0300  Sebastian Dröge <sebastian@centricular.com>

	* gst/gstelement.c:
	  element: ref-sink the correct pad template when replacing an existing one
	  templ is the new one that is being stored and that needs to be ref-sinked,
	  padtempl is the old one that just needs to be unreffed.
	  Fixes leaking the old template, and also makes sure that the new template is not
	  floating which can cause use-after-frees with bindings as they might wrongly
	  take ownership of a still floating template.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8999>

2025-04-01 18:22:18 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* libs/gst/helpers/ptp/meson.build:
	  gst-ptp-helper: Fix meson warning about rust_crate_type
	  WARNING: Project targets '>= 1.4' but uses feature deprecated since
	  '1.3.0': rust_crate_type arg in static_library. Use rust_abi or
	  rust.proc_macro() instead.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8919>

2025-04-25 12:18:19 +0300  Sebastian Dröge <sebastian@centricular.com>

	* libs/gst/base/gstaggregator.c:
	  aggregator: Don't produce buffers when live but not in PLAYING yet
	  Especially in force-live=true mode it was possible to produce buffers before the
	  element was set to PLAYING as long as a clock was available already.
	  This could easily lead to outputting buffers too early, and e.g. before the
	  correct base time is set and available.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8902>

2025-04-25 12:15:17 +0300  Sebastian Dröge <sebastian@centricular.com>

	* libs/gst/base/gstaggregator.c:
	  aggregator: Check after waiting if we're still running and otherwise stop
	  Previously we might've produced a buffer needlessly.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8902>

2025-04-09 12:10:33 -0400  Thibault Saunier <tsaunier@igalia.com>

	* gst/gsttracerutils.c:
	  tracerutils: Do not warn on empty string as tracername
	  It doesn't matter if there is an "empty tracer" specified.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8892>

2025-04-24 20:26:57 +0100  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.26.1
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8890>

=== release 1.26.1 ===

2025-04-24 20:20:14 +0100  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.26.1

2025-04-16 11:06:07 -0400  Thibault Saunier <tsaunier@igalia.com>

	* gst/gstmacos.h:
	* gst/gstmacos.m:
	  macos: Move macos function documentation to the .h so the introspection has the information
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8886>

2025-04-01 11:02:58 +0800  Shengqi Yu (喻盛琪) <shengqi.yu@mediatek.com>

	* gst/gstpluginloader.c:
	  pluginloader: fix pending_plugins Glist use-after-free issue
	  When plugin_loader_load_and_sync returns false in plugin_loader_replay_pending,
	  the cur Glist l->pending_plugins will be added to the blacklist.
	  However, the l->pending_plugins might have already been loaded and freed in handle_rx_packet,
	  so causing a use-after-free issue.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8849>

2025-04-03 09:13:31 -0300  L. E. Segovia <amy@centricular.com>

	* cmake/FindGStreamer.cmake:
	  cmake: Fix using pkgconf for Windows cross builds
	  pkgconf has its own default logic on Windows for setting up a prefix,
	  which does not match the default behaviour of pkg-config (blindly
	  respecting modules' ${prefix} variable).
	  See
	  https://github.com/pkgconf/pkgconf/commit/dcf529b83d621ed09e99e41fc35fdffd068bd87a
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8779>

2025-04-03 09:02:59 -0300  L. E. Segovia <amy@centricular.com>

	* cmake/FindGStreamer.cmake:
	  cmake: Fix PKG_CONFIG_PATH formatting for Windows cross-builds
	  The PKG_CONFIG_PATH use of semicolons must match the host system, not
	  the build system. This fixes calling pkg-config for Windows to Android
	  cross builds.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8779>

2025-04-01 02:04:48 +0900  Seungha Yang <seungha@centricular.com>

	* gst/gstpluginloader-win32.c:
	  pluginloader-win32: Fix helper executable path under devenv
	  lpApplicationName argument of CreateProcessW should be complete path
	  of executable.
	  Fixing regression introduced by
	  https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8614
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8761>

2025-03-14 22:15:38 -0400  Doug Nazar <nazard@nazar.ca>

	* gst/gsttracer.c:
	  tracer: Free various props before being set
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8714>

2025-03-14 19:14:43 -0400  Doug Nazar <nazard@nazar.ca>

	* gst/gstcontrolbinding.c:
	* gst/gstdevice.c:
	* gst/gstpadtemplate.c:
	  all: Annotate *_set_property() contructor only props without free
	  Properties that are marked constructor only aren't required to be freed
	  before g_value_dup_string() as they can only be called once during construction.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8714>

2025-03-26 15:38:20 +0100  Guillaume Desmottes <guillaume.desmottes@onestream.live>

	* plugins/tracers/gstdots.c:
	  tracers: dots: fix debug log
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8712>

2025-03-06 17:16:20 +0100  David Smitmanis <davidsm@axis.com>

	* gst/gstpluginloader-win32.c:
	  pluginloader-win32: Correctly handle whitespace paths when executing gst-plugin-scanner
	  On Windows, if the path to gst-plugin-scanner.exe contained
	  whitespace, gstreamer would via CreateProcessW attempt to execute
	  several files "up" the path tree; e.g. if the scanner path was
	  "C:\Program Files\gstreamer app\gst-plugin-scanner.exe", it would try
	  to execute C:\Program, C:\Program.exe, C:\Program Files\gstreamer.exe"
	  and so on.
	  This is how CreateProcessW behaves with unquoted whitespace arguments
	  in lpCommandLine if lpApplicationName is NULL.
	  By passing the binary path as lpApplicationName instead, the problem
	  is avoided.
	  Also quote arguments to gst-plugin-scanner.exe as they are paths as well.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8686>

2025-01-22 15:02:03 +0100  Marc Leeman <marc.leeman@gmail.com>

	* meson.build:
	  meson.build: test for and link against libatomic if it exists
	  It's needed on some platforms for some subset (or all) atomic operations and
	  checking for the cases when it's actually needed is quite complex.
	  Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4300
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8647>

2025-03-11 20:23:16 +0000  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.26.0
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8618>

=== release 1.26.0 ===

2025-03-11 20:14:44 +0000  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* README.md:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.26.0

2025-02-12 17:10:30 +0000  L. E. Segovia <amy@centricular.com>

	* cmake/FindGStreamer.cmake:
	  cmake: Memoize include checks
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8478>

2025-02-24 09:34:09 -0300  Thibault Saunier <tsaunier@igalia.com>

	* docs/gst-plugins-doc-cache-generator.py:
	  docs: Add a way to specify extra_assets path for plugins doc
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8545>

2025-02-24 12:17:55 -0300  Thibault Saunier <tsaunier@igalia.com>

	* plugins/tracers/gstdots.c:
	  tracer: dots: Check that `pipeline-snapshot::dots-viewer-ws-url` exists
	  It is a very new property and the tracer should still be usable if that
	  property doesn't exist
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8547>

2025-02-23 23:52:57 +0000  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.25.90

=== release 1.25.90 ===

2025-02-23 23:44:10 +0000  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.25.90

2025-02-23 16:55:40 +0000  Tim-Philipp Müller <tim@centricular.com>

	* po/be.po:
	* po/cs.po:
	* po/da.po:
	* po/de.po:
	* po/eo.po:
	* po/eu.po:
	* po/fr.po:
	* po/gl.po:
	* po/hr.po:
	* po/id.po:
	* po/lt.po:
	* po/lv.po:
	* po/pl.po:
	* po/pt_BR.po:
	* po/ro.po:
	* po/ru.po:
	* po/sk.po:
	* po/sq.po:
	* po/uk.po:
	* po/zh_CN.po:
	  gstreamer: update translations

2025-02-19 11:26:36 -0300  Thibault Saunier <tsaunier@igalia.com>

	* plugins/tracers/gstdots.c:
	  tracers: dots: Simplify the way we check dot file to be removed
	  Fixing removing dot files that are in the root directory.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8521>

2024-11-06 17:53:51 -0300  Thibault Saunier <tsaunier@igalia.com>

	* gst/gstmemory.c:
	* gst/gsttracerutils.c:
	* gst/gsttracerutils.h:
	  tracer: Add memory init/free hooks
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8510>

2025-02-19 10:53:34 +0100  Guillaume Desmottes <guillaume.desmottes@onestream.live>

	* gst/gstvalue.c:
	  gstvalue: fix leak in gst_value_deserialize_bytes()
	  The GValue needs to take ownership.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8515>

2025-02-19 10:52:09 +0100  Guillaume Desmottes <guillaume.desmottes@onestream.live>

	* gst/gstvalue.c:
	  gstvalue: fix leak in gst_value_deserialize_g_date_time()
	  gst_date_time_to_g_date_time() does not take ownership.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8515>

2025-02-17 19:16:32 +0200  Sebastian Dröge <sebastian@centricular.com>

	* gst/gstiterator.c:
	* gst/gstmeta.c:
	* gst/gsttracer.c:
	* gst/gstutils.h:
	  gstreamer: Fix various gobject-introspection warnings
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8501>

2025-02-17 13:22:29 +0200  Sebastian Dröge <sebastian@centricular.com>

	* gst/gstbuffer.c:
	  buffer: Mark gst_buffer_extract() size parameter as in-parameter
	  Otherwise it's considered an out-parameter because of its relationship with
	  the dest array pointer.
	  Suggested-by: Sergey Bugaev <bugaevc@gmail.com>
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8494>

2025-02-13 09:54:43 -0500  Xavier Claessens <xclaessens@netflix.com>

	* gst/gststructure.c:
	* gst/gstvalue.c:
	* tests/check/gst/gststructure.c:
	  gststructure: Fix deserialization of GStrv
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8438>

2025-02-10 11:54:18 -0500  Xavier Claessens <xclaessens@netflix.com>

	* gst/gstvalue.c:
	* tests/check/gst/gstvalue.c:
	  gstvalue: Add (de)serialize of G_TYPE_STRV
	  This allows setting strv properties from gst-launch-1.0, such as uris in
	  uriplaylistbin.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8438>

2025-02-11 22:34:30 -0300  Thibault Saunier <tsaunier@igalia.com>

	* gst/gst.c:
	  gst: Allow tracers to set the GST_DEBUG_DUMP_DOT_DIR
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7999>

2025-02-11 22:33:03 -0300  Thibault Saunier <tsaunier@igalia.com>

	* docs/plugins/gst_plugins_cache.json:
	* plugins/tracers/gstdots.c:
	* plugins/tracers/gsttracers.c:
	* plugins/tracers/meson.build:
	  tracers: Add a `dots` tracer which is meant to be used with `gst-dots-viewer`
	  See documentation
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7999>

2025-01-09 20:23:08 -0300  Thibault Saunier <tsaunier@igalia.com>

	* gst/gstdebugutils.c:
	  core: debugutils: Write dot files atomically
	  Replace fopen/fputs with g_file_set_contents() to ensure dot files are written
	  atomically. This prevents tools like gst-dots-viewer from reading partially
	  written files when watching the dot folder.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7999>

2025-02-05 20:25:48 +0100  Alicia Boya García <aboya@igalia.com>

	* gst/parse/grammar.y.in:
	* gst/parse/types.h:
	  gstreamer: parse: Log bus error messages during construction
	  Suppose you invoke gst-launch with this invalid pipeline:
	  ```
	  $ gst-launch-1.0  videotestsrc num-buffers=10 ! x264enc name=enc ! mux.sink_0 \
	  mpegtsmux name=mux ! fakesink
	  0:00:00.018631594 351169      0xb523090 ERROR           GST_PIPELINE
	  subprojects/gstreamer/gst/parse/grammar.y:1151:gst_parse_perform_link:
	  could not link enc to mux
	  WARNING: erroneous pipeline: could not link enc to mux
	  ```
	  The error message you get is not very helpful. This is a pity, because
	  this is where the error comes from:
	  ```c
	  static GstPad *
	  gst_base_ts_mux_request_new_pad (GstElement * element, GstPadTemplate * templ,
	  const gchar * name, const GstCaps * caps)
	  { // [...]
	  GST_ELEMENT_ERROR (element, STREAM, MUX,
	  ("Invalid Elementary stream PID (0x%02u < 0x40)", pid), (NULL));
	  return NULL;
	  ```
	  mpegtsmux posted an error with an explanation of why the linking failed.
	  However, since the error ocurred within gst_parse_launchv(), gst-launch
	  could not have set a bus handler, and the error message got discarded.
	  This patch attempts to make gst-launch more user-friendly by setting a
	  temporary bus handler during early bin construction to catch error
	  messages like this.
	  The errors are logged as ERROR level in the GST_PIPELINE category.
	  However, this is not enough, as GST_LEVEL_DEFAULT defaults to
	  GST_LEVEL_NONE in releases. In other words, outside of the dev
	  environment, GStreamer won't print ERROR logs by default.
	  To make sure the errors can reach users of packaged versions of
	  GStreamer, a new AtomicRcBox-based struct is added: reason_receiver_t.
	  graph_t owns a reference to reason_receiver_t and so does the temporary
	  bus handler.
	  When the temporary bus handler receives an error message, the `reason`
	  field of `reason_receiver_t` is filled with the error message.
	  Later, when SET_ERROR() is called as a consequence of the operation that
	  posted the error having returned failure, the reason message is
	  extracted and added to the GError message.
	  This is how the resulting error would look in the example from above:
	  WARNING: erroneous pipeline: could not link enc to mux --
	  GstMpegTsMux <mux> posted an error message: Invalid Elementary
	  stream PID (0x00 < 0x40)
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8417>

2025-02-11 00:03:20 +0100  Alexander Slobodeniuk <aslobodeniuk@fluendo.com>

	* gst/gsttracerrecord.c:
	  tracerrecord: fix missing GObject vtable chainups
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8452>

2025-02-11 00:03:08 +0100  Alexander Slobodeniuk <aslobodeniuk@fluendo.com>

	* gst/gsttracer.c:
	  tracer: fix missing GObject vtable chainups
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8452>

2025-02-06 11:40:26 +0100  Alexander Slobodeniuk <aslobodeniuk@fluendo.com>

	* plugins/tracers/gstlatency.c:
	* plugins/tracers/gstlog.c:
	* plugins/tracers/gststats.c:
	  tracers: fix chaining up GObject's constructed virtual method
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8416>

2025-02-05 21:02:16 +0100  Alexander Slobodeniuk <aslobodeniuk@fluendo.com>

	* libs/gst/base/gstaggregator.c:
	  aggregator: fix chaining up in GObject "constructed" virtual methods
	  This doesn't always bring visible issue, but is formally incorrect:
	  not chaining up means that the code doesn't trigger GstObject and
	  GstElement "constructed" implementations.
	  In particular both GstElement's and GstObject's classes in
	  "constructed" may sign up this object for tracing and
	  GstObject's class sets GST_OBJECT_FLAG_CONSTRUCTED flag.
	  If we don't chain up none of this is going to be executed.
	  For example, before the fix leaks tracer couldn't detect this leak:
	  ```c
	  int main (int argc, char **argv) {
	  g_setenv ("GST_TRACERS", "leaks(name=all-leaks)", TRUE);
	  g_setenv ("GST_DEBUG", "GST_TRACER:7", TRUE);
	  g_setenv ("G_DEBUG", "fatal-warnings", TRUE);
	  gst_init (&argc, &argv);
	  // leak audiomixer: doesn't detect because it's based on the aggregator
	  gst_element_factory_make ("audiomixer", "Jerry");
	  // leak videoconvert: this one is detected fine because it's not
	  // based on the aggregator
	  //gst_element_factory_make ("videoconvert", "Tom");
	  gst_deinit ();
	  return 0;
	  }
	  // $ cc tst.c $(pkg-config --cflags --libs gstreamer-1.0) -o tst && ./tst
	  ```
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8416>

2025-02-09 17:47:32 +0000  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.25.50

=== release 1.25.50 ===

2025-02-09 17:35:17 +0000  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.25.50

2025-02-07 05:10:39 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* docs/gst-plugins-doc-cache-generator.py:
	  docs: Fix opencv pkgconfig file name
	  Most distros ship OpenCV 4.x, and the pkgconfig file for that is
	  `opencv4`. OpenCV 3.x uses `opencv`, and Fedora ships both files with
[--snip--]
