OPNSense/src 1932218sys/netinet ip_fastfwd.c

netinet6: fix shared forwarding new edge case
DeltaFile
+1-1sys/netinet/ip_fastfwd.c
+1-11 files

OPNSense/core 892ad5csrc/opnsense/scripts/kea kea_prefix_renew.py, src/opnsense/service/conf/actions.d actions_interface.conf actions_radvd.conf

system: use "pluginctl -c" consistently
DeltaFile
+1-1src/opnsense/scripts/kea/kea_prefix_renew.py
+1-1src/opnsense/service/conf/actions.d/actions_interface.conf
+1-1src/opnsense/service/conf/actions.d/actions_radvd.conf
+3-33 files

LLVM/project 239a898llvm/lib/Target/AArch64/GISel AArch64PostLegalizerCombiner.cpp AArch64PostLegalizerLowering.cpp

[AArch64][GlobalISel] Fix post-legalizer observer notifications (#202376)

Assisted-by: codex
DeltaFile
+1-1llvm/lib/Target/AArch64/GISel/AArch64PostLegalizerCombiner.cpp
+1-1llvm/lib/Target/AArch64/GISel/AArch64PostLegalizerLowering.cpp
+2-22 files

OPNSense/core e1c9abesrc/opnsense/mvc/app/views/OPNsense/Firewall filter_rule.volt

iron out banner removal
DeltaFile
+4-5src/opnsense/mvc/app/views/OPNsense/Firewall/filter_rule.volt
+4-51 files

LLVM/project bccd1b9llvm/include/llvm/ADT StringMap.h, llvm/lib/Transforms/IPO StripSymbols.cpp

[StringMap] Invalidate iterators in remove() (#202520)

erase() bumps the epoch to invalidate iterators (#202237), but the
lower-level remove() — which detaches an entry without destroying it,
used
by ValueSymbolTable via Value::setName() — did not. Move the
incrementEpoch() into remove() so remove-while-iterating fails fast
under
LLVM_ENABLE_ABI_BREAKING_CHECKS too.

Aided by Claude Opus 4.8
DeltaFile
+10-7llvm/lib/Transforms/IPO/StripSymbols.cpp
+11-0llvm/unittests/ADT/StringMapTest.cpp
+4-2llvm/include/llvm/ADT/StringMap.h
+25-93 files

FreeBSD/src 233ece1usr.bin/stat stat.c, usr.bin/stat/tests stat_test.sh

stat: fix use of devname(3)

Besides being a little hard to parse through visually, this had its own
bug of inspecting st->st_mode to determine what to pass to devname(3),
which is only correct for st_rdev.

For st_dev, you're likely to be looking at files or directories and
attempting to assess what device they're located on, so the mode is
meaningless- we just have to assume that our filesystems are on
character devices and attempt to resolve st_dev as such.

Reviewed by:    des, kib (previous version)
Differential Revision:  https://reviews.freebsd.org/D56565

(cherry picked from commit 4d4acdbfc22c84081037f31cff4fb03d18373036)

stat: The devname test case requires root

Fixes:          4d4acdbfc22c ("stat: fix use of devname(3)")

    [24 lines not shown]
DeltaFile
+38-2usr.bin/stat/tests/stat_test.sh
+11-3usr.bin/stat/stat.c
+49-52 files

FreeBSD/src 7062e42usr.bin/stat/tests stat_test.sh

stat: Nits in stat tests

* Use ourselves as test file instead of /COPYRIGHT, which may or may not
  be present in the test environment.

* atf-check understands \n in strings, use it.

* Some file systems don't like creating small holes, so create large ones
  instead.  This means we need two variables: ps (page size) is the
  minimum size of a data region and the alignment for a hole, while hs
  (hole size) is the minimum size of the holes we create.  This makes no
  difference on FreeBSD but makes it easier to port the test to other
  platforms.

MFC after:      1 week
Sponsored by:   Klara, Inc.
Reviewed by:    kevans
Differential Revision:  https://reviews.freebsd.org/D56304

(cherry picked from commit 8cbd3949297d56e3960dcde73bd7e2277ac4bee8)
DeltaFile
+13-12usr.bin/stat/tests/stat_test.sh
+13-121 files

FreeBSD/src 12f8971usr.bin/stat stat.c stat.1, usr.bin/stat/tests stat_test.sh

stat: Add option to list holes

Add a new -h option that causes stat to print a list of holes for each
file argument.

Sponsored by:   Klara, Inc.
Reviewed by:    markj
Differential Revision:  https://reviews.freebsd.org/D52481

(cherry picked from commit 1a7a067da456f8962ef87bfdf75c94cd12988615)
DeltaFile
+135-41usr.bin/stat/stat.c
+72-0usr.bin/stat/tests/stat_test.sh
+43-2usr.bin/stat/stat.1
+250-433 files

FreeBSD/src 6c2ea48usr.bin/stat/tests readlink_test.sh

stat: Nits in readlink tests

* The f_flag test may fail if a component of the full path to the
  temporary directory is a symbolic link.

* The n_flag test had an empty head; give it a description.

* Use consistent quoting.

MFC after:      1 week
Sponsored by:   Klara, Inc.
Reviewed by:    kevans
Differential Revision:  https://reviews.freebsd.org/D56293

(cherry picked from commit 1c793e7cbe2ecded388fd51fb20274891620a6f4)
DeltaFile
+6-3usr.bin/stat/tests/readlink_test.sh
+6-31 files

LLVM/project c30ea28mlir/test/Dialect/NVGPU invalid.mlir

[mlir][nvgpu] Add negative tests for warpgroup MMA accumulator ops (#202516)

Add verifier tests for warpgroup MMA accumulator initialization
and store operations.

The tests cover invalid accumulator shapes, unsupported non-f32
store results, and mismatched store destination shapes.

The verifier logic for these cases exists in
WarpgroupMmaInitAccumulatorOp::verify() and
WarpgroupMmaStoreOp::verify(), but lacked explicit negative test
coverage in invalid.mlir.
DeltaFile
+42-0mlir/test/Dialect/NVGPU/invalid.mlir
+42-01 files

LLVM/project cbffca2clang/lib/AST/ByteCode InterpFrame.cpp Interp.h

[clang][bytecode] Only save frame offset in debug builds (#202294)

We only ever use this value to verify that a frame has cleaned up after
itself, i.e. in assertions.
DeltaFile
+5-3clang/lib/AST/ByteCode/InterpFrame.cpp
+6-0clang/lib/AST/ByteCode/Interp.h
+5-1clang/lib/AST/ByteCode/InterpFrame.h
+2-0clang/lib/AST/ByteCode/Disasm.cpp
+18-44 files

FreeBSD/ports d0654a3x11-wm/obconf Makefile, x11-wm/obconf/files patch-src_tree.c

x11-wm/obconf: fix crash on theme change

Fix crashing on theme change caused by incorrect
error handling.

PR:             295921
Reported by:    fernape
DeltaFile
+20-0x11-wm/obconf/files/patch-src_tree.c
+1-1x11-wm/obconf/Makefile
+21-12 files

LLVM/project e12a557clang/lib/CodeGen CGCoroutine.cpp, clang/test/CodeGenCoroutines coro-cwg2935.cpp

[Clang][CodeGen][Coroutines] Make coroutine startup exception-safe (C… (#202279)

…WG2935)

This patch attempts to implement the solution I proposed for [CWG2935
(Github)](https://github.com/cplusplus/CWG/issues/575), aligning Clang's
behavior with GCC and MSVC instead of leaving it undefined. When
`initial_suspend` (as well as `ready` and `suspend`) throws an
exception, Clang fails to destroy the task even though the task has
already been initialized (see https://godbolt.org/z/E4Y4bEn54).

This patch updates CGCoroutine.cpp to clean up the coroutine return
value after an exception is thrown when it is constructed in place,
addressing CWG2935.

I would like to hear more opinions on the solution and seek help to fix
Clang.
DeltaFile
+46-0clang/lib/CodeGen/CGCoroutine.cpp
+35-0clang/test/CodeGenCoroutines/coro-cwg2935.cpp
+81-02 files

FreeBSD/ports 075aae1math/py-openTSNE Makefile distinfo

math/py-openTSNE: update 1.0.2 → 1.0.4
DeltaFile
+4-3math/py-openTSNE/Makefile
+3-3math/py-openTSNE/distinfo
+7-62 files

FreeBSD/ports fcfb972net/nekobox distinfo Makefile

net/nekobox: update 5.11.16 → 5.11.17
DeltaFile
+3-3net/nekobox/distinfo
+1-1net/nekobox/Makefile
+4-42 files

FreeBSD/ports 026da16devel/py-rchitect distinfo Makefile

devel/py-rchitect: update 0.4.9 → 0.4.10
DeltaFile
+3-3devel/py-rchitect/distinfo
+1-1devel/py-rchitect/Makefile
+4-42 files

FreeBSD/ports 154a8acdevel/py-pycompilation distinfo Makefile

devel/py-pycompilation: update 0.4.12 → 0.4.13
DeltaFile
+3-3devel/py-pycompilation/distinfo
+1-2devel/py-pycompilation/Makefile
+4-52 files

FreeBSD/ports a231cbamath/py-gau2grid distinfo Makefile, math/py-gau2grid/files patch-CMakeLists.txt

math/py-gau2grid: update 2.0.7 → 2.0.9
DeltaFile
+23-9math/py-gau2grid/files/patch-CMakeLists.txt
+3-3math/py-gau2grid/distinfo
+2-2math/py-gau2grid/Makefile
+28-143 files

FreeBSD/ports f114b58math/py-animatplot-ng distinfo Makefile

math/py-animatplot-ng: update 0.4.4 → 0.4.6
DeltaFile
+3-3math/py-animatplot-ng/distinfo
+4-2math/py-animatplot-ng/Makefile
+7-52 files

FreeBSD/ports 42af614devel/py-distlib distinfo Makefile

devel/py-distlib: update 0.4.1 → 0.4.2
DeltaFile
+3-3devel/py-distlib/distinfo
+2-2devel/py-distlib/Makefile
+5-52 files

FreeBSD/ports 6514ae0math/py-sparsediffpy distinfo Makefile

math/py-sparsediffpy: update 0.3.0 → 0.5.0
DeltaFile
+3-3math/py-sparsediffpy/distinfo
+1-1math/py-sparsediffpy/Makefile
+4-42 files

FreeBSD/ports e53dd1afinance/py-python-binance distinfo Makefile

finance/py-python-binance: update 1.0.36 → 1.0.37
DeltaFile
+3-3finance/py-python-binance/distinfo
+1-1finance/py-python-binance/Makefile
+4-42 files

FreeBSD/ports ba7cfccgraphics/xournalpp distinfo Makefile

graphics/xournalpp: update 1.3.3 → 1.3.5
DeltaFile
+3-3graphics/xournalpp/distinfo
+1-2graphics/xournalpp/Makefile
+1-0graphics/xournalpp/pkg-plist
+5-53 files

OpenBSD/ports 2N1LVExgames/rocksndiamonds distinfo Makefile

   Update to rocksndiamonds-4.4.2.0.
VersionDeltaFile
1.60+2-2games/rocksndiamonds/distinfo
1.78+1-1games/rocksndiamonds/Makefile
+3-32 files

LLVM/project 19250ebllvm/lib/Analysis ValueTracking.cpp LazyValueInfo.cpp, llvm/lib/IR Verifier.cpp

[InstCombine] Drop zero size dereferenceable assumptions (#202411)
DeltaFile
+35-0llvm/test/Transforms/InstCombine/assume.ll
+4-8llvm/lib/Analysis/ValueTracking.cpp
+4-5llvm/lib/Analysis/LazyValueInfo.cpp
+8-1llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
+6-2llvm/test/Verifier/assume-bundles.ll
+5-2llvm/lib/IR/Verifier.cpp
+62-183 files not shown
+69-219 files

OpenBSD/ports 7zXZTk9net/grpc Makefile distinfo, net/grpc/patches patch-CMakeLists_txt

   Update grpc to 1.81.1
VersionDeltaFile
1.20+2-2net/grpc/Makefile
1.14+2-2net/grpc/distinfo
1.10+1-1net/grpc/patches/patch-CMakeLists_txt
+5-53 files

NetBSD/pkgsrc 4O34jzfdoc CHANGES-2026 TODO

   Updated graphics/graphite2, sysutils/dtc
VersionDeltaFile
1.3652+3-1doc/CHANGES-2026
1.27377+1-3doc/TODO
+4-42 files

NetBSD/pkgsrc 8l5CdY6sysutils/dtc distinfo Makefile, sysutils/dtc/patches patch-Makefile

   dtc: updated to 1.8.1

   1.8.1
   Unknown changes
VersionDeltaFile
1.5+7-7sysutils/dtc/patches/patch-Makefile
1.11+5-5sysutils/dtc/distinfo
1.14+3-3sysutils/dtc/Makefile
+15-153 files

NetBSD/pkgsrc azkdNLNgraphics/graphite2 Makefile distinfo, graphics/graphite2/patches patch-tests_featuremap_featuremaptest.cpp

   graphite2: updated to 1.3.15

   1.3.15
   . Bug fixes.
   . Update graphite website documentation.
   . Use SPDX lines, and improve license declarations.
   . Fix incorrectly generated graphite2.pc pkgconf file.
VersionDeltaFile
1.23+8-10graphics/graphite2/Makefile
1.16+4-5graphics/graphite2/distinfo
1.4+2-2graphics/graphite2/buildlink3.mk
1.2+1-1graphics/graphite2/patches/patch-tests_featuremap_featuremaptest.cpp
+15-184 files

OpenBSD/ports HYO8j57devel/terraform-ls modules.inc distinfo

   Update terraform-ls 0.38.6 -> 0.38.7
   Release notes: https://github.com/hashicorp/terraform-ls/releases/tag/v0.38.7
VersionDeltaFile
1.9+203-197devel/terraform-ls/modules.inc
1.9+150-138devel/terraform-ls/distinfo
1.9+1-1devel/terraform-ls/Makefile
+354-3363 files