LLVM/project 6237781llvm/lib/Target/AArch64 AArch64InstrInfo.cpp SVEInstrFormats.td, llvm/lib/Target/AArch64/MCTargetDesc AArch64MCTargetDesc.h

[AArch64] Add an OPERAND_IMM_UINT5 operand type. (#209057)

This helps verify that certain operands are in the correct range, in
this case
0-31.
DeltaFile
+6-0llvm/test/CodeGen/AArch64/verify-imm.mir
+6-0llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
+3-0llvm/tools/llvm-exegesis/lib/AArch64/Target.cpp
+2-0llvm/lib/Target/AArch64/SVEInstrFormats.td
+1-0llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h
+18-05 files

FreeBSD/ports bd39bd6devel/tree-sitter distinfo Makefile

devel/tree-sitter: Update to 0.26.11
DeltaFile
+3-3devel/tree-sitter/distinfo
+1-1devel/tree-sitter/Makefile
+4-42 files

NetBSD/src 9tfSQgzsys/dev/ata ata.c atavar.h

   Add a function, ata_set_pio8(), that issues SET_FEATURES with
   WDSF_8BIT_PIO_EN to enable 8-bit PIO on a device.
VersionDeltaFile
1.173+40-2sys/dev/ata/ata.c
1.111+2-1sys/dev/ata/atavar.h
+42-32 files

LLVM/project 349542fllvm/test/Transforms/LoopVectorize/RISCV strided-accesses.ll

[VPlan] Add strided access test with disjoint or. (NFC) (#209051)

Currently this is missed by VPlan SCEV due to disjoint OR not being
handled.
DeltaFile
+109-0llvm/test/Transforms/LoopVectorize/RISCV/strided-accesses.ll
+109-01 files

NetBSD/src B7iepEosys/dev/ic pcf8584reg.h

   Indentation improvements.
VersionDeltaFile
1.5+10-6sys/dev/ic/pcf8584reg.h
+10-61 files

LLVM/project 7ccaa93llvm/lib/Target/WebAssembly WebAssemblyCodeGenPassBuilder.cpp

fix

Created using spr 1.3.7
DeltaFile
+0-1llvm/lib/Target/WebAssembly/WebAssemblyCodeGenPassBuilder.cpp
+0-11 files

LLVM/project 987bca0llvm/lib/Target/WebAssembly WebAssemblyCodeGenPassBuilder.cpp WebAssemblyReduceToAnyAllTrue.cpp

[𝘀𝗽𝗿] changes to main this commit is based on

Created using spr 1.3.7

[skip ci]
DeltaFile
+235-0llvm/lib/Target/WebAssembly/WebAssemblyCodeGenPassBuilder.cpp
+125-104llvm/lib/Target/WebAssembly/WebAssemblyReduceToAnyAllTrue.cpp
+214-0llvm/lib/Target/WebAssembly/WebAssemblyCoalesceFeaturesAndStripAtomics.cpp
+18-183llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
+68-38llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
+86-13llvm/lib/Target/WebAssembly/WebAssembly.h
+746-33810 files not shown
+917-37916 files

LLVM/project fd0003cllvm/lib/Target/WebAssembly WebAssemblyCodeGenPassBuilder.cpp WebAssemblyReduceToAnyAllTrue.cpp

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+236-0llvm/lib/Target/WebAssembly/WebAssemblyCodeGenPassBuilder.cpp
+125-104llvm/lib/Target/WebAssembly/WebAssemblyReduceToAnyAllTrue.cpp
+214-0llvm/lib/Target/WebAssembly/WebAssemblyCoalesceFeaturesAndStripAtomics.cpp
+20-185llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
+98-15llvm/lib/Target/WebAssembly/WebAssembly.h
+68-38llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
+761-34211 files not shown
+957-39117 files

NetBSD/pkgsrc-wip 4bb8045. Makefile, ed COMMIT_MSG Makefile

ed: Update to 1.22.5
DeltaFile
+135-0ed/COMMIT_MSG
+22-0ed/Makefile
+7-0ed/DESCR
+6-0ed/PLIST
+5-0ed/distinfo
+1-0Makefile
+176-06 files

NetBSD/pkgsrc-wip 68dc416. Makefile, zutils COMMIT_MSG Makefile

zutils: remove, imported to pkgsrc
DeltaFile
+0-75zutils/COMMIT_MSG
+0-33zutils/Makefile
+0-17zutils/PLIST
+0-14zutils/DESCR
+0-5zutils/distinfo
+0-1Makefile
+0-1456 files

LLVM/project 5566928llvm/lib/Analysis LoopAccessAnalysis.cpp, llvm/test/Analysis/LoopAccessAnalysis wide-pointer-index-distance.ll

[LAA] Bail out of dependence analysis when distance exceeds 64 bits. (#209052)

isDependent extracts the dependence distance into 64 bit integers.

Bail out conservatively when the constant distance or the signed minimum
distance needs more than 64 bits.
DeltaFile
+85-0llvm/test/Analysis/LoopAccessAnalysis/wide-pointer-index-distance.ll
+16-5llvm/lib/Analysis/LoopAccessAnalysis.cpp
+101-52 files

FreeNAS/freenas adb62b6src/middlewared/middlewared/api/v26_0_0 app_image.py, src/middlewared/middlewared/api/v27_0_0 app_image.py

Redact app.image.pull registry credentials in job history and logs

## Problem
The `auth_config` username/password accepted by `app.image.pull` were typed as plain `str`, so the secret scrubber never masked them. Any registry credentials supplied for a private image pull landed in cleartext in `core.get_jobs` arguments (which get bundled into support debugs) and in `middlewared.log`.

## Solution
Wrapped `username`/`password` in `Secret[str]` in the current and 26.0 API models, matching what `app.registry` already does, and unwrapped them with `.get_secret_value()` in the pull plugin so the real values still reach the registry. Job arguments and logs now show `********`.
DeltaFile
+7-3src/middlewared/middlewared/api/v26_0_0/app_image.py
+7-3src/middlewared/middlewared/api/v27_0_0/app_image.py
+2-2src/middlewared/middlewared/plugins/apps_images/pull.py
+16-83 files

LLVM/project e7885c3llvm/lib/Target/WebAssembly WebAssemblyCodeGenPassBuilder.cpp WebAssemblyReduceToAnyAllTrue.cpp

[𝘀𝗽𝗿] changes to main this commit is based on

Created using spr 1.3.7

[skip ci]
DeltaFile
+234-0llvm/lib/Target/WebAssembly/WebAssemblyCodeGenPassBuilder.cpp
+125-104llvm/lib/Target/WebAssembly/WebAssemblyReduceToAnyAllTrue.cpp
+18-183llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
+197-0llvm/lib/Target/WebAssembly/WebAssemblyCoalesceFeaturesAndStripAtomics.cpp
+68-38llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
+73-13llvm/lib/Target/WebAssembly/WebAssembly.h
+715-33810 files not shown
+884-37916 files

LLVM/project 9a921b4llvm/lib/Target/WebAssembly WebAssemblyCodeGenPassBuilder.cpp WebAssemblyReduceToAnyAllTrue.cpp

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+235-0llvm/lib/Target/WebAssembly/WebAssemblyCodeGenPassBuilder.cpp
+125-104llvm/lib/Target/WebAssembly/WebAssemblyReduceToAnyAllTrue.cpp
+214-0llvm/lib/Target/WebAssembly/WebAssemblyCoalesceFeaturesAndStripAtomics.cpp
+18-183llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
+68-38llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
+86-13llvm/lib/Target/WebAssembly/WebAssembly.h
+746-33810 files not shown
+917-37916 files

NetBSD/pkgsrc sBvley4doc CHANGES-2026

   doc: Added fonts/colorsym version 1.0.0
VersionDeltaFile
1.4406+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc NEALxTbfonts Makefile

   fonts/Makefile: + colorsym
VersionDeltaFile
1.460+2-1fonts/Makefile
+2-11 files

NetBSD/pkgsrc b87t1Llfonts/colorsym Makefile PLIST

   fonts/colorsym: import colorsym-1.0.0

   A free, open-source way to identify color when color alone isn't
   enough.

   ColorSym is an open color-identification system: a set of simple,
   memorable symbols that map to colors so anyone can tell them apart,
   even when color by itself fails. Use it in board games, apps, print,
   signage, packaging, and anywhere color carries meaning.
VersionDeltaFile
1.1+18-0fonts/colorsym/Makefile
1.1+9-0fonts/colorsym/PLIST
1.1+7-0fonts/colorsym/DESCR
1.1+5-0fonts/colorsym/distinfo
+39-04 files

NetBSD/pkgsrc TJyx1HPdoc CHANGES-2026

   doc: Updated archivers/zutils to 1.16
VersionDeltaFile
1.4405+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc uDHgoEaarchivers/zutils Makefile distinfo

   zutils: Update to 1.16

   2026-02-07  Antonio Diaz Diaz  <antonio at gnu.org>

           * Version 1.16 released.
           * zcmp.cc (getnum): Accept underscore separators ('_').
             Print large numbers with underscore separators ('_').
           * zgrep.cc: Assign short option name '-?' to '--help'.
           * *.cc: (show_help): Print "*Exit status*" for section in man page.
           * Makefile.in (install-bin): Warn of changes in /etc/zutils.conf.

   2025-05-27  Antonio Diaz Diaz  <antonio at gnu.org>

           * Version 1.15 released.
           * zcat, ztest, zupdate: New option '-x, --exclude'.
           * zgrep: New option '--exclude'.
           * zgrep.cc: Exit with status 2 if write error on stdout.

   2025-01-05  Antonio Diaz Diaz  <antonio at gnu.org>

    [56 lines not shown]
VersionDeltaFile
1.14+9-15archivers/zutils/Makefile
1.10+4-4archivers/zutils/distinfo
1.3+1-1archivers/zutils/PLIST
+14-203 files

FreeBSD/ports 051b20fsecurity/py-badkeys distinfo Makefile

security/py-badkeys: Update to 0.0.19

PR:             295603
DeltaFile
+3-3security/py-badkeys/distinfo
+1-1security/py-badkeys/Makefile
+4-42 files

OpenBSD/src aVT0Gdzusr.bin/tmux xmalloc.c

   Add missing calloc check and use fatal. Prompted by a similar change
   from Yayo Razo.
VersionDeltaFile
1.15+11-20usr.bin/tmux/xmalloc.c
+11-201 files

NetBSD/pkgsrc JSGdh6qdoc CHANGES-2026

   doc: Updated devel/gccmakedep to 1.0.5
VersionDeltaFile
1.4404+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc sbhCCHXdevel/gccmakedep Makefile distinfo

   gccmakedep: update to 1.0.5.

   Alan Coopersmith (5):
         Improve man page formatting
         Strip trailing whitespace from source files
         gitlab CI: drop the ci-fairy check-mr job
         meson: Add option to build with meson
         gccmakedep 1.0.5

   Bjarni Ingi Gislason (1):
         gccmakedep.1: Some editorial changes for this man page

   Zitrone (2):
         gccmakedep.in: add license into header
         add COPYING file
VersionDeltaFile
1.4+4-6devel/gccmakedep/Makefile
1.6+4-4devel/gccmakedep/distinfo
+8-102 files

NetBSD/src sRgcrllusr.sbin/sysinst disks.c Makefile.inc

   Try to conditionaly remove more dead code and messages for extremely
   constrained environments like atari install disks.
VersionDeltaFile
1.99+9-2usr.sbin/sysinst/disks.c
1.56+8-1usr.sbin/sysinst/Makefile.inc
1.58+5-1usr.sbin/sysinst/msg.mi.pl
1.52+5-1usr.sbin/sysinst/msg.mi.es
1.55+5-1usr.sbin/sysinst/msg.mi.fr
1.60+5-1usr.sbin/sysinst/msg.mi.de
+37-73 files not shown
+47-109 files

FreeNAS/freenas 7f2d003src/middlewared/middlewared/plugins/boot_environment crud.py __init__.py, tests README.md

Replace zectl with the truenas_bootenv engine

zectl is being retired in favor of the truenas_bootenv package that
ships with truenas_pylibzfs (companion commit there). The
boot_environment plugin now calls the engine in-process on
middleware's thread-local libzfs handle: query, clone, activate,
destroy and keep all go through it, utils.py with run_zectl_cmd is
deleted, and the boot-time promotion of installer-cloned datasets
uses the engine instead of parsing zfs list -j output.

Mutations serialize on an asyncio lock. A truenas:grub_pending
marker on the boot pool tracks pending menu regenerations and
setup() reconciles it on start. If the menu cannot be written,
activate rolls bootfs back. The boot pool is synced after every
menu write so the change is crash safe.

Re-activating the already-activated boot environment is allowed
again as the retry path after a failed menu regeneration, and
can_activate treats a missing truenas:kernel_version as not
activatable instead of only the literal "-".
DeltaFile
+249-91src/middlewared/middlewared/plugins/boot_environment/crud.py
+119-7src/middlewared/middlewared/plugins/boot_environment/__init__.py
+77-0tests/unit/test_boot_environment_setup.py
+26-8tests/api2/test_boot_environments.py
+0-19src/middlewared/middlewared/plugins/boot_environment/utils.py
+5-6tests/README.md
+476-1311 files not shown
+477-1317 files

NetBSD/pkgsrc a1da214doc CHANGES-2026

   doc: Updated x11/xwud to 1.0.8
VersionDeltaFile
1.4403+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc f2iMqbBx11/xwud Makefile distinfo

   xwud: update to 1.0.8.

   Alan Coopersmith (7):
         -help should exit(0) not (1)
         Improve man page formatting
         man page: fix warnings from `mandoc -T lint`
         gitlab CI: drop the ci-fairy check-mr job
         Strip trailing whitespace from source files
         meson: Add option to build with meson
         xwud 1.0.8
VersionDeltaFile
1.13+3-5x11/xwud/Makefile
1.10+4-4x11/xwud/distinfo
+7-92 files

NetBSD/pkgsrc SgiweRhdoc CHANGES-2026

   doc: Updated x11/xwd to 1.0.10
VersionDeltaFile
1.4402+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc FuM2089x11/xwd Makefile distinfo

   xwd: update to 1.0.10.

   Alan Coopersmith (6):
         Improve man page formatting
         man page: fix warnings from `mandoc -T lint`
         gitlab CI: drop the ci-fairy check-mr job
         Check for malloc failures
         meson: Add option to build with meson
         xwd 1.0.10
VersionDeltaFile
1.15+3-5x11/xwd/Makefile
1.12+4-4x11/xwd/distinfo
+7-92 files

NetBSD/pkgsrc CkjqY9Ndoc CHANGES-2026

   doc: Updated x11/xvinfo to 1.1.6
VersionDeltaFile
1.4401+2-1doc/CHANGES-2026
+2-11 files