FreeBSD/doc 7b936eewebsite/content/en/releases/15.0R errata.adoc

15.0/errata: Begin listing known open regressions

List three known traps upgrading to 15.0R in the release errata.

Noting:                 this is 34 days late, but first time since 12.0R
Discussed with:         adrian, imp, jhb, jrtc27, ngie
Reviewed by:            adrian
DeltaFile
+11-1website/content/en/releases/15.0R/errata.adoc
+11-11 files

LLVM/project 8256abdflang/test/Integration/OpenMP private-global.f90 copyprivate.f90, llvm/lib/Frontend/OpenMP OMPIRBuilder.cpp

[OpenMP][OMPIRBuilder] Hoist static parallel region allocas to the entry block on the CPU

Follow-up on #171597, this PR hoists allocas in a parallel region to the
entry block of its corresponding outlined function. This PR does this
for the CPU while #171597 introduced the main mechanism to do so and did
it for the GPU.
DeltaFile
+6-3mlir/test/Target/LLVMIR/openmp-llvm.mlir
+4-3flang/test/Integration/OpenMP/private-global.f90
+1-1mlir/test/Target/LLVMIR/openmp-reduction-array-sections.mlir
+1-1mlir/test/Target/LLVMIR/openmp-parallel-reduction-init.mlir
+1-1llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
+1-1flang/test/Integration/OpenMP/copyprivate.f90
+14-106 files

LLVM/project 5c0191bflang/test/Integration/OpenMP private-global.f90 copyprivate.f90, llvm/lib/Frontend/OpenMP OMPIRBuilder.cpp

[OpenMP][OMPIRBuilder] Hoist static parallel region allocas to the entry block on the CPU

Follow-up on #171597, this PR hoists allocas in a parallel region to the
entry block of its corresponding outlined function. This PR does this
for the CPU while #171597 introduced the main mechanism to do so and did
it for the GPU.
DeltaFile
+6-3mlir/test/Target/LLVMIR/openmp-llvm.mlir
+4-3flang/test/Integration/OpenMP/private-global.f90
+1-1mlir/test/Target/LLVMIR/openmp-parallel-reduction-init.mlir
+1-1mlir/test/Target/LLVMIR/openmp-reduction-array-sections.mlir
+1-1flang/test/Integration/OpenMP/copyprivate.f90
+1-1llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
+14-106 files

LLVM/project ccb47d0llvm/include/llvm/Frontend/OpenMP OMPIRBuilder.h, llvm/lib/Frontend/OpenMP OMPIRBuilder.cpp

[OpenMP][MLIR] Hoist static `alloca`s emitted by private `init` regions to the allocation IP of the construct (#171597)

Having more than 1 descritpr (allocatable or array) on the same
`private` clause triggers a runtime crash on GPUs at the moment.

For SPMD kernels, the issue happens because the initialization logic
includes:
* Allocating a number of temporary structs (these are emitted by flang
when `fir` is lowered to `mlir.llvm`).
* There is a conditional branch that determines whether we will allocate
storage for the descriptor and initialize array bounds from the original
descriptor or whether we will initialize the private descriptor to null.

Because of these 2 things, temp allocations needed for descriptors
beyond the 1st one are preceded by branching which causes the observed
the runtime crash.

This PR solves this issue by hoisting these static `alloca`s
instructions to the suitable allca IP of the parent construct.
DeltaFile
+91-0mlir/test/Target/LLVMIR/openmp-private-allloca-hoisting.mlir
+32-0llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
+2-0llvm/include/llvm/Frontend/OpenMP/OMPIRBuilder.h
+125-03 files

OpenBSD/src V1xku7Ulib/libcrypto/asn1 x_pubkey.c

   ASN.1 templates: make internal *_PUBKEY_it static
VersionDeltaFile
1.40+5-5lib/libcrypto/asn1/x_pubkey.c
+5-51 files

OpenBSD/src CEyizRalib/libcrypto/asn1 x_pubkey.c x_name.c

   ASN.1 templates: make ASN1_EXTERN_FUNCS static

   These are used directly only as part of the ASN.1 item in the same file.
VersionDeltaFile
1.39+5-5lib/libcrypto/asn1/x_pubkey.c
1.47+2-2lib/libcrypto/asn1/x_name.c
+7-72 files

NetBSD/src 4j8BkyFsys/ufs/lfs lfs_subr.c lfs_kclean.c

   One lock to rule them all.

   Break the "lock" part of lfs_seglock() into its own function,
   lfs_prelock().  Remove the lock flag SEGM_PROT, replacing instances of
   lfs_seglock(fs, SEGM_PROT) with lfs_prelock(fs, 0).  Reimplement the
   fragment lock and cleaner lock to use lfs_prelock().

   Avoids an observed deadlock between fragment extension and segment writing.
VersionDeltaFile
1.110+110-42sys/ufs/lfs/lfs_subr.c
1.4+16-65sys/ufs/lfs/lfs_kclean.c
1.154+20-20sys/ufs/lfs/lfs_alloc.c
1.219+11-5sys/ufs/lfs/lfs.h
1.399+8-5sys/ufs/lfs/lfs_vfsops.c
1.352+5-6sys/ufs/lfs/lfs_vnops.c
+170-1438 files not shown
+201-17314 files

FreeBSD/ports 9230d09editors/vim distinfo Makefile

editors/vim: Update to 9.1.2050
DeltaFile
+3-3editors/vim/distinfo
+1-1editors/vim/Makefile
+4-42 files

FreeBSD/ports 324c1d8math/calc distinfo Makefile

math/calc: Update to 2.16.1.1
DeltaFile
+3-3math/calc/distinfo
+1-1math/calc/Makefile
+4-42 files

FreeBSD/ports d90f374devel/air-go distinfo Makefile

devel/air-go: Update to 1.63.5
DeltaFile
+5-5devel/air-go/distinfo
+1-2devel/air-go/Makefile
+6-72 files

LLVM/project 80b62cbclang/lib/Driver/ToolChains Clang.cpp

Enable c++20 modules support for c++23preview in clang-cl (#173663)

Fixes https://github.com/llvm/llvm-project/issues/173544

Co-authored-by: Chuanqi Xu <yedeng.yd at linux.alibaba.com>
DeltaFile
+4-3clang/lib/Driver/ToolChains/Clang.cpp
+4-31 files

LLVM/project 993054dllvm/lib/Transforms/InstCombine InstCombineCompares.cpp, llvm/test/Transforms/InstCombine fcmp-select.ll

[InstCombine] Fold redundant FP clamp selects; relax min-max-pattern bailout in visitFCmp (#173452)

visitFCmp() previously bailed out when a following select matched a
clamp pattern. This blocks simplifications when the clamp is provably
redundant.

This PR allows simplification for clamp selects of flavor SPF_FMAXNUM/
SPF_FMINNUM when one arm is a constant and the other is a sitofp/uitofp
of an integer value, and the constant equals the exact min/max of that
integer domain:
* SPF_FMAXNUM (pattern max(X,C)): redundant if C is the minimum integer
mapped exactly to FP (e.g. X = sitofp i8, C = -128.0f).
* SPF_FMINNUM (pattern min(X,C)): redundant if C is the maximum integer
mapped exactly to FP (e.g. X = uitofp i8, C = 255.0f).

This fixes a regression in #173454

---------

Co-authored-by: Copilot <175728472+Copilot at users.noreply.github.com>
Co-authored-by: Yingwei Zheng <dtcxzyw at qq.com>
DeltaFile
+44-0llvm/test/Transforms/InstCombine/fcmp-select.ll
+32-1llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
+76-12 files

OpenBSD/src gN1CtBAbin/ed buf.c glbl.c

   remove unneeded includes; ok deraadt@
VersionDeltaFile
1.26+1-5bin/ed/buf.c
1.21+1-5bin/ed/glbl.c
1.27+1-4bin/ed/io.c
1.71+1-3bin/ed/main.c
1.19+1-3bin/ed/sub.c
1.15+1-3bin/ed/undo.c
+6-231 files not shown
+7-257 files

FreeBSD/ports 5c13992sysutils/tmux Makefile distinfo, sysutils/tmux/files patch-server-fn.c

sysutils/tmux: Update to 3.6a

Based on a patch from diizzy.  See PR 292007.

Release notes:  https://github.com/tmux/tmux/releases/tag/3.6a
PR:             292007
Sponsored by:   The FreeBSD Foundation
DeltaFile
+10-25sysutils/tmux/Makefile
+0-24sysutils/tmux/files/patch-server-fn.c
+3-5sysutils/tmux/distinfo
+5-0sysutils/tmux/pkg-message
+18-544 files

NetBSD/pkgsrc NHjSmwNdoc CHANGES-2026

   doc: Updated graphics/opencv-contrib-face to 4.13.0
VersionDeltaFile
1.92+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc NiblUhidoc TODO CHANGES-2026

   doc: Updated graphics/opencv to 4.13.0
VersionDeltaFile
1.26625+2-3doc/TODO
1.91+2-1doc/CHANGES-2026
+4-42 files

NetBSD/pkgsrc lIojx2hgraphics/opencv-contrib-face/patches patch-.._opencv__contrib-4.13.0_modules_face_CMakeLists.txt patch-.._opencv__contrib-4.12.0_modules_face_CMakeLists.txt

   opencv-contrib-face: rename patch after update
VersionDeltaFile
1.1+29-0graphics/opencv-contrib-face/patches/patch-.._opencv__contrib-4.13.0_modules_face_CMakeLists.txt
1.2+1-1graphics/opencv-contrib-face/patches/patch-.._opencv__contrib-4.12.0_modules_face_CMakeLists.txt
+30-12 files

NetBSD/pkgsrc 5a93QEKgraphics/opencv PLIST distinfo, graphics/opencv-contrib-face distinfo PLIST

   opencv*: update to 4.13

   New Year update for OpenCV 4.x has been released.

       Core module:
           Modified Input/OutputArray methods to handle 'std::vector' or 'std::vector<std::vector>' in more accurate way #28242
           Made cuda::GpuMatND compatible with InputArray/OutputArray #23913
           Forced output type for empty matrices where it's defined in API #27972
           Added std::vector length check Input/OutputArray #27817
           Added 16-bit LUT and corresponding HAL entrypoint #27890, #27911
           Add cv::Mat::copyAt for for ROI operation #27318
           Extended JSON support in cv::FileStorage: null parsing #27579 and
           Added support parsing null in JSON parser in cv::FileStorage #27579 and back slash "" support #27587
           Fixed cv::solveCubic numerical instability via coefficient normalization #28117
           Fixed tempfile race condition on Windows #28087
           Restore parallel framework name on failure attempt #27802
           Dropped OPENCV_FOR_OPENMP_DYNAMIC_DISABLE environment variable in favor of standard OMP_DYNAMIC #28122
           Enabled fp16 conversions, but disabled NEON FP16 arithmetics on Windows for ARM #27897
           Fixed dot product accumulation causing NORM test failures on Windows ARM64 #28211

    [181 lines not shown]
VersionDeltaFile
1.29+19-15graphics/opencv/PLIST
1.35+11-11graphics/opencv-contrib-face/distinfo
1.9+4-4graphics/opencv-contrib-face/PLIST
1.66+4-4graphics/opencv/distinfo
1.54+2-3graphics/opencv-contrib-face/Makefile
1.27+2-2graphics/opencv/Makefile.common
+42-391 files not shown
+43-417 files

FreeBSD/ports 4b78ca1textproc/feluda distinfo Makefile.crates

textproc/feluda: Update 1.10.3 => 1.11.0

Changelog:
- https://github.com/anistark/feluda/relOBeases/tag/v1.11.0

PR:             291953
Reported by:    Yusuf Yaman <nxjoseph at protonmail.com> (maintainer)
DeltaFile
+59-65textproc/feluda/distinfo
+28-31textproc/feluda/Makefile.crates
+1-2textproc/feluda/Makefile
+88-983 files

NetBSD/pkgsrc PrGdMRgdevel/ncurses/patches patch-ncurses_tinfo_parse_entry.c

   ncurses: remove merged patch
VersionDeltaFile
1.2+1-1devel/ncurses/patches/patch-ncurses_tinfo_parse_entry.c
+1-11 files

NetBSD/pkgsrc njDthlIdoc TODO CHANGES-2026

   doc: Updated misc/khard to 0.20.1
VersionDeltaFile
1.26624+1-2doc/TODO
1.90+2-1doc/CHANGES-2026
+3-32 files

NetBSD/pkgsrc jSdIrnzmisc/khard distinfo Makefile

   khard: update to 0.20.1.

   v0.20.1 2026-01-01

   - Fix reopening of stdin on Windows (#347)
VersionDeltaFile
1.20+4-4misc/khard/distinfo
1.44+2-2misc/khard/Makefile
+6-62 files

FreeBSD/src ece6e06sys/dev/ufshci ufshci_ctrlr.c ufshci_req_queue.c

ufshci: Enable admin command retry

Also, This patch fixes an issue where the admin command flag was not
passed through.

Sponsored by:           Samsung Electronic

Reviewed by:    imp
Differential Revision:  https://reviews.freebsd.org/D54244
DeltaFile
+4-13sys/dev/ufshci/ufshci_ctrlr.c
+3-4sys/dev/ufshci/ufshci_req_queue.c
+2-4sys/dev/ufshci/ufshci_private.h
+4-2sys/dev/ufshci/ufshci_ctrlr_cmd.c
+2-1sys/dev/ufshci/ufshci_dev.c
+2-1sys/dev/ufshci/ufshci_sim.c
+17-256 files

FreeBSD/src ef2d7ccsys/dev/ufshci ufshci_req_queue.c ufshci_ctrlr.c

ufshci: Fix task management queue num_trackers on failure path

Fix a kernel panic caused by the task management queue using
the transfer request queue’s num_entries value.

Sponsored by:           Samsung Electronic

Reviewed by:    imp
Differential Revision:  https://reviews.freebsd.org/D54243
DeltaFile
+5-9sys/dev/ufshci/ufshci_req_queue.c
+2-6sys/dev/ufshci/ufshci_ctrlr.c
+1-1sys/dev/ufshci/ufshci_private.h
+8-163 files

FreeBSD/ports 024490amisc/fq distinfo Makefile, misc/fq/files modules.txt

misc/fq: the port had been updated to the latest version 0.16.0

This release includes jq language fixes, a new safetensors decoder,
and minor improvements and fixes to MP4, AVC, and FLAC decoders.

Go 1.23 and later require dependency packages to be explicitly listed
in `vendor/modules.txt' to be imported; populating GH_TUPLE alone is
not enough.  Unfortunately, I could not find a robust way to generate
this file during the build in offline mode and must resort to keeping
its static copy for now.

Notified by:    upstream (the author), portscout
DeltaFile
+87-0misc/fq/files/modules.txt
+19-19misc/fq/distinfo
+12-10misc/fq/Makefile
+118-293 files

LLVM/project 05b8a36clang/include/clang/Basic DiagnosticSemaKinds.td, clang/lib/Sema SemaExprCXX.cpp

[Clang][Diagnostics] Mention 'import std' in typeid diagnostic (#173236)

Previously, the diagnostic only suggested including `<typeinfo>`. Since
C++20,the standard library may also be made available via `import std;`.

This change updates the diagnostic to mention `import std` as an
alternative and adds a test to cover the new wording.
DeltaFile
+10-0clang/test/SemaCXX/typeid-requires-typeinfo.cpp
+6-3clang/lib/Sema/SemaExprCXX.cpp
+1-1clang/include/clang/Basic/DiagnosticSemaKinds.td
+17-43 files

FreeBSD/ports 5354a6fnet/seaweedfs distinfo Makefile

net/seaweedfs: Update to 4.04

While here, update WWW.

Changelogs:
- https://github.com/seaweedfs/seaweedfs/releases/tag/3.92
- https://github.com/seaweedfs/seaweedfs/releases/tag/3.93
- https://github.com/seaweedfs/seaweedfs/releases/tag/3.94
- https://github.com/seaweedfs/seaweedfs/releases/tag/3.95
- https://github.com/seaweedfs/seaweedfs/releases/tag/3.96
- https://github.com/seaweedfs/seaweedfs/releases/tag/3.97
- https://github.com/seaweedfs/seaweedfs/releases/tag/3.98
- https://github.com/seaweedfs/seaweedfs/releases/tag/3.99
- https://github.com/seaweedfs/seaweedfs/releases/tag/4.00
- https://github.com/seaweedfs/seaweedfs/releases/tag/4.01
- https://github.com/seaweedfs/seaweedfs/releases/tag/4.02
- https://github.com/seaweedfs/seaweedfs/releases/tag/4.03
- https://github.com/seaweedfs/seaweedfs/releases/tag/4.04


    [4 lines not shown]
DeltaFile
+5-5net/seaweedfs/distinfo
+4-4net/seaweedfs/Makefile
+9-92 files

NetBSD/pkgsrc nZvefk0doc TODO CHANGES-2026

   doc: Updated www/kiwix-desktop to 2.5.0
VersionDeltaFile
1.26623+1-2doc/TODO
1.89+2-1doc/CHANGES-2026
+3-32 files

NetBSD/pkgsrc 5IpwJfMwww/kiwix-desktop distinfo Makefile

   kiwix-desktop: update to 2.5.0.

   kiwix-destkop 2.5.0
   ===================

   General:
   * FIX: Bad english in download error message (@theVeryPulse #1331)
   * FIX: Wrong app icon on Linux with Wayland (@Integral-Tech #1384)
   * FIX: Allow to directly access ZIM file (ready-only) for Linux flatpak (@kelson42 #800)
   * FIX: Avoid fulltext crash scenarios (@vighnesh-sawant #1241)
   * NEW: Hidde default Kiwix Server port 80 in URL (@vighnesh-sawant #1417)
   * NEW: Introduce "copy link" in context menu (@Bad-ptr #1422)
   * NEW: Introduce Parrallels shared folder support (@kelson42 #1313)
   * NEW: Tab shortcuts CTRL+PGUP and CTRL+PGDOWN (@kelson42 #1301)
   * NEW: Deactivate menu entries when not actionable (@etude11 #1337)
   * NEW: Speed control option for Text-to-Speech module (@heropj #1317)

   Search(es):
   * FIX: Single word suggestion query followed by a space query (@veloman-yunkan #953)

    [23 lines not shown]
VersionDeltaFile
1.2+4-4www/kiwix-desktop/distinfo
1.5+2-3www/kiwix-desktop/Makefile
+6-72 files

NetBSD/pkgsrc RT6EX3Kdoc CHANGES-2026 TODO

   doc: Updated devel/ncurses to 6.6
VersionDeltaFile
1.88+2-1doc/CHANGES-2026
1.26622+1-2doc/TODO
+3-32 files