FreeBSD/ports af9a09fx11/hyprviz distinfo Makefile.crates

x11/hyprviz: Update to 0.8.4

Changelog:
- https://github.com/timasoft/hyprviz/releases/tag/v0.8.3
- https://github.com/timasoft/hyprviz/releases/tag/v0.8.4

Reported by:    GitHub (watch releases)
DeltaFile
+7-7x11/hyprviz/distinfo
+2-2x11/hyprviz/Makefile.crates
+1-1x11/hyprviz/Makefile
+10-103 files

FreeBSD/ports 814d765security/vuxml/vuln 2026.xml

security/vuxml: Add Mozilla vulnerabilities

 * CVE-2026-2771 - 9.8
 * CVE-2026-3846 - 6.5
 * CVE-2026-3847 - 8.8
DeltaFile
+90-0security/vuxml/vuln/2026.xml
+90-01 files

LLVM/project 7d6a642llvm/lib/Transforms/IPO MemProfContextDisambiguation.cpp, llvm/lib/Transforms/Instrumentation InstrProfiling.cpp AddressSanitizer.cpp

Remove unneeded cl::ZeroOrMore for cl::opt/cl::list options. NFC (#186044)

Similar to commit 557efc9a8b68628c2c944678c6471dac30ed9e8e (2022).

cl::ZeroOrMore is the default for cl::list and is unnecessary for
cl::opt
since the "may only occur zero or one times!" error was removed.
Also remove cl::init(false) on modified cl::opt<bool> lines.
DeltaFile
+8-12llvm/tools/llvm-debuginfo-analyzer/Options.cpp
+2-2llvm/lib/Transforms/IPO/MemProfContextDisambiguation.cpp
+2-2llvm/lib/Transforms/Scalar/LoopInterchange.cpp
+1-2llvm/tools/llvm-jitlink/llvm-jitlink.cpp
+1-2llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
+1-2llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
+15-223 files not shown
+18-259 files

LLVM/project 4ede3b5llvm/lib/Debuginfod HTTPServer.cpp HTTPClient.cpp, llvm/lib/Support/HTTP HTTPServer.cpp HTTPClient.cpp

Reland "[Support] Move HTTP client/server to new LLVMSupportHTTP lib (NFC)" (#185410)

Relocate HTTPClient and HTTPServer from the Debuginfod library to
llvm/Support/HTTP so they can be reused by other components.

---------

Relanding with fixes in CMakeLists.txt to account for dependency to new
LLVMSupportHTTP in tools.

---------

Co-authored-by: Alexandre Ganea <aganea at havenstudios.com>
Co-authored-by: Jonas Devlieghere <jonas at devlieghere.com>
DeltaFile
+310-0llvm/unittests/Support/HTTP/HTTPServerTests.cpp
+0-310llvm/unittests/Debuginfod/HTTPServerTests.cpp
+0-198llvm/lib/Debuginfod/HTTPServer.cpp
+195-0llvm/lib/Support/HTTP/HTTPServer.cpp
+164-0llvm/lib/Support/HTTP/HTTPClient.cpp
+0-162llvm/lib/Debuginfod/HTTPClient.cpp
+669-67027 files not shown
+940-91633 files

NetBSD/pkgsrc W4rZLHagraphics/zxing-cpp buildlink3.mk

   zxing-cpp: fix path to itself
VersionDeltaFile
1.7+2-2graphics/zxing-cpp/buildlink3.mk
+2-21 files

LLVM/project fddc2c0llvm/lib/Transforms/Utils SimplifyCFG.cpp, llvm/test/Transforms/SimplifyCFG dup-preds.ll switch-dup-bbs.ll

[SimplifyCFG] Simplify identical predecessors (#173022)

When >1 predecessors of BB are identical, try to merge them into ONE.


---

Here is a simplified example (`sink` and `bb*`s share the same
predecessor `entry`, hindering the existing uncond br folding to
optimize such a case):
```diff
- entry:
-   switch to %br1, %br2, %br3, %sink
- bb1:
-   br label %sink
- bb2:
-   br label %sink
- bb3:
-   br label %sink

    [25 lines not shown]
DeltaFile
+192-107llvm/lib/Transforms/Utils/SimplifyCFG.cpp
+108-0llvm/test/Transforms/SimplifyCFG/dup-preds.ll
+4-6llvm/test/Transforms/SimplifyCFG/switch-dup-bbs.ll
+304-1133 files

LLVM/project acc2285libclc/clc/lib/generic/math clc_logb.inc clc_logb.cl

libclc: Update logb implementation (#185881)

Similar to the previous logb change, use a common
bithacking free implementation.
DeltaFile
+10-44libclc/clc/lib/generic/math/clc_logb.inc
+9-5libclc/clc/lib/generic/math/clc_logb.cl
+19-492 files

LLVM/project 3252fe7libclc/clc/lib/generic/math clc_log_base.h

libclc: Update f64 log implementations

The log implementation was originally ported from
rocm device libs way back in 44b6117dfde30d6cc292fabca8ecb0cef4657f7a.
Update this to a version derived from the latest. Leaves the float and
half cases alone.
DeltaFile
+39-112libclc/clc/lib/generic/math/clc_log_base.h
+39-1121 files

LLVM/project 3218d11libclc/clc/include/clc/math clc_ep.inc clc_ep.h, libclc/clc/lib/generic CMakeLists.txt

libclc: Add ep utility

Add utility for compensated arithmetic, which should be used
by a number of the large functions.
DeltaFile
+391-0libclc/clc/lib/generic/math/clc_ep.inc
+131-0libclc/clc/include/clc/math/clc_ep.inc
+34-0libclc/clc/lib/generic/math/clc_ep.cl
+21-0libclc/clc/include/clc/math/clc_ep.h
+1-0libclc/clc/lib/generic/CMakeLists.txt
+578-05 files

LLVM/project da1ee22libclc/clc/lib/generic/math clc_hypot.cl

libclc: Fix hypot build

Bad merge lost the new include
DeltaFile
+1-0libclc/clc/lib/generic/math/clc_hypot.cl
+1-01 files

LLVM/project 5365c57libclc/clc/lib/generic/math clc_ilogb.inc clc_ilogb.cl

libclc: Update ilogb implementation (#185877)

This was originally ported from rocm device libs in
d6d0454231ac489c50465d608ddf3f5d900e1535. Update for
more recent changes that were made there. This avoids
bithacking and improves value tracking. This also allows
using a common code path for all types.
DeltaFile
+7-69libclc/clc/lib/generic/math/clc_ilogb.inc
+9-5libclc/clc/lib/generic/math/clc_ilogb.cl
+1-1libclc/clc/lib/generic/math/clc_hypot.cl
+17-753 files

LLVM/project 77fa3d3libclc/clc/lib/generic/math clc_logb.inc clc_logb.cl

libclc: Update logb implementation

Similar to the previous logb change, use a common
bithacking free implementation.
DeltaFile
+10-44libclc/clc/lib/generic/math/clc_logb.inc
+9-5libclc/clc/lib/generic/math/clc_logb.cl
+19-492 files

LLVM/project cfbda41libclc/clc/lib/generic/math clc_ilogb.inc clc_ilogb.cl

libclc: Update ilogb implementation

This was originally ported from rocm device libs in
d6d0454231ac489c50465d608ddf3f5d900e1535. Update for
more recent changes that were made there. This avoids
bithacking and improves value tracking. This also allows
using a common code path for all types.
DeltaFile
+7-69libclc/clc/lib/generic/math/clc_ilogb.inc
+9-5libclc/clc/lib/generic/math/clc_ilogb.cl
+1-1libclc/clc/lib/generic/math/clc_hypot.cl
+17-753 files

LLVM/project 3da14eelibclc/clc/lib/generic/math clc_hypot.inc clc_hypot.cl

libclc: Update hypot implementation (#185873)

This avoids bithacking on the values and improves value
tracking.
DeltaFile
+30-67libclc/clc/lib/generic/math/clc_hypot.inc
+12-10libclc/clc/lib/generic/math/clc_hypot.cl
+42-772 files

LLVM/project 7cb3005clang/test/CodeGenCUDA amdgpu-workgroup-size.cu builtins-amdgcn.cu, clang/test/CodeGenOpenCL builtins-amdgcn-workgroup-size.cl

AMDGPU: Add dereferenceable attribute to dispatch ptr intrinsic (#185955)

Stop manually setting it on the callsite in clang.
DeltaFile
+24-24clang/test/CodeGenOpenCL/builtins-amdgcn-workgroup-size.cl
+14-8llvm/test/Assembler/amdgcn-intrinsic-attributes.ll
+5-5llvm/test/CodeGen/AMDGPU/implicit-arg-block-count.ll
+3-3clang/test/Headers/gpuintrin.c
+3-3clang/test/CodeGenCUDA/amdgpu-workgroup-size.cu
+3-3clang/test/CodeGenCUDA/builtins-amdgcn.cu
+52-465 files not shown
+58-5511 files

LLVM/project 763de90llvm/lib/Target/RISCV/AsmParser RISCVAsmParser.cpp, llvm/test/MC/RISCV/rvv zvlsseg-invalid.s

[RISCV] Add register group overlap checks to the assembler for vector indexed segment load (#184963)

https://github.com/llvm/llvm-project/commit/f7ca74f600cb6360b4255fc849ac21dd13a56a4c
has added basic check for register overlap.
Furthermore, we need to add extra check for register group overlap since
more registers will be occupied in segment load.
DeltaFile
+72-1llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
+28-0llvm/test/MC/RISCV/rvv/zvlsseg-invalid.s
+100-12 files

LLVM/project 9ca9ca3llvm/utils/TableGen MacroFusionPredicatorEmitter.cpp

[MacroFusion] Add [[maybe_unused]] to suppress some warings (#185833)
DeltaFile
+2-2llvm/utils/TableGen/MacroFusionPredicatorEmitter.cpp
+2-21 files

LLVM/project aa16859libclc/clc/lib/amdgpu/address_space clc_qualifier.inc clc_qualifier.cl

[libclc][amdgpu] Add clc qualifier functions with non-const pointer (#186015)

Fix unresolved external functions: _Z15__clc_get_fencePv,
_Z15__clc_to_globalPv, _Z14__clc_to_localPv, _Z16__clc_to_privatePv
DeltaFile
+32-0libclc/clc/lib/amdgpu/address_space/clc_qualifier.inc
+6-21libclc/clc/lib/amdgpu/address_space/clc_qualifier.cl
+38-212 files

FreeBSD/ports 209883egerman/wordpress distinfo, japanese/wordpress distinfo

www/wordpress: upgrade to 6.9.4 (security)

Upstream does not offer localized tarballs for 6.9.4, so download the
6.9.1 tarballs and apply files/patch-6.9.1-to-6.9.4 instead.

Security fixes in 6.9.2:
- Blind SSRF
- PoP-chain weakness in HTML API and Block Registry
- Regex DoS in Numeric Character References
- Stored XSS in Nav Menus
- AJAX query-attachments Authorization Bypass
- Stored XSS via data-wp-bind directive
- XSS allowing override of client-side templates in admin area
- PclZip Path Traversal
- Authorization Bypass on Notes feature
- XXE in external getID3 library

Bug fix in 6.9.3:
- Restore compatibility for themes using stringable objects with the

    [9 lines not shown]
DeltaFile
+373-0www/wordpress/files/patch-6.9.1-to-6.9.4
+6-5www/wordpress/Makefile
+3-3www/wordpress/distinfo
+3-3russian/wordpress/distinfo
+3-3japanese/wordpress/distinfo
+3-3german/wordpress/distinfo
+391-173 files not shown
+400-269 files

HardenedBSD/src 79d1b27sys/amd64/amd64 mp_machdep.c, sys/amd64/include smp.h

Merge remote-tracking branch 'origin/hardened/current/master' into hardened/current/cross-dso-cfi
DeltaFile
+2-1sys/amd64/amd64/mp_machdep.c
+0-1sys/amd64/include/smp.h
+2-22 files

HardenedBSD/src c0d9a18sys/amd64/amd64 mp_machdep.c, sys/amd64/include smp.h

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+2-1sys/amd64/amd64/mp_machdep.c
+0-1sys/amd64/include/smp.h
+2-22 files

HardenedBSD/src c41a8d8. Makefile.inc1

Merge branch 'freebsd/15-stable/main' into hardened/15-stable/main
DeltaFile
+18-32Makefile.inc1
+18-321 files

NetBSD/pkgsrc KtqNYc7doc CHANGES-2026

   Updated audio/snapcast, devel/netcdf
VersionDeltaFile
1.1700+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc xx7Z9MOdevel/netcdf distinfo Makefile

   netcdf: updated to 4.10.0

   4.10.0 - February 25, 2026

   * Regularize, cleanup, and refactor various AWS features, especially WRT regularizing AWS-related constants.
   * Add extra failure handling to the daos inferencing.
   * Regularize, cleanup, and refactor various AWS features, especially WRT regularizing AWS-related constants.
   * Add compatibility with HDF5 2.0.0.
   * Introduce consolidated metadata
   * Fix the H5FD_class_t problems.
   * Begin the consolidation of global state into two files: libdispatch/dglobal.c and include/ncglobal.h.
   * Modify the way xarray attribute sets are handled.
   * Fix Issue with Numcodecs encoding problems where integer filter parameters are being encoded as strings.
   * Clean up minor problems with DAP2/DAP4 code.
   * Cleanup RELEASE_NOTES.md.
   * Rebuild the S3-related code and other changes necessary to build cleanly on github actions.
   * Fix the problems around ncdap_test/test_manyurls.c.
   * Fix bug in ncdump when printing FQNs.
   * Update `macOS` github runners from macos-13 to macos-14, due to deprecation.

    [6 lines not shown]
VersionDeltaFile
1.26+4-4devel/netcdf/distinfo
1.81+2-3devel/netcdf/Makefile
1.13+3-1devel/netcdf/PLIST
+9-83 files

LLVM/project 1b20c9cllvm/include/llvm/Frontend/OpenMP OMPKinds.def, offload/include/Shared Environment.h

Address review comments
DeltaFile
+15-17offload/plugins-nextgen/common/src/PluginInterface.cpp
+9-0openmp/device/src/State.cpp
+5-2offload/plugins-nextgen/amdgpu/src/rtl.cpp
+0-3offload/plugins-nextgen/common/include/PluginInterface.h
+1-1offload/include/Shared/Environment.h
+1-1llvm/include/llvm/Frontend/OpenMP/OMPKinds.def
+31-246 files

HardenedBSD/ports 28ff5cawww/wordpress/files patch-6.9.1-to-6.9.4, x11/waveterm distinfo Makefile.crates

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+1,760-2,078x11/waveterm/files/packagejsons/package-lock.json
+1,487-1,281x11/waveterm/distinfo
+392-289x11/waveterm/Makefile.crates
+373-0www/wordpress/files/patch-6.9.1-to-6.9.4
+0-329x11/waveterm/files/patch-swc_bindings_Cargo.lock
+290-0x11/waveterm/files/patch-swc_Cargo.lock
+4,302-3,97742 files not shown
+4,589-4,35348 files

FreeBSD/ports bf01686devel/py-ujson distinfo Makefile

devel/py-ujson: upgrade to 5.12.0
DeltaFile
+3-3devel/py-ujson/distinfo
+1-1devel/py-ujson/Makefile
+4-42 files

NetBSD/pkgsrc l8UJhm4audio/snapcast distinfo Makefile, audio/snapcast/patches patch-server_etc_snapserver.conf

   snapcast: updated to 0.35.0

   0.35.0

   Features

   Client: Add SDL2 player for better portability
   Server: Add option for a default source

   Bugfixes

   Server: End control script when Stream.RemoveStream is called
   Server: Close TCP server when Stream.RemoveStream is called
VersionDeltaFile
1.7+5-5audio/snapcast/distinfo
1.4+4-4audio/snapcast/patches/patch-server_etc_snapserver.conf
1.20+2-3audio/snapcast/Makefile
+11-123 files

LLVM/project 7265d89libclc/clc/include/clc/math clc_frexp_exp.h, libclc/clc/include/clc/shared unary_decl_with_int_return.inc

libclc: Add frexp_exp utility function (#185872)
DeltaFile
+22-0libclc/clc/include/clc/math/clc_frexp_exp.h
+13-0libclc/clc/lib/generic/math/clc_frexp_exp.inc
+13-0libclc/clc/lib/generic/math/clc_frexp_exp.cl
+9-0libclc/clc/include/clc/shared/unary_decl_with_int_return.inc
+1-0libclc/clc/lib/generic/CMakeLists.txt
+58-05 files

FreeBSD/ports 10c7738misc/codex distinfo Makefile.crates, misc/codex/files patch-codex-rs_core_tests_suite_view__image.rs

misc/codex: Update to 0.114.0

Changelog:
- https://github.com/openai/codex/releases/tag/rust-v0.110.0
- https://github.com/openai/codex/releases/tag/rust-v0.111.0
- https://github.com/openai/codex/releases/tag/rust-v0.112.0
- https://github.com/openai/codex/releases/tag/rust-v0.113.0
- https://github.com/openai/codex/releases/tag/rust-v0.114.0

Reported by:    GitHub (watch releases)
DeltaFile
+15-9misc/codex/distinfo
+0-11misc/codex/files/patch-codex-rs_core_tests_suite_view__image.rs
+6-3misc/codex/Makefile.crates
+2-6misc/codex/Makefile
+23-294 files