LLVM/project 21a1e6elldb/test/API/python_api/file_handle TestFileHandle.py, lldb/test/Shell/ScriptInterpreter/Python io.test

[lldb] skip the python interactive I/O test on windows (#175055)

There is no indication this ever worked on windows as this is the first
test that checks python interactive console from a file.

Looking at the error from the CI, It closed the interpreter before
running any python commands.
Will reconfirm this when I have access to a windows machine. 


From https://github.com/llvm/llvm-project/pull/174216
DeltaFile
+1-1lldb/test/API/python_api/file_handle/TestFileHandle.py
+2-0lldb/test/Shell/ScriptInterpreter/Python/io.test
+3-12 files

LLVM/project c379a88llvm/lib/Target/AMDGPU AMDGPU.td

[NFC][AMDGPU] Reorganize features for gfx125x (#175054)

DeltaFile
+3-2llvm/lib/Target/AMDGPU/AMDGPU.td
+3-21 files

FreeNAS/freenas c9b3bb2src/middlewared/middlewared/plugins sysdataset.py

NAS-139216 / 26.04 / Use statmount and listmount for sysdataset plugin (#17973)

This commit adds some minor improvements to the system dataset plugin to
use optimized syscalls to get mount information.
DeltaFile
+28-21src/middlewared/middlewared/plugins/sysdataset.py
+28-211 files

LLVM/project 289a329llvm/lib/CodeGen EarlyIfConversion.cpp, llvm/test/CodeGen/AArch64 early-ifcvt-likely-predictable.mir

[EarlyIfConversion] Fix loop invariant operands check (#174765)

Fixes a bug in the check which prevented walking up the operands
of the branch condition beyond the operands to the branch instruction
itself.
DeltaFile
+71-0llvm/test/CodeGen/AArch64/early-ifcvt-likely-predictable.mir
+3-3llvm/lib/CodeGen/EarlyIfConversion.cpp
+74-32 files

OPNSense/core 0096f03src/opnsense/mvc/app/controllers/OPNsense/Firewall MigrationController.php, src/opnsense/mvc/app/controllers/OPNsense/Firewall/Api MigrationController.php

Firewall: Rules:  Migration assistant - add export option and guidance for migrations to the new mvc system.
DeltaFile
+142-0src/opnsense/scripts/filter/list_legacy_rules.php
+98-0src/opnsense/mvc/app/views/OPNsense/Firewall/firewall_migration.volt
+55-0src/opnsense/mvc/app/controllers/OPNsense/Firewall/Api/MigrationController.php
+36-0src/opnsense/mvc/app/controllers/OPNsense/Firewall/MigrationController.php
+7-0src/opnsense/service/conf/actions.d/actions_filter.conf
+6-1src/opnsense/mvc/app/models/OPNsense/Base/Menu/MenuSystem.php
+344-16 files

FreeBSD/ports ff86414www/p5-Reddit-Client distinfo Makefile

www/p5-Reddit-Client: Update to 1.395

Update to upstream version 1.395.
Restrict PORTSCOUT to valid upstream version numbers (1.xxx)
to avoid false positives such as 1.3865 while still detecting
future releases.

Sponsored by:   Netzkommune GmbH
DeltaFile
+3-3www/p5-Reddit-Client/distinfo
+3-1www/p5-Reddit-Client/Makefile
+1-0www/p5-Reddit-Client/pkg-plist
+7-43 files

LLVM/project a0b1799llvm/test/CodeGen/Xtensa mul.ll

[𝘀𝗽𝗿] initial version

Created using spr 1.3.8-beta.1
DeltaFile
+54-72llvm/test/CodeGen/Xtensa/mul.ll
+54-721 files

FreeNAS/freenas afe45cdsrc/middlewared/middlewared/api/v26_04_0 system_general.py

NAS-139232 / 26.04 / Fix integration test after system general settings change (#17980)

This commit fixes integration test where as we have broken backwards
compatibility with older api versions, that was failing. After
discussing with Vlad, it was decided to fix the integration test with
just returning id which we have in the newer api version.
DeltaFile
+6-0src/middlewared/middlewared/api/v26_04_0/system_general.py
+6-01 files

LLVM/project 14af55clldb/source/Plugins/SymbolFile/NativePDB PdbAstBuilder.cpp PdbAstBuilder.h

[LLDB][PDB] NFC: Change ToCompilerDecl(Context) signature (#175052)

Follow-up to https://github.com/llvm/llvm-project/pull/173111

`ToCompilerDeclContext` and `ToCompilerDecl` take their arguments as
references, but all callers are pointers. This changes the signature to
take pointers, then addresses the comments at
https://github.com/llvm/llvm-project/pull/173111#discussion_r2673140167
DeltaFile
+12-12lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
+2-2lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.h
+1-1lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.cpp
+15-153 files

LLVM/project ce1f3b2llvm/lib/Target/Xtensa XtensaISelLowering.cpp

[𝘀𝗽𝗿] initial version

Created using spr 1.3.8-beta.1
DeltaFile
+1-1llvm/lib/Target/Xtensa/XtensaISelLowering.cpp
+1-11 files

FreeNAS/freenas e79317asrc/middlewared/middlewared main.py, src/middlewared/middlewared/alembic/versions/26.04 2025-12-31_15-39_split_smb_path.py

type hints
DeltaFile
+23-3src/middlewared/middlewared/utils/mount.py
+4-11src/middlewared/middlewared/service/sharing_service.py
+4-8src/middlewared/middlewared/alembic/versions/26.04/2025-12-31_15-39_split_smb_path.py
+6-2src/middlewared/middlewared/main.py
+37-244 files

LLVM/project 700d1f0llvm/lib/Target/RISCV/MCTargetDesc RISCVBaseInfo.cpp, llvm/test/TableGen RegClassByHwModeCompressPat.td RegClassByHwMode.td

[TableGen] Support RegClassByHwMode in CompressPat

This does not yet handle all cases but at least for the simple
cases such as:
```
def : CompressPat<(PTR_MOV PtrRC:$dst, PtrRC:$src),
                  (PTR_MOV_SMALL PtrRC:$dst, PtrRC:$src)>;
```
tablegen generates sensible code instead of emitting confusing errors.

Reviewed By: arsenm

Pull Request: https://github.com/llvm/llvm-project/pull/171061
DeltaFile
+318-0llvm/test/TableGen/RegClassByHwModeCompressPat.td
+15-9llvm/utils/TableGen/CompressInstEmitter.cpp
+13-0llvm/test/TableGen/RegClassByHwMode.td
+7-5llvm/utils/TableGen/InstrInfoEmitter.cpp
+1-0llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.cpp
+354-145 files

LLVM/project 19a8ca3lldb/tools/lldb-dap/extension package-lock.json, llvm/test/CodeGen/RISCV/rvv clmul-sdnode.ll fixed-vectors-clmul.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.8-beta.1

[skip ci]
DeltaFile
+0-6,820llvm/test/tools/llvm-mca/RISCV/SpacemitX60/rvv-arithmetic.s
+5,850-0lldb/tools/lldb-dap/extension/package-lock.json
+5,742-0llvm/test/CodeGen/RISCV/rvv/clmul-sdnode.ll
+0-5,599llvm/test/tools/llvm-mca/RISCV/SpacemitX60/rvv-fp.s
+4,888-0llvm/test/CodeGen/RISCV/rvv/fixed-vectors-clmul.ll
+0-4,727llvm/test/tools/llvm-mca/RISCV/SiFiveP400/vlseg-vsseg.s
+16,480-17,1463,410 files not shown
+250,567-125,4453,416 files

FreeBSD/ports 7be1ca5shells/fish Makefile

shells/fish: fix the build with DOCS=OFF after 4.3.3

PR:             292281
Reported by:    lysfjord.daniel at smokepit.net
Fixes:          2eb57252799 shells/fish: 4.3.3
DeltaFile
+3-3shells/fish/Makefile
+3-31 files

LLVM/project ecab748llvm/lib/Target/AMDGPU AMDGPU.td

[NFC][AMDGPU] Reorganize features for gfx125x
DeltaFile
+3-2llvm/lib/Target/AMDGPU/AMDGPU.td
+3-21 files

FreeBSD/ports e432a77www/matomo pkg-plist distinfo

www/matomo: Update to 5.6.2

Changelog: https://matomo.org/changelog/
Pass Maintainership to submitter

PR:     292271
Sponsored by:   Netzkommune GmbH
DeltaFile
+105-4www/matomo/pkg-plist
+3-3www/matomo/distinfo
+2-2www/matomo/Makefile
+110-93 files

LLVM/project 292c613llvm/utils/gn/secondary/lldb/source/Plugins/Language/CPlusPlus BUILD.gn

[gn build] Port c7c5259f016bdb12c670b1fba84a17417ff8e3a2
DeltaFile
+1-0llvm/utils/gn/secondary/lldb/source/Plugins/Language/CPlusPlus/BUILD.gn
+1-01 files

FreeNAS/freenas c25e27dsrc/middlewared/middlewared/api/v26_04_0 system_general.py

Fix integration test after system general settings change

This commit fixes integration test where as we have broken backwards compatibility with older api versions, that was failing. After discussing with Vlad, it was decided to fix the integration test with just returning id which we have in the newer api version.
DeltaFile
+6-0src/middlewared/middlewared/api/v26_04_0/system_general.py
+6-01 files

NetBSD/pkgsrc ehOw7Cawww/fengoffice Makefile

   fengoffice: forbid php 8.5 due to php-imap dependency
VersionDeltaFile
1.47+2-2www/fengoffice/Makefile
+2-21 files

FreeBSD/ports 0856fa7lang/gnat13 Makefile

lang/gnat13: fix fetching for aarch64 on 16-CURRENT

Pre-built asset not yet available for this platform.
DeltaFile
+1-1lang/gnat13/Makefile
+1-11 files

FreeNAS/freenas f834850src/middlewared/middlewared main.py, src/middlewared/middlewared/alert/source ipmi_sel.py

Migrate keyvalue service usage to call2 / call_sync2
DeltaFile
+113-0src/middlewared/middlewared/utils/service/call_mixin.py
+17-70src/middlewared/middlewared/main.py
+11-11src/middlewared/middlewared/plugins/pool_/dataset.py
+6-11src/middlewared/middlewared/plugins/pool_/import_pool.py
+2-12src/middlewared/middlewared/plugins/apps/crud.py
+6-6src/middlewared/middlewared/alert/source/ipmi_sel.py
+155-11029 files not shown
+215-20235 files

LLVM/project 55e508clldb/cmake/modules LLDBConfig.cmake, lldb/test/API CMakeLists.txt

[lldb] Repair lldb-dotest's framework path (#174658)

lldb-dotest was likely getting LLDB_FRAMEWORK_DIR from another place
before. Now it's undefined when lldb-dotest is configured, so it's an
empty string. Some API tests will fail to link against LLDB.
DeltaFile
+0-4lldb/test/API/CMakeLists.txt
+1-0lldb/cmake/modules/LLDBConfig.cmake
+1-42 files

FreeNAS/freenas b8fb92csrc/middlewared/middlewared/alert/source failover.py

protect failover alerts on transient errors
DeltaFile
+12-1src/middlewared/middlewared/alert/source/failover.py
+12-11 files

HardenedBSD/src 195badb. Makefile.inc1, usr.sbin/bhyve rfb.c net_backend_slirp.c

Merge remote-tracking branch 'origin/hardened/current/master' into hardened/current/cross-dso-cfi
DeltaFile
+35-12usr.sbin/bhyve/rfb.c
+30-5usr.sbin/bhyve/net_backend_slirp.c
+14-8usr.sbin/bhyve/slirp/slirp-helper.c
+21-1usr.sbin/bhyve/pci_fbuf.c
+11-5usr.sbin/bhyve/bhyve.8
+8-0Makefile.inc1
+119-317 files not shown
+136-3913 files

HardenedBSD/src 4305c98. Makefile.inc1, usr.sbin/bhyve rfb.c net_backend_slirp.c

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+35-12usr.sbin/bhyve/rfb.c
+30-5usr.sbin/bhyve/net_backend_slirp.c
+14-8usr.sbin/bhyve/slirp/slirp-helper.c
+21-1usr.sbin/bhyve/pci_fbuf.c
+11-5usr.sbin/bhyve/bhyve.8
+8-0Makefile.inc1
+119-317 files not shown
+136-3913 files

OpenBSD/ports DVlExQEdevel/github-cli distinfo modules.inc, devel/github-cli/pkg PLIST

   update to github-cli 2.83.20

   from David Uhden Collado, thanks!
   OK sthen
VersionDeltaFile
1.62+518-554devel/github-cli/distinfo
1.54+211-240devel/github-cli/modules.inc
1.28+7-0devel/github-cli/pkg/PLIST
1.69+1-1devel/github-cli/Makefile
+737-7954 files

NetBSD/src N48Gx6vshare/man/man8 diskless.8

   diskless(8): Fix BOOTP/DHCP bootstrap kernel-loading description

   Update the phase-2 description to distinguish RARP/BOOTPARAMS vs
   BOOTP/DHCP secondary boot programs, and describe the BOOTP/DHCP path
   as loading the kernel via NFS handles (mountd + NFS lookup/read).

   While here, fix minor wording/grammar issues.
VersionDeltaFile
1.35+33-26share/man/man8/diskless.8
+33-261 files

LLVM/project 4c171a2flang/test/Lower allocate-source-pointers.f90 array-constructor-2.f90

[flang][NFC] Converted five tests from old lowering to new lowering (part 4) (#174906)

From this point on, the conversion is done to HLFIR, not to FIR.

Tests converted in Lower: allocatables.f90,
allocate-source-pointers.f90, array-constructor-2.f90,
array-elemental-calls-3.f90, array-elemental-calls.f90
DeltaFile
+104-286flang/test/Lower/allocate-source-pointers.f90
+64-83flang/test/Lower/array-constructor-2.f90
+59-53flang/test/Lower/allocatables.f90
+28-50flang/test/Lower/array-elemental-calls.f90
+19-8flang/test/Lower/array-elemental-calls-3.f90
+274-4805 files

NetBSD/pkgsrc ta4gaJznet/messagelib/patches patch-src_checkphishingurl_searchfullhashjob.cpp patch-src_checkphishingurl_createphishingurldatabasejob.cpp

   messagelib: Don't unconditionally ignore SSL errors from Google's phishing API

   CVE-2025-69412
   https://invent.kde.org/pim/messagelib/-/commit/df525dc91498423f3c45e143efab1c7102776652
VersionDeltaFile
1.1+26-0net/messagelib/patches/patch-src_checkphishingurl_searchfullhashjob.cpp
1.1+26-0net/messagelib/patches/patch-src_checkphishingurl_createphishingurldatabasejob.cpp
1.1+26-0net/messagelib/patches/patch-src_checkphishingurl_checkphishingurljob.cpp
1.1+16-0net/messagelib/patches/patch-src_checkphishingurl_createphishingurldatabasejob.h
1.1+16-0net/messagelib/patches/patch-src_checkphishingurl_checkphishingurljob.h
1.1+16-0net/messagelib/patches/patch-src_checkphishingurl_searchfullhashjob.h
+126-02 files not shown
+135-38 files

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

InstCombine: Improve SimplifyDemandedFPClass fabs handling

Try to eliminate the fabs if the source is known positive.
DeltaFile
+4-8llvm/test/Transforms/InstCombine/simplify-demanded-fpclass.ll
+5-0llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
+1-2llvm/test/Transforms/InstCombine/simplify-demanded-fpclass-shufflevector.ll
+10-103 files