FreeBSD/ports 39650b6java/sigar Makefile, java/sigar/files patch-bindings_java_build.xml patch-bindings_java_hyperic__jni_jni-build.xml

java/sigar: fix running with openjdk8

Running Cassandra 3 gave:
java.lang.UnsupportedClassVersionError: org/hyperic/sigar/SigarException has been compiled by a more recent version of the Java Runtime (class file version 65.0), this version of the Java Runtime only recognizes class file versions up to 52.0

PR:     294323
Reported-by:    Lapo Luchini
Fixes:  f3a12dc72aa72af22212e3e37c5f29652eae0cbb "fix compilation with jdk21"
MFH:    2026Q2
Pointy-hat:     to me
DeltaFile
+5-3java/sigar/files/patch-bindings_java_build.xml
+3-2java/sigar/files/patch-bindings_java_hyperic__jni_jni-build.xml
+1-1java/sigar/Makefile
+9-63 files

LLVM/project 22bb938clang/lib/CIR/CodeGen CIRGenBuiltinAArch64.cpp, clang/test/CodeGen/AArch64 neon-across.c neon-intrinsics.c

[CIR][AArch64] Lower NEON vminv intrinsics (#192901)

### Summary

part of : https://github.com/llvm/llvm-project/issues/185382

Lower all intrinsics in
https://arm-software.github.io/acle/neon_intrinsics/advsimd.html#minimum-across-vector
and
https://arm-software.github.io/acle/neon_intrinsics/advsimd.html#minimum-across-vector-(IEEE754)

Add ClangIR (CIR) codegen support for the NEON minimum-across-vector
builtins on AArch64. This covers the ACLE sections 2.1.1.13.4 Minimum
across vector (signed/unsigned integer + float) and 2.1.1.13.6 Minimum
across vector (IEEE 754, NaN-ignoring). Corresponding
classic-CodeGen-only tests are migrated into the shared CIR+LLVM test
file so both pipelines are checked from the same RUN lines.

These builtins are already registered in AArch64SISDIntrinsicMap

    [6 lines not shown]
DeltaFile
+226-0clang/test/CodeGen/AArch64/neon/intrinsics.c
+0-119clang/test/CodeGen/AArch64/neon-across.c
+0-60clang/test/CodeGen/AArch64/neon-intrinsics.c
+18-0clang/lib/CIR/CodeGen/CIRGenBuiltinAArch64.cpp
+244-1794 files

FreeNAS/freenas 81bced4src/middlewared/middlewared/plugins/apps resources.py available_apps_info.py, src/middlewared/middlewared/plugins/apps/ix_apps metadata.py lifecycle.py

Address reviews
DeltaFile
+22-3src/middlewared/middlewared/utils/yaml.py
+3-8src/middlewared/middlewared/plugins/apps/ix_apps/metadata.py
+1-4src/middlewared/middlewared/plugins/apps/ix_apps/lifecycle.py
+2-2src/middlewared/middlewared/plugins/apps/resources.py
+1-1src/middlewared/middlewared/plugins/apps/available_apps_info.py
+1-1src/middlewared/middlewared/plugins/apps/ix_apps/docker/stats.py
+30-192 files not shown
+32-218 files

FreeBSD/src 4d062dbusr.bin/kdump kdump.c

kdump(1): add sys/ prefix for exterror source file name

This makes it consistent with libc formatting.

Requested by:   mckusick
Sponsored by:   The FreeBSD Foundation
MFC after:      1 week
DeltaFile
+1-1usr.bin/kdump/kdump.c
+1-11 files

FreeNAS/freenas 26004fasrc/middlewared/middlewared/api/v26_0_0 app.py, src/middlewared/middlewared/plugins/apps/ix_apps portals.py query.py

NAS-140553 / 26.0.0-BETA.2 / Surface x-action-required compose extension on app.query (by sonicaj) (#18780)

This commit adds changes to expose `action_required` set by app dev
which let's the user know that something needs to be done on the app
side and he should check notes section.

Original PR: https://github.com/truenas/middleware/pull/18765

Co-authored-by: sonicaj <waqarahmedjoyia at live.com>
DeltaFile
+6-2src/middlewared/middlewared/plugins/apps/ix_apps/portals.py
+2-0src/middlewared/middlewared/plugins/apps/ix_apps/query.py
+2-0src/middlewared/middlewared/api/v26_0_0/app.py
+10-23 files

LLVM/project 83b4c5cllvm/docs NVPTXUsage.rst, llvm/lib/Target/NVPTX NVPTXInstrInfo.td NVPTXIntrinsics.td

[NVPTX] Add intrinsics for narrow-fp to bf16 conversions (#191376)

Adds the following intrinsics for narrow-fp to bf16 conversions
introduced in PTX 9.2:
-
llvm.nvvm.{e4m3x2/e5m2x2}.to.bf16x2.rn{.relu}{.satfinite}.scale.n2.ue8m0
-
llvm.nvvm.{e2m3x2/e3m2x2}.to.bf16x2.rn{.relu}{.satfinite}.scale.n2.ue8m0
- llvm.nvvm.e2m1x2.to.bf16x2.rn{.relu}{.satfinite}.scale.n2.ue8m0

Tests have been verified through `ptxas-13.2`.

PTX ISA Reference:
https://docs.nvidia.com/cuda/parallel-thread-execution/#data-movement-and-conversion-instructions-cvt
DeltaFile
+135-0llvm/test/CodeGen/NVPTX/convert_fp6x2_to_bf16x2.ll
+135-0llvm/test/CodeGen/NVPTX/convert_fp8x2_to_bf16x2.ll
+87-0llvm/test/CodeGen/NVPTX/convert_fp4x2_to_bf16x2.ll
+43-12llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
+41-0llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
+18-5llvm/docs/NVPTXUsage.rst
+459-175 files not shown
+487-1911 files

LLVM/project cd14598llvm/lib/Target/AMDGPU AMDGPUTargetMachine.cpp

[AMDGPU][NFC] Eliminates the redundant code in the AMDGPUTargetMachine.cpp (#193169)
DeltaFile
+6-9llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
+6-91 files

LLVM/project 5ef29d1

[ADT] Add predicate based match support to StringSwitch (#188046)

This introduces `Predicate` and `IfNotPredicate` case selection to
StringSwitch to allow use cases like

```
StringSwitch<...>(..)
  .Case("foo", FooTok)
  .Predicate(isAlpha, IdentifierTok)
...
```

This is mostly useful for improving conciseness and clarity when
processing generated strings, diagnostics, and similar.
DeltaFile
+0-00 files

LLVM/project f4cc934llvm/lib/Transforms/Vectorize VPlanTransforms.cpp

[LV] NFCI: Create VPExpressions in transformToPartialReductions. (#182863)

With this change, all logic to generate partial reductions and
recognising them as VPExpressions is contained in
`transformToPartialReductions`, without the need for a second transform
pass.
The PR intends to be a non-functional change.
DeltaFile
+68-52llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+68-521 files

OPNSense/core 8387db3src/etc/inc/plugins.inc.d kea.inc, src/opnsense/mvc/app/controllers/OPNsense/Kea/forms ddnsSettings.xml

Services: Kea DHCPv4/v6: Add DDNS manual config override
DeltaFile
+7-0src/opnsense/mvc/app/controllers/OPNsense/Kea/forms/ddnsSettings.xml
+5-2src/etc/inc/plugins.inc.d/kea.inc
+1-0src/opnsense/mvc/app/models/OPNsense/Kea/KeaDdns.xml
+13-23 files

OPNSense/core 19eaeb6src/opnsense/mvc/app/controllers/OPNsense/Cron/forms dialogEdit.xml, src/opnsense/mvc/app/models/OPNsense/Cron Cron.xml

system: improve cron parameter handling; closes #10075
DeltaFile
+18-15src/opnsense/mvc/app/controllers/OPNsense/Cron/forms/dialogEdit.xml
+1-3src/opnsense/service/templates/OPNsense/Cron/user.cron
+1-1src/opnsense/mvc/app/models/OPNsense/Cron/Cron.xml
+20-193 files

LLVM/project 9435160mlir/include/mlir/Dialect/LLVMIR NVVMOps.td, mlir/test/Dialect/LLVMIR nvvm_check_target_sm.mlir nvvm_check_target_sm_trait.mlir

[MLIR][NVVM] Update SM version requirements of Ops (#192257)

This change updates the SM version requirements of Ops with the
`NVVMRequiresSM` trait to include family-specific SM versions wherever
applicable.
DeltaFile
+229-0mlir/test/Dialect/LLVMIR/nvvm_check_target_sm.mlir
+160-0mlir/test/Dialect/LLVMIR/nvvm_check_target_sm_trait.mlir
+0-160mlir/test/Dialect/LLVMIR/nvvm-check-targetSM.mlir
+21-20mlir/include/mlir/Dialect/LLVMIR/NVVMOps.td
+410-1804 files

NetBSD/pkgsrc MlSknn4doc CHANGES-2026

   Updated devel/buf
VersionDeltaFile
1.2523+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc tB3n8N1devel/buf distinfo go-modules.mk

   buf: updated to 1.68.3

   1.68.3
   Fix buf format error handling for edition 2024.
VersionDeltaFile
1.5+28-28devel/buf/distinfo
1.5+8-8devel/buf/go-modules.mk
1.12+2-2devel/buf/Makefile
+38-383 files

NetBSD/pkgsrc-wip 40de681bookokrat Makefile

bookokrat: add missing tool dependencies, simplify
DeltaFile
+5-9bookokrat/Makefile
+5-91 files

NetBSD/pkgsrc-wip 5504263bookokrat TODO

bookokrat: remove empty TODO
DeltaFile
+0-0bookokrat/TODO
+0-01 files

LLVM/project 2af998bllvm/include/llvm/IR LLVMContext.h ValueDeletionListener.h

review: make listener api's private
DeltaFile
+9-13llvm/include/llvm/IR/LLVMContext.h
+3-3llvm/include/llvm/IR/ValueDeletionListener.h
+12-162 files

LLVM/project a6d14dbclang/lib/AST/ByteCode Compiler.cpp, clang/test/AST/ByteCode cxx20.cpp

[clang][bytecode] Fix DefaultInitExpr base pointer in IndirectFieldDecls (#193149)

We built up an in correct set of init chain links, causing a
`DefaultInitExpr` later to pick the wrong base pointer. Fix this by
adding one link per decl (-1) in the `IndirectFieldDecl`.
DeltaFile
+10-6clang/lib/AST/ByteCode/Compiler.cpp
+13-0clang/test/AST/ByteCode/cxx20.cpp
+23-62 files

FreeNAS/freenas c25e713src/middlewared/middlewared/api/v26_0_0 app.py, src/middlewared/middlewared/plugins/apps/ix_apps portals.py query.py

NAS-140553 / 27.0.0-BETA.1 / Surface x-action-required compose extension on app.query (#18765)

This commit adds changes to expose `action_required` set by app dev
which let's the user know that something needs to be done on the app
side and he should check notes section.
DeltaFile
+6-2src/middlewared/middlewared/plugins/apps/ix_apps/portals.py
+2-0src/middlewared/middlewared/api/v26_0_0/app.py
+2-0src/middlewared/middlewared/plugins/apps/ix_apps/query.py
+10-23 files

FreeBSD/ports 4612675www/evcc distinfo Makefile, www/evcc/files patch-Makefile

www/evcc: update to 0.305.1

Changes:        https://github.com/evcc-io/evcc/releases
DeltaFile
+7-7www/evcc/distinfo
+0-11www/evcc/files/patch-Makefile
+4-4www/evcc/Makefile
+11-223 files

LLVM/project 1edcd74clang-tools-extra/clangd ModulesBuilder.cpp, clang-tools-extra/clangd/unittests PrerequisiteModulesTest.cpp

[clangd] [Modules] Refactor cache to support duplicated module name (#193413)

Following of https://github.com/llvm/llvm-project/pull/193158

Although https://github.com/llvm/llvm-project/pull/193158 handles
duplicated module name, the cache in ModulesBuilder still uses the old
assumption.

This patch tries to resolve the problem while not affecting original use
cases as much as possible. As the duplicated module name should be rare
in real world case.

AI Assisted
DeltaFile
+178-46clang-tools-extra/clangd/ModulesBuilder.cpp
+71-0clang-tools-extra/clangd/unittests/PrerequisiteModulesTest.cpp
+249-462 files

NetBSD/pkgsrc WHn4HXFdoc CHANGES-2026 TODO

   Updated devel/py-uv[-build]
VersionDeltaFile
1.2522+3-1doc/CHANGES-2026
1.27149+1-2doc/TODO
+4-32 files

NetBSD/pkgsrc LzsVpiWdevel/py-uv distinfo cargo-depends.mk, devel/py-uv-build distinfo

   py-uv py-uv-build: updated to 0.11.7

   0.11.7

   Python

   Upgrade CPython build to 20260414 including an OpenSSL security upgrade

   Enhancements

   Elevate configuration errors to required-version mismatches
   Further improve TLS certificate validation messages
   Improve --exclude-newer hints

   Preview features

   Fix --script handling in uv audit
   Fix traversal of extras in uv audit


    [9 lines not shown]
VersionDeltaFile
1.19+22-22devel/py-uv/distinfo
1.20+22-22devel/py-uv-build/distinfo
1.18+6-6devel/py-uv/cargo-depends.mk
1.21+2-2devel/py-uv/Makefile.common
+52-524 files

LLVM/project a61de4bmlir/lib/Dialect/SPIRV/IR SPIRVTypes.cpp, mlir/test/Conversion/FuncToSPIRV types-to-spirv.mlir

[mlir][spirv][nfc] Clean up FP8 and BF16 SPIR-V type tests (#193196)

Rename the non-emulation check prefixes for clarity, expand FP8/BF16
test coverage in SPIR-V type and TensorArm tests, and simplify a few
type predicates in SPIRVTypes.cpp.

No functional change intended.

Signed-off-by: Davide Grohmann <davide.grohmann at arm.com>
DeltaFile
+146-146mlir/test/Conversion/FuncToSPIRV/types-to-spirv.mlir
+28-7mlir/test/Dialect/SPIRV/IR/types.mlir
+21-1mlir/test/Target/SPIRV/tensorARM.mlir
+4-4mlir/lib/Dialect/SPIRV/IR/SPIRVTypes.cpp
+199-1584 files

LLVM/project bfd6ea0lld/test/ELF/linkerscript header-alloc.test sizeofheaders.s

[ELF] Improve allocateHeaders tests (#193419)
DeltaFile
+57-0lld/test/ELF/linkerscript/header-alloc.test
+0-17lld/test/ELF/linkerscript/sizeofheaders.s
+0-11lld/test/ELF/linkerscript/header-phdr2.s
+57-283 files

NetBSD/pkgsrc a7THZIFdoc CHANGES-2026

   doc: fix libkbcommon version
VersionDeltaFile
1.2521+2-2doc/CHANGES-2026
+2-21 files

FreeNAS/freenas 1cd8935src/middlewared/middlewared/plugins/apps __init__.py crud.py

Minor fixes
DeltaFile
+5-1src/middlewared/middlewared/plugins/apps/__init__.py
+4-2src/middlewared/middlewared/plugins/apps/crud.py
+1-1src/middlewared/middlewared/plugins/apps/custom_app_ops.py
+1-0src/middlewared/middlewared/plugins/apps/ix_volumes.py
+11-44 files

FreeNAS/freenas 51fb833src/middlewared/middlewared/plugins/apps stats.py logs.py

Declare event sources in init.py
DeltaFile
+2-10src/middlewared/middlewared/plugins/apps/stats.py
+1-9src/middlewared/middlewared/plugins/apps/logs.py
+6-0src/middlewared/middlewared/plugins/apps/__init__.py
+9-193 files

FreeNAS/freenas 8f6f7c5src/middlewared/middlewared/plugins/apps logs.py stats.py

Make logs/stats as typesafe
DeltaFile
+29-18src/middlewared/middlewared/plugins/apps/logs.py
+4-4src/middlewared/middlewared/plugins/apps/stats.py
+33-222 files

FreeNAS/freenas 9ee3d29src/middlewared/middlewared/common/attachment certificate.py, src/middlewared/middlewared/plugins/apps schema_construction_utils.py

Make schema_construction_utils typesafe
DeltaFile
+60-38src/middlewared/middlewared/plugins/apps/schema_construction_utils.py
+8-1src/middlewared/middlewared/common/attachment/certificate.py
+68-392 files