paraview: Update to 6.1.0
6.1.0 (2026-03-31)
New features
Introducing ANARI rendering integration in ParaView
This change introduces ANARI rendering in ParaView and a dynamic
properties feature used to generate a user interface based on a JSON
properties description generated by each ANARI renderer.
The current integration uses a simple approach to delegate ray-traced
rendering to ANARI. The Properties panel presents you with a choice
between the original Enable Ray Tracing (with OSPRay) and Enable
Rendering with ANARI.
When that option is checked, the panel presents a list of options
dynamically generated for each renderer including:
* ANARI: Library: A choice between "visrtx", "helide", and
"environment". The last option uses the library set using the
[1104 lines not shown]
kicad-*: Update to 10.0.3
KiCad 10.0.3 (2026-05-15)
The 10.0.3 stable version contains critical bug fixes and other minor
improvements since the previous release.
A list of all of the fixed issues since the 10.0.3 release can be
found on the KiCad 10.0.3 milestone page.
KiCad 10.0.2 (2026-05-09)
The 10.0.2 stable version contains critical bug fixes and other minor
improvements since the previous release.
A list of all of the fixed issues since the 10.0.2 release can be
found on the KiCad 10.0.2 milestone page.
[libc++] Introduce a private version of in_out_result and use it for copy/move algorithms (#198086)
This patch introduces a new `__in_out_result`, which is an internal
back-ported version of `in_out_result`, and is convertible to that when
it exists. This improves the readability of the code, since it replaces
uses of `first` and `second` with `__in_` and `__out_`, making it clear
which iterator is accessed.
Other algorithms will be updated in separate patches.