LLVM/project b5d2e9acompiler-rt/lib/tsan/go tsan_go.cpp, compiler-rt/lib/tsan/rtl tsan_rtl_report.cpp tsan_symbolize.h

lib/tsan/go: add mechanism to skip frames

Some Go frames are wrapper functions that we don't want to report to
users. Add a mechanism for the Go runtime to tell the tsan runtime not
to report those frames.

For https://github.com/golang/go/issues/73915
DeltaFile
+35-15compiler-rt/lib/tsan/go/tsan_go.cpp
+7-1compiler-rt/lib/tsan/rtl/tsan_rtl_report.cpp
+1-1compiler-rt/lib/tsan/rtl/tsan_symbolize.h
+1-1compiler-rt/lib/tsan/rtl/tsan_symbolize.cpp
+44-184 files

LLVM/project 8448709llvm/lib/Transforms/InstCombine InstCombineSimplifyDemanded.cpp, llvm/test/Transforms/InstCombine simplify-demanded-fpclass.ll

InstCombine: Fix defining undef constant vector elts in SimplifyDemandedFPClass

Fold constants of known single class to the original constant instead of
a new constant. This avoids overdefining vector elements that were originally
undefined with the splat constant.
DeltaFile
+29-0llvm/test/Transforms/InstCombine/simplify-demanded-fpclass.ll
+12-2llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+41-22 files

LLVM/project c436551llvm/lib/Transforms/InstCombine InstCombineSimplifyDemanded.cpp

InstCombine: Fix wrong interested mask in SimplifyDemandedFPClass (#174072)

We are interested in the values that are still candidates, not ones
that have already been ruled out from the uses. Avoids regressions
when new uses are introduced.
DeltaFile
+1-1llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+1-11 files

LLVM/project b66557dcross-project-tests/dtlto archive.test archives-same-module-id.test, lld/ELF InputFiles.cpp

[DTLTO][ELF][COFF] Add archive support for DTLTO. (#157043)

This patch implements support for handling archive members in DTLTO.
 
Unlike ThinLTO, where archive members are passed as in-memory buffers,
DTLTO requires archive members to be materialized as individual files on
the filesystem.
This is necessary because DTLTO invokes clang externally, which expects
file-based inputs.
To support this, this implementation identifies archive members among
the input files,
saves them to the filesystem, and updates their module_id to match their
file paths.
DeltaFile
+212-0llvm/lib/DTLTO/DTLTO.cpp
+80-0cross-project-tests/dtlto/archive.test
+61-0llvm/include/llvm/DTLTO/DTLTO.h
+11-48lld/ELF/InputFiles.cpp
+55-0cross-project-tests/dtlto/archives-same-module-id.test
+35-0cross-project-tests/dtlto/archives-mixed-lto-modes-test.test
+454-4811 files not shown
+542-6217 files

LLVM/project cc49ab7clang/include/clang/Basic BuiltinsAMDGPU.def, clang/test/SemaHIP amdgpu-global-atomic-fmin-err.hip amdgpu-global-atomic-fmax-err.hip

[Clang] Remove 't' from __builtin_amdgcn_global_atomic_fmin/fmax_f64 (#173969)

Allows for type checking depending on the built-in signature.

There is no `f32` version for both builtins.
DeltaFile
+22-0clang/test/SemaHIP/amdgpu-global-atomic-fmin-err.hip
+22-0clang/test/SemaHIP/amdgpu-global-atomic-fmax-err.hip
+2-2clang/include/clang/Basic/BuiltinsAMDGPU.def
+46-23 files

FreeBSD/ports feab1e8graphics/gpu-firmware-intel-kmod pkg-plist

graphics/gpu-firmware-intel-kmod: Fix plist for Kaby Lake
DeltaFile
+1-0graphics/gpu-firmware-intel-kmod/pkg-plist
+1-01 files

LLVM/project c51c1e0mlir/docs/Bindings Python.md

add doc
DeltaFile
+12-0mlir/docs/Bindings/Python.md
+12-01 files

LLVM/project 059b344mlir/include/mlir/Dialect/Utils StaticValueUtils.h, mlir/lib/Dialect/Linalg/Transforms FoldAddIntoDest.cpp

[mlir][DialectUtils] Add helper for matching zero int/float values
DeltaFile
+4-9mlir/lib/Dialect/SparseTensor/Transforms/SparseTensorRewriting.cpp
+13-0mlir/lib/Dialect/Utils/StaticValueUtils.cpp
+8-1mlir/include/mlir/Dialect/Utils/StaticValueUtils.h
+1-1mlir/lib/Dialect/Linalg/Transforms/FoldAddIntoDest.cpp
+26-114 files

LLVM/project a85195cmlir/docs/Bindings Python.md

add doc
DeltaFile
+10-0mlir/docs/Bindings/Python.md
+10-01 files

FreeBSD/ports ff95715security/wazuh-agent Makefile, security/wazuh-agent/files patch-src-data_provider-src_sysInfoFreeBSD.cpp

security/wazuh-agent: Reimplement getPackages() using SQLite

- getPackages() is a function used to get a set of information about
  the packages installed on the system where the manager and agent
  are installed. To obtain this information, pkg-query(8) was used;
  however, prior to this commit, it was assumed that pkg(8) was
  installed on the system, which could be wrong, especially on systems
  such as jails, where pkg(8) is normally used from the host. With
  this change, we leverage SQLite to read the pkg(8) database and
  obtain information about the packages, which is also much more
  efficient than executing a command. This also fixes the segmentation
  fault in wazuh-modulesd when this condition occurs.
- Bump PORTREVISION
DeltaFile
+114-60security/wazuh-agent/files/patch-src-data_provider-src_sysInfoFreeBSD.cpp
+1-0security/wazuh-agent/Makefile
+115-602 files

FreeBSD/ports c86d3fcsecurity/wazuh-manager distinfo Makefile, security/wazuh-manager/files patch-src-data_provider-src_sysInfoFreeBSD.cpp check_pid.c

security/wazuh-manager: Improve port to run inside jail

- Reimplement getPackages() using SQLite
  getPackages() is a function used to get a set of information about
  the packages installed on the system where the manager and agent
  are installed. To obtain this information, pkg-query(8) was used;
  however, prior to this commit, it was assumed that pkg(8) was
  installed on the system, which could be wrong, especially on systems
  such as jails, where pkg(8) is normally used from the host. With
  this change, we leverage SQLite to read the pkg(8) database and
  obtain information about the packages, which is also much more
  efficient than executing a command. This also fixes the segmentation
  fault inside jail in wazuh-modulesd when this condition occurs.
- Fix wazuh-apid when security.bsd.see_other_{u,g}ids=0
  wazuh-apid checks the status of some daemons (or services) before
  starting completely, and if it cannot detect the status, it may
  mark the service as failed or stopped. When security.bsd.see_other_{u,g}ids
  is enabled, apid cannot correctly detect the status of some daemons
  running as root, such as wazuh-execd and wazuh-modulesd, so the API

    [7 lines not shown]
DeltaFile
+114-60security/wazuh-manager/files/patch-src-data_provider-src_sysInfoFreeBSD.cpp
+103-0security/wazuh-manager/files/check_pid.c
+33-0security/wazuh-manager/files/patch-framework-wazuh-core-cluster_utils.py
+8-8security/wazuh-manager/distinfo
+5-0security/wazuh-manager/Makefile
+2-0security/wazuh-manager/pkg-plist
+265-686 files

LLVM/project 6982c68libcxx/test/std/utilities/optional/optional.iterator iterator.pass.cpp

[libc++][NFC] Clean up optional iterator test (#174055)

Addresses `optional.iterator/iterator.pass.cpp` concerns brought up in
#173948
DeltaFile
+29-37libcxx/test/std/utilities/optional/optional.iterator/iterator.pass.cpp
+29-371 files

FreeBSD/ports 0b4ed99security/vaultwarden distinfo Makefile.crates

security/vaultwarden: Update to 1.35.1

Bugfix to 1.35.0

PR:             292043
Reported by:    Bernard Spil
DeltaFile
+43-41security/vaultwarden/distinfo
+20-19security/vaultwarden/Makefile.crates
+1-1security/vaultwarden/Makefile
+64-613 files

LLVM/project 2368c97llvm/lib/Transforms/InstCombine InstCombineSimplifyDemanded.cpp

ValueTracking: Fix wrong interested mask in SimplifyDemandedFPClass

We are interested in the values that are still candidates, not ones
that have already been ruled out from the uses. Avoids regressions
when new uses are introduced.
DeltaFile
+1-1llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+1-11 files

LLVM/project 9ba8371mlir/cmake/modules AddMLIRPython.cmake, mlir/examples/standalone CMakeLists.txt

[mlir][python] fix flatnamespace
DeltaFile
+46-7mlir/examples/standalone/test/python/smoketest.py
+12-2mlir/test/Examples/standalone/test.wheel.toy
+5-7mlir/examples/standalone/test/lit.cfg.py
+6-0mlir/cmake/modules/AddMLIRPython.cmake
+3-1mlir/examples/standalone/CMakeLists.txt
+2-0mlir/test/Examples/standalone/test.toy
+74-176 files

LLVM/project 4ce83f8mlir/cmake/modules AddMLIRPython.cmake, mlir/examples/standalone CMakeLists.txt

[mlir][python] fix flatnamespace
DeltaFile
+46-7mlir/examples/standalone/test/python/smoketest.py
+12-2mlir/test/Examples/standalone/test.wheel.toy
+5-7mlir/examples/standalone/test/lit.cfg.py
+6-0mlir/cmake/modules/AddMLIRPython.cmake
+3-1mlir/examples/standalone/CMakeLists.txt
+2-0mlir/test/Examples/standalone/test.toy
+74-176 files

LLVM/project 4a35c75llvm/lib/Target/RISCV RISCVInstrInfoXqci.td, llvm/test/CodeGen/RISCV xqcibm-insert.ll

[RISCV] Convert ORI with SingleBitSetMaskImm12 to BSETI when Xqcibm is enabled (#174054)

`BSETI` can be compressed to `QC_C_BSETI` when `Xqcibm` is enabled.
DeltaFile
+57-0llvm/test/CodeGen/RISCV/xqcibm-insert.ll
+9-0llvm/lib/Target/RISCV/RISCVInstrInfoXqci.td
+66-02 files

FreeBSD/ports 7fccbe9multimedia/navidrome distinfo Makefile, multimedia/navidrome/files modules.txt

multimedia/navidrome: update to 0.59.0

Change the way to deal with npm, to make it more dynamic and not
requireing an actual cache of the npm state.

Reviewed by:            kbowling (maintainer)
Approved by:            kbowling (maintainer)
Differential Reviewed:  https://reviews.freebsd.org/D54417
DeltaFile
+11,718-0multimedia/navidrome/files/packagejsons/package-lock.json
+255-227multimedia/navidrome/distinfo
+173-75multimedia/navidrome/files/modules.txt
+90-65multimedia/navidrome/Makefile
+85-0multimedia/navidrome/files/packagejsons/package.json
+12,321-3675 files

NetBSD/pkgsrc FnejU1Kdoc CHANGES-2025

   doc: Updated mail/fetchmailconf to 6.6.2
VersionDeltaFile
1.7518+2-1doc/CHANGES-2025
+2-11 files

NetBSD/pkgsrc tHHlUXDmail/fetchmailconf Makefile

   fetchmailconf: Update to 6.6.2
VersionDeltaFile
1.127+2-2mail/fetchmailconf/Makefile
+2-21 files

NetBSD/pkgsrc sl29ENHdoc TODO CHANGES-2025

   doc: Updated mail/fetchmail to 6.6.2
VersionDeltaFile
1.26599+1-2doc/TODO
1.7517+2-1doc/CHANGES-2025
+3-32 files

NetBSD/pkgsrc ZE05bLrmail/fetchmail distinfo Makefile, mail/fetchmail/patches patch-Makefile.in patch-configure.ac

   fetchmail: Update to 6.6.2

   pkgsrc changes:
   ---------------
     * Remove obsolete MESSAGE file.

   upstream changes:
   -----------------
   fetchmail-6.6.2 (released 2025-12-09, 32386 LoC):

   ## BUGFIX:
   * fetchmail 6.6.0 and 6.6.1 could not be configured without SSL, it would break
     compiling sink.c.  Fix compilation.  Report by Toralf Förster, analysis and
     different patch suggested by Holger Hoffstätte, fixes #86.
     https://bugs.gentoo.org/967258 and
     https://gitlab.com/fetchmail/fetchmail/-/issues/86

   -------------------------------------------------------------------------------
   fetchmail-6.6.1 (released 2025-11-12, 32381 LoC):

    [174 lines not shown]
VersionDeltaFile
1.71+7-7mail/fetchmail/distinfo
1.8+4-4mail/fetchmail/patches/patch-Makefile.in
1.6+3-3mail/fetchmail/patches/patch-configure.ac
1.7+3-3mail/fetchmail/patches/patch-configure
1.213+2-2mail/fetchmail/Makefile
1.21+2-1mail/fetchmail/PLIST
+21-201 files not shown
+22-217 files

NetBSD/pkgsrc hwcfqMsnet/slumber distinfo

   (net/slumber) regen distinfo
VersionDeltaFile
1.38+4-4net/slumber/distinfo
+4-41 files

LLVM/project 611e296mlir/cmake/modules AddMLIRPython.cmake, mlir/examples/standalone CMakeLists.txt

[mlir][python] fix flatnamespace
DeltaFile
+25-2mlir/examples/standalone/test/python/smoketest.py
+5-7mlir/examples/standalone/test/lit.cfg.py
+6-2mlir/test/Examples/standalone/test.wheel.toy
+6-0mlir/cmake/modules/AddMLIRPython.cmake
+3-1mlir/examples/standalone/CMakeLists.txt
+2-0mlir/test/Examples/standalone/test.toy
+47-126 files

FreeBSD/ports 0d200b8www/py-django-cms distinfo Makefile

www/py-django-cms: Update to 5.0.5
DeltaFile
+3-3www/py-django-cms/distinfo
+1-1www/py-django-cms/Makefile
+4-42 files

FreeBSD/ports e64b8e4net-im/teams Makefile pkg-plist, net-im/teams/files patch-scripts_afterpack.js teams.in

net-im/teams: Add port: Unofficial Microsoft Teams client

Unofficial Microsoft Teams client for Linux using Electron. It uses
the Web App and wraps it as a standalone application using Electron.

WWW: https://github.com/IsmaelMartinez/teams-for-linux
DeltaFile
+6,864-0net-im/teams/files/packagejsons/package-lock.json
+166-0net-im/teams/files/packagejsons/package.json
+44-0net-im/teams/Makefile
+20-0net-im/teams/files/patch-scripts_afterpack.js
+17-0net-im/teams/pkg-plist
+13-0net-im/teams/files/teams.in
+7,124-05 files not shown
+7,145-011 files

HardenedBSD/src d5e0be0sys/fs/nfsclient nfs_clvnops.c

Merge remote-tracking branch 'origin/hardened/current/master' into hardened/current/cross-dso-cfi
DeltaFile
+2-1sys/fs/nfsclient/nfs_clvnops.c
+2-11 files

HardenedBSD/src c010286sys/fs/nfsclient nfs_clvnops.c

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+2-1sys/fs/nfsclient/nfs_clvnops.c
+2-11 files

HardenedBSD/src 19db59fusr.sbin/nfsd nfsd.8

Merge branch 'freebsd/14-stable/main' into hardened/14-stable/master
DeltaFile
+60-2usr.sbin/nfsd/nfsd.8
+60-21 files

HardenedBSD/src c2b8a5cusr.sbin/nfsd nfsd.8

Merge branch 'freebsd/15-stable/main' into hardened/15-stable/main
DeltaFile
+60-2usr.sbin/nfsd/nfsd.8
+60-21 files