OPNSense/core c3a24desrc/www interfaces.php

interfaces: looks like an oversight in validation

In the configuration there only exists "track6", but for "idassoc6" we
were looking for that instead which PHP could confuse with a "0" value
when empty.

PR: https://forum.opnsense.org/index.php?topic=50488.0
DeltaFile
+1-1src/www/interfaces.php
+1-11 files

FreeBSD/ports 7ae4a20net-p2p/py-stig distinfo Makefile

net-p2p/py-stig: Update 0.14.1a0 => 0.14.2a0

Changelogs:
* https://github.com/rndusr/stig/blob/v0.14.2a0/CHANGELOG

Approved by:    db@, yuri@ (Mentors, implicit)
DeltaFile
+3-3net-p2p/py-stig/distinfo
+1-1net-p2p/py-stig/Makefile
+4-42 files

FreeBSD/ports 5a132e3. UPDATING, dns/ddclient Makefile distinfo

dns/ddclient: Update 3.11.2 => 4.0.0

Changelog:
https://github.com/ddclient/ddclient/releases/tag/v4.0.0

This release moves the default configuration file location from
/usr/local/etc/ to /usr/local/etc/ddclient/.  Please move your
existing ddclient.conf to the new location before restarting ddclient.

- Fix warnings from portclippy.
- Parametrize ddclient with PORTNAME.
- Simplify and optimize do-install.
- Move docs installation to do-install-DOCS-on.

PR:             292669
Co-authored-by: Vladimir Druzenko <vvd at FreeBSD.org>
DeltaFile
+26-29dns/ddclient/files/patch-ddclient.in
+15-16dns/ddclient/Makefile
+12-0UPDATING
+3-3dns/ddclient/files/patch-configure.ac
+3-3dns/ddclient/distinfo
+1-1dns/ddclient/pkg-plist
+60-522 files not shown
+62-548 files

NetBSD/src CLcsvvZsys/dev/fdt fdt_dma.h

   fdt_dma: extend dma_req with controller-specific ancillary data

   To support the i.MX23's DMA controller, it is necessary to pass
   controller-specific ancillary data (i.MX23: pio words) to the controller with
   each request.
VersionDeltaFile
1.2+6-2sys/dev/fdt/fdt_dma.h
+6-21 files

LLVM/project e5d2358polly/include/polly ScopDetectionDiagnostic.h ScopDetection.h, polly/lib/Analysis ScopDetectionDiagnostic.cpp ScopDetection.cpp

[Polly] Reject scalable vector types (#177871)

Polly currently does not consider types without fixed length, which can
be encountered if an input source uses e.g. ARM SVE builtins. Such
programs have already been optimized manually. Non-fixed type lengths
also add to the difficulty of dependency analysis. Skip such types
entirely for now.
 
Fixes: #177859
DeltaFile
+95-0polly/test/ScopDetectionDiagnostics/ReportIncompatibleType.ll
+32-0polly/lib/Analysis/ScopDetectionDiagnostic.cpp
+28-0polly/include/polly/ScopDetectionDiagnostic.h
+17-0polly/lib/Analysis/ScopDetection.cpp
+4-0polly/include/polly/ScopDetection.h
+176-05 files

Linux/linux 0237777drivers/scsi scsi_error.c scsi_lib.c, drivers/scsi/qla2xxx qla_isr.c

Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi

Pull SCSI fixes from James Bottomley:
 "Only one core change, the rest are drivers.

  The core change reorders some state operations in the error handler to
  try to prevent missed wake ups of the error handler (which can halt
  error processing and effectively freeze the entire system)"

* tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi:
  scsi: qla2xxx: Sanitize payload size to prevent member overflow
  scsi: target: iscsi: Fix use-after-free in iscsit_dec_session_usage_count()
  scsi: target: iscsi: Fix use-after-free in iscsit_dec_conn_usage_count()
  scsi: core: Wake up the error handler when final completions race against each other
  scsi: storvsc: Process unsupported MODE_SENSE_10
  scsi: xen: scsiback: Fix potential memory leak in scsiback_remove()
DeltaFile
+10-1drivers/scsi/scsi_error.c
+8-2drivers/target/iscsi/iscsi_target_util.c
+8-0drivers/scsi/scsi_lib.c
+7-0drivers/scsi/qla2xxx/qla_isr.c
+2-1drivers/scsi/storvsc_drv.c
+1-0drivers/xen/xen-scsiback.c
+36-46 files

FreeBSD/ports 6f3027adatabases/cego Makefile distinfo

databases/cego: update 2.54.1 -> 2.54.2

- fix for eft and right outer joins
DeltaFile
+5-3databases/cego/Makefile
+3-3databases/cego/distinfo
+8-62 files

FreeBSD/ports 08b4ae8sysutils/vm-bhyve pkg-message, sysutils/vm-bhyve-devel pkg-message

sysutils/vm-bhyve{,-devel}: fix typo in pkg-message

Fix typo in sysctl.conf reference.

Approved by:    ziaee, michaelo
MFH:            2026Q1
Differential Revision:  https://reviews.freebsd.org/D54844

(cherry picked from commit 104ae5e4778336bd46d365d2d4291da02c8643d6)
DeltaFile
+1-1sysutils/vm-bhyve-devel/pkg-message
+1-1sysutils/vm-bhyve/pkg-message
+2-22 files

FreeBSD/ports 104ae5esysutils/vm-bhyve pkg-message, sysutils/vm-bhyve-devel pkg-message

sysutils/vm-bhyve{,-devel}: fix typo in pkg-message

Fix typo in sysctl.conf reference.

Approved by:    ziaee, michaelo
MFH:            2026Q1
Differential Revision:  https://reviews.freebsd.org/D54844
DeltaFile
+1-1sysutils/vm-bhyve-devel/pkg-message
+1-1sysutils/vm-bhyve/pkg-message
+2-22 files

LLVM/project 14bdd06mlir/lib/Dialect/SCF/Transforms LoopSpecialization.cpp, mlir/lib/Dialect/Utils StaticValueUtils.cpp

[mlir][DialectUtils] Fix 0 step handling in `constantTripCount` (#177329)

A step size of "zero" does not indicate "zero iterations". It may
indicate an infinite number of iterations.

This commit makes some transformations more conservative. We used to
fold away some loops with step size 0 and that's now no longer the case.

Relation discussion:
https://discourse.llvm.org/t/infinite-loops-and-dead-code/89530
DeltaFile
+11-3mlir/lib/Dialect/Utils/StaticValueUtils.cpp
+8-2mlir/test/Dialect/SCF/for-loop-peeling.mlir
+4-3mlir/test/Dialect/SCF/canonicalize.mlir
+3-0mlir/lib/Dialect/SCF/Transforms/LoopSpecialization.cpp
+26-84 files

NetBSD/pkgsrc Gw4GUwndoc CHANGES-2026

   Add devel/ocaml-ounit2 version 2.2.7.
VersionDeltaFile
1.630+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc ThR6t7Hdevel Makefile

   Add ocaml-ounit2.
VersionDeltaFile
1.4577+2-1devel/Makefile
+2-11 files

NetBSD/pkgsrc fAp9LN8devel/ocaml-ouint2 PLIST Makefile

   Initial import of devel/ocaml-ounit2, version 2.2.7.

   OUnit is a unit test framework for OCaml. It allows one to easily
   create unit-tests for OCaml code. It is loosely based on [HUnit],
   a unit testing framework for Haskell. It is similar to [JUnit],
   and other XUnit testing frameworks.
VersionDeltaFile
1.1+142-0devel/ocaml-ouint2/PLIST
1.1+21-0devel/ocaml-ouint2/Makefile
1.1+5-0devel/ocaml-ouint2/distinfo
1.1+4-0devel/ocaml-ouint2/DESCR
+172-04 files

HardenedBSD/src 37183a4sys/compat/linuxkpi/common/include/linux seq_buf.h bitops.h, sys/compat/linuxkpi/common/src linux_seq_buf.c linux_pci.c

Merge remote-tracking branch 'origin/hardened/current/master' into hardened/current/cross-dso-cfi
DeltaFile
+73-0sys/compat/linuxkpi/common/include/linux/seq_buf.h
+64-0sys/compat/linuxkpi/common/src/linux_seq_buf.c
+36-0sys/compat/linuxkpi/common/src/linux_pci.c
+6-6sys/compat/linuxkpi/common/include/linux/bitops.h
+9-0sys/compat/linuxkpi/common/include/linux/dma-mapping.h
+4-5tools/tools/nanobsd/defaults.sh
+192-118 files not shown
+207-1214 files

FreeBSD/ports 670212fnet/teddycloud pkg-plist Makefile, net/teddycloud/files patch-Makefile patch-src_home__assistant.c

net/teddycloud: Update 0.6.4 => 0.6.7

Changelogs:
https://github.com/toniebox-reverse-engineering/teddycloud/releases/tag/tc_v0.6.5
https://github.com/toniebox-reverse-engineering/teddycloud/releases/tag/tc_v0.6.6
https://github.com/toniebox-reverse-engineering/teddycloud/releases/tag/tc_v0.6.7

Improve port:
- Un-bundle libcjson, libogg and opus.
- Replace "BUILD_DEPENDS+=" with "BUILD_DEPENDS=".
- Add USES+=dos2unix - source files use DOS end-of-line characters.
- Use ETCDIR instead of ${PREFIX}/etc/teddycloud.
- Optimize do-install - remove duplicates, merge COPYTREE_SHARE, remove
  unnecessary MKDIR.
- Remove empty post-extract.

PR:             292663
Co-authored-by: Vladimir Druzenko <vvd at FreeBSD.org>
DeltaFile
+298-13net/teddycloud/pkg-plist
+163-0net/teddycloud/files/patch-Makefile
+21-29net/teddycloud/Makefile
+17-23net/teddycloud/distinfo
+19-0net/teddycloud/files/patch-src_home__assistant.c
+18-0net/teddycloud/files/patch-src_handler__api.c
+536-657 files not shown
+614-7813 files

HardenedBSD/src 48052cesys/dev/clk/rockchip rk_clk_fract.c, sys/netpfil/ipfw ip_fw_table_value.c

Merge branch 'freebsd/15-stable/main' into hardened/15-stable/main
DeltaFile
+1-1sys/dev/clk/rockchip/rk_clk_fract.c
+1-1sys/netpfil/ipfw/ip_fw_table_value.c
+2-22 files

FreeBSD/ports 57e284cwww/py-gunicorn distinfo Makefile

www/py-gunicorn: Update version 24.0.0=>24.1.0

Changelog: https://github.com/benoitc/gunicorn/releases/tag/24.1.0
DeltaFile
+3-3www/py-gunicorn/distinfo
+1-1www/py-gunicorn/Makefile
+4-42 files

FreeBSD/ports 5bebec5databases/mroonga distinfo Makefile

databases/mroonga: Update version 15.00=>15.04

Changelog: https://mroonga.org/docs/news/15.html#release-15-04
DeltaFile
+3-3databases/mroonga/distinfo
+1-1databases/mroonga/Makefile
+4-42 files

FreeBSD/ports 9cd3ea1textproc/groonga distinfo Makefile

textproc/groonga: Update version 15.1.2=>15.1.3

Changelog: https://groonga.org/docs/news/15.html#release-15-1-3
DeltaFile
+3-3textproc/groonga/distinfo
+1-1textproc/groonga/Makefile
+4-42 files

FreeBSD/ports bffb745security/go-tuf distinfo Makefile

security/go-tuf: Update version 2.3.1=>2.4.0

Changelog: https://github.com/theupdateframework/go-tuf/releases/tag/v2.4.0
DeltaFile
+5-5security/go-tuf/distinfo
+2-2security/go-tuf/Makefile
+7-72 files

FreeBSD/ports 0614e8adevel/cirrus-cli distinfo Makefile

devel/cirrus-cli: Update version 0.159.1=>0.160.0

Changelog: https://github.com/cirruslabs/cirrus-cli/releases/tag/v0.160.0
DeltaFile
+5-5devel/cirrus-cli/distinfo
+1-1devel/cirrus-cli/Makefile
+6-62 files

FreeBSD/ports 3413943databases/freetds-devel distinfo Makefile

databases/freetds-devel: Update version 1.5.235=>1.5.237
DeltaFile
+3-3databases/freetds-devel/distinfo
+1-1databases/freetds-devel/Makefile
+4-42 files

HardenedBSD/ports 3ccc871audio/sonicradio distinfo, comms/iwmbt-firmware Makefile

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+83-59textproc/bookokrat/distinfo
+40-28textproc/bookokrat/Makefile.crates
+39-0net/liferea/files/patch-src_plugins_plugins__engine.c
+6-7comms/iwmbt-firmware/Makefile
+5-5audio/sonicradio/distinfo
+5-5sysutils/devtui/distinfo
+178-10437 files not shown
+256-17443 files

FreeBSD/ports a9a6014science/afni distinfo Makefile

science/afni: Update to 26.0.07
DeltaFile
+3-3science/afni/distinfo
+1-1science/afni/Makefile
+4-42 files

HardenedBSD/ports a9a6014science/afni distinfo Makefile

science/afni: Update to 26.0.07
DeltaFile
+3-3science/afni/distinfo
+1-1science/afni/Makefile
+4-42 files

FreeBSD/doc b8a3ec1documentation/content/en/books/porters-handbook/versions _index.adoc

versions: sentences with a full stop: missed one entry.
DeltaFile
+1-1documentation/content/en/books/porters-handbook/versions/_index.adoc
+1-11 files

OPNSense/core 6a666e8src/opnsense/mvc/app/models/OPNsense/Kea KeaDhcpv6.php, src/opnsense/mvc/app/models/OPNsense/Kea/FieldTypes KeaPoolsField.php

Services: Kea DHCP: Kea DHCPv6 - add pool in net validation, for https://github.com/opnsense/core/issues/9343
DeltaFile
+15-0src/opnsense/mvc/app/models/OPNsense/Kea/KeaDhcpv6.php
+10-0src/opnsense/mvc/app/models/OPNsense/Kea/FieldTypes/KeaPoolsField.php
+25-02 files

OpenBSD/ports WAhoOsUdevel Makefile, devel/x86_64-elf Makefile

   Hook up devel/x86_64-elf/binutils and devel/x86_64-elf/gcc

   ok kn@
VersionDeltaFile
1.1+5-0devel/x86_64-elf/Makefile
1.2554+1-0devel/Makefile
+6-02 files

OpenBSD/ports NrDnT3edevel/x86_64-elf Makefile.inc

   Only build devel/x86_64-elf/binutils and devel/x86_64-elf/gcc on amd64
VersionDeltaFile
1.2+4-0devel/x86_64-elf/Makefile.inc
+4-01 files

OpenBSD/ports 4HaNUd2devel/x86_64-elf Makefile.inc

   Common parts for devel/x86_64-elf/binutils and devel/x86_64-elf/gcc

   ok kn@
VersionDeltaFile
1.1+15-0devel/x86_64-elf/Makefile.inc
+15-01 files