LLVM/project cfce0belibcxx/test/std/atomics/atomics.ref fetch_max.pass.cpp fetch_min.pass.cpp, libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req atomic_fetch_min_explicit.pass.cpp atomic_fetch_max_explicit.pass.cpp

revise testcases
DeltaFile
+73-15libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_min_explicit.pass.cpp
+73-15libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_max_explicit.pass.cpp
+72-15libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_max.pass.cpp
+72-15libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_min.pass.cpp
+5-6libcxx/test/std/atomics/atomics.ref/fetch_max.pass.cpp
+5-6libcxx/test/std/atomics/atomics.ref/fetch_min.pass.cpp
+300-726 files

LLVM/project 530c938mlir/include/mlir/Dialect/SparseTensor/Transforms Passes.td

[mlir][sparse][nfc] replace sparse_tensor.pointers in docs (#181636)

The `-sparse-tensor-conversion` and `-sparse-tensor-codegen`
descriptions use `sparse_tensor.pointers` which doesn't exist. It
was renamed to `sparse_tensor.positions`.
DeltaFile
+12-9mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.td
+12-91 files

OPNSense/core 83f8b6bsrc/etc/inc system.inc, src/etc/inc/plugins.inc.d core.inc

backend: two unused global $config references
DeltaFile
+0-2src/etc/inc/plugins.inc.d/core.inc
+0-2src/etc/inc/system.inc
+0-42 files

OPNSense/core 685ed6bsrc/opnsense/www/js/widgets Firewall.js

Lobby: Dashboard / Firewall - fix encoding issue, closes https://github.com/opnsense/core/issues/9729

Minor adjustment to https://github.com/opnsense/core/pull/9776

(cherry picked from commit 0b5f58511339e46c165b66e70e0533be8c3b2282)
DeltaFile
+1-1src/opnsense/www/js/widgets/Firewall.js
+1-11 files

OPNSense/core 290e453src/opnsense/mvc/app/controllers/OPNsense/CaptivePortal/Api AccessController.php

captive portal: fix timeout calculation; closes #9794

(cherry picked from commit a0eee0cbd654f27e98173ad7bb47b001b7fc3b74)
DeltaFile
+2-2src/opnsense/mvc/app/controllers/OPNsense/CaptivePortal/Api/AccessController.php
+2-21 files

OPNSense/core a01822d. Makefile, Mk defaults.mk

make: remove CORE_REPOSITORY

Looking at it again this was used for LibreSSL back in the day
but we do not need this and aux configuration is also hardcoded.
DeltaFile
+1-1src/etc/pkg/repos/OPNsense.conf.shadow.in
+0-1Mk/defaults.mk
+0-1Makefile
+0-1src/opnsense/version/core.in
+1-44 files

HardenedBSD/src ff2744asys/netpfil/ipfilter/netinet fil.c ip_fil.h

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+2-2sys/netpfil/ipfilter/netinet/fil.c
+1-1sys/netpfil/ipfilter/netinet/ip_fil.h
+1-1sys/netpfil/ipfilter/netinet/ip_state.c
+4-43 files

HardenedBSD/ports d87e0c8www/iridium/files patch-chrome_browser_about__flags.cc patch-third__party_libunwind_src_src_AddressSpace.hpp

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+101-65www/iridium/files/patch-chrome_browser_about__flags.cc
+85-0www/iridium/files/patch-third__party_libunwind_src_src_AddressSpace.hpp
+14-68www/iridium/files/patch-chrome_browser_ui_ui__features.cc
+0-49www/iridium/files/patch-third__party_libaom_source_libaom_aom__ports_aarch64__cpudetect.c
+24-24www/iridium/files/patch-chrome_browser_policy_configuration__policy__handler__list__factory.cc
+47-0www/iridium/files/patch-components_proxy__config_proxy__override__rules__policy__handler.cc
+271-206490 files not shown
+2,649-2,324496 files

OPNSense/core dec4835src/www firewall_nat_out_edit.php interfaces_assign.php

www: config read safety using feddc1f (#9787)

Increase coverage of the new feature in our legacy www files.
DeltaFile
+19-22src/www/firewall_nat_out_edit.php
+13-25src/www/interfaces_assign.php
+11-25src/www/firewall_schedule_edit.php
+5-11src/www/interfaces_ppps_edit.php
+5-10src/www/firewall_rules.php
+4-6src/www/interfaces.php
+57-994 files not shown
+64-10710 files

FreeBSD/ports 14fe931math/z3 distinfo Makefile

math/z3: Update 4.15.4.0 => 4.15.8.0

Changelogs:
* https://github.com/Z3Prover/z3/blob/master/RELEASE_NOTES.md#version-4158
* https://github.com/Z3Prover/z3/compare/z3-4.15.4...z3-4.15.5
* https://github.com/Z3Prover/z3/compare/z3-4.15.5...z3-4.15.6
* https://github.com/Z3Prover/z3/compare/z3-4.15.6...z3-4.15.7
* https://github.com/Z3Prover/z3/compare/z3-4.15.7...z3-4.15.8

Approved by:            arrowd@ (maintainer)
Approved by:            db@, yuri@ (Mentors, implicit)
Differential Revision:  https://reviews.freebsd.org/D55324
DeltaFile
+3-3math/z3/distinfo
+1-1math/z3/Makefile
+4-42 files

LLVM/project f978a7dcompiler-rt/lib/tsan/rtl tsan_adaptive_delay.cpp tsan_adaptive_delay.h

[tsan] Only init AdaptiveDelay if enabled (#181757)

In #178836, while refactoring from a virtual class design to a
non-virtual design, the logic ended up such that AdaptiveDelayImpl was
always constructed, even if the adaptive delay feature was not enabled.
Adaptive delay itself was always disabled if the flag was off, this just
prevents the ctor from running at all.

@dvyukov
DeltaFile
+8-6compiler-rt/lib/tsan/rtl/tsan_adaptive_delay.cpp
+0-2compiler-rt/lib/tsan/rtl/tsan_adaptive_delay.h
+8-82 files

OPNSense/core 990ff16src/www firewall_nat_out.php

foo
DeltaFile
+0-1src/www/firewall_nat_out.php
+0-11 files

OPNSense/core 48cbf82src/opnsense/mvc/app/controllers/OPNsense/CaptivePortal/Api AccessController.php, src/opnsense/mvc/app/models/OPNsense/Dnsmasq Dnsmasq.php

Merge branch 'master' into config_read_9786
DeltaFile
+30-6src/opnsense/mvc/app/models/OPNsense/Dnsmasq/Dnsmasq.php
+20-0src/opnsense/scripts/filter/lib/alias/__init__.py
+8-1src/opnsense/scripts/filter/update_tables.py
+2-2src/opnsense/mvc/app/controllers/OPNsense/CaptivePortal/Api/AccessController.php
+60-94 files

OPNSense/core 8df9e5asrc/www firewall_nat_out_edit.php

audit/cleanup
DeltaFile
+18-19src/www/firewall_nat_out_edit.php
+18-191 files

OPNSense/core c3f4be4src/www firewall_nat_out.php

cleanup/review
DeltaFile
+3-3src/www/firewall_nat_out.php
+3-31 files

NetBSD/src 649m75Psys/arch/arm/arm32 bus_dma.c

   Fix a KASSERT in _bus_dmatag_subregion
VersionDeltaFile
1.154+5-4sys/arch/arm/arm32/bus_dma.c
+5-41 files

NetBSD/src 7o4mlVosys/arch/riscv/riscv bus_dma.c

   Fix a KASSERT in _bus_dmatag_subregion
VersionDeltaFile
1.16+5-4sys/arch/riscv/riscv/bus_dma.c
+5-41 files

NetBSD/pkgsrc 2KRipTfdoc CHANGES-2026

   Updated devel/py-pybind11, graphics/py-tifffile, www/py-notebook
VersionDeltaFile
1.1183+4-1doc/CHANGES-2026
+4-11 files

NetBSD/pkgsrc pRWg0wlwww/py-notebook PLIST distinfo

   py-notebook: updated to 7.5.3

   7.5.3

   Maintenance and upkeep improvements

   - Update to JupyterLab v4.5.3
   - Rename the token env variable
   - Clean up node 24 install
VersionDeltaFile
1.30+139-139www/py-notebook/PLIST
1.31+4-4www/py-notebook/distinfo
1.45+2-2www/py-notebook/Makefile
+145-1453 files

FreeBSD/ports 77a4280x11/contour Makefile

x11/contour: Bump port revision after libunicode-contour shlib version bump (742f17431143)
DeltaFile
+1-1x11/contour/Makefile
+1-11 files

HardenedBSD/ports 77a4280x11/contour Makefile

x11/contour: Bump port revision after libunicode-contour shlib version bump (742f17431143)
DeltaFile
+1-1x11/contour/Makefile
+1-11 files

FreeBSD/ports 742f174devel/libunicode-contour distinfo Makefile, devel/libunicode-contour/files patch-src_libunicode_CMakeLists.txt

devel/libunicode-contour: Update to 0.8.0

Changelog: https://github.com/contour-terminal/libunicode/releases/tag/v0.8.0

Reported by:    GitHub (watch releases)
DeltaFile
+3-3devel/libunicode-contour/distinfo
+2-2devel/libunicode-contour/files/patch-src_libunicode_CMakeLists.txt
+1-1devel/libunicode-contour/Makefile
+2-0devel/libunicode-contour/pkg-plist
+8-64 files

HardenedBSD/ports 742f174devel/libunicode-contour distinfo Makefile, devel/libunicode-contour/files patch-src_libunicode_CMakeLists.txt

devel/libunicode-contour: Update to 0.8.0

Changelog: https://github.com/contour-terminal/libunicode/releases/tag/v0.8.0

Reported by:    GitHub (watch releases)
DeltaFile
+3-3devel/libunicode-contour/distinfo
+2-2devel/libunicode-contour/files/patch-src_libunicode_CMakeLists.txt
+1-1devel/libunicode-contour/Makefile
+2-0devel/libunicode-contour/pkg-plist
+8-64 files

NetBSD/pkgsrc fp75kYygraphics/py-tifffile distinfo Makefile

   py-tifffile: updated to 2026.2.16

   2026.2.16
   - Pass 5129 tests.
   - Optimize reading multi-file pyramidal OME TIFF files.
VersionDeltaFile
1.57+4-4graphics/py-tifffile/distinfo
1.65+2-2graphics/py-tifffile/Makefile
+6-62 files

NetBSD/pkgsrc 8fc6FzYdevel/py-pybind11 distinfo PLIST

   py-pybind11: updated to 3.0.2

   3.0.2

   New Features:

   Added helper functions to py::array that return shape and strides as std::span when available.

   Bug fixes:

   Added fallback locking for Python 3.13t where PyCriticalSection_BeginMutex is unavailable.

   Fixed race condition in py::make_key_iterator with free-threaded Python.

   MSVC 19.16 and earlier were blocked from using std::launder due to internal compiler errors.

   Internals destructors were updated to check the owning interpreter before clearing Python objects.

   Internals shutdown handling was refined in two iterations before release: an initial finalization-time cleanup was followed by a safety adjustment to avoid late-shutdown py::cast segfaults.

    [42 lines not shown]
VersionDeltaFile
1.26+4-4devel/py-pybind11/distinfo
1.15+3-1devel/py-pybind11/PLIST
1.30+2-2devel/py-pybind11/Makefile
+9-73 files

NetBSD/pkgsrc tlS8X8Osecurity/py-cryptography Makefile distinfo, security/py-cryptography/patches patch-pyproject.toml

   py-cryptography: proper fix for Maturin 1.12
VersionDeltaFile
1.3+25-9security/py-cryptography/patches/patch-pyproject.toml
1.140+1-5security/py-cryptography/Makefile
1.113+2-1security/py-cryptography/distinfo
+28-153 files

FreeBSD/ports 80ef9f7mail/py-resend distinfo Makefile

mail/py-resend: Update to 2.22.0

Changelog: https://github.com/resend/resend-python/releases/tag/v2.22.0

Reported by:    portscout
DeltaFile
+3-3mail/py-resend/distinfo
+1-1mail/py-resend/Makefile
+4-42 files

HardenedBSD/ports 80ef9f7mail/py-resend distinfo Makefile

mail/py-resend: Update to 2.22.0

Changelog: https://github.com/resend/resend-python/releases/tag/v2.22.0

Reported by:    portscout
DeltaFile
+3-3mail/py-resend/distinfo
+1-1mail/py-resend/Makefile
+4-42 files

LLVM/project fb41009llvm/test/CodeGen/RISCV riscv-scavenge-crash-2nd-pass-rv32.mir riscv-scavenge-crash-2nd-pass-rv64.mir

[RISCV] Add test cases showing RegisterScavenger crash (#181537)

DeltaFile
+86-0llvm/test/CodeGen/RISCV/riscv-scavenge-crash-2nd-pass-rv32.mir
+55-0llvm/test/CodeGen/RISCV/riscv-scavenge-crash-2nd-pass-rv64.mir
+141-02 files

LLVM/project a65c4f4lldb/packages/Python/lldbsuite/test decorators.py

[lldb][windows] deactivate unicode tests on Windows (#181698)

https://github.com/llvm/llvm-project/pull/181143 introduced a regression
in Windows build bots, which is due to some Unicode characters not being
rendered properly.

The proper fix is to be able to configure the characters that are
rendered, and to force them to be ascii characters.
DeltaFile
+4-0lldb/packages/Python/lldbsuite/test/decorators.py
+4-01 files