FreeBSD/ports 77d93fbdevel/catppuccin-whiskers distinfo Makefile.crates

devel/catppuccin-whiskers: Update to 2.8.0

Changelog: https://github.com/catppuccin/whiskers/blob/v2.8.0/CHANGELOG.md

Reported by:    GitHub (watch releases)
DeltaFile
+89-71devel/catppuccin-whiskers/distinfo
+43-34devel/catppuccin-whiskers/Makefile.crates
+1-1devel/catppuccin-whiskers/Makefile
+133-1063 files

LLVM/project f137fbdclang/include/clang/CIR/Dialect/IR CIRAttrs.td CIROps.td, clang/lib/CIR/CodeGen CIRGenModule.cpp

[CIR][CIRGen] Introduce ExtraFuncAttr to FuncOp
DeltaFile
+22-0clang/include/clang/CIR/Dialect/IR/CIRAttrs.td
+21-0clang/lib/CIR/Dialect/IR/CIRDialect.cpp
+12-2clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+12-1clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVMIR.cpp
+4-6clang/lib/CIR/CodeGen/CIRGenModule.cpp
+6-0clang/include/clang/CIR/Dialect/IR/CIROps.td
+77-96 files not shown
+93-1212 files

LLVM/project 33b2d8dllvm/lib/Transforms/Vectorize VPlanTransforms.cpp

Fix line wrapping of comments
DeltaFile
+14-15llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+14-151 files

LLVM/project 61f936cclang/docs ReleaseNotes.rst, clang/lib/AST Type.cpp

[clang] fix crash when evaluating __is_bitwise_cloneable on an invalid type (#183707)

fixes https://github.com/llvm/llvm-project/issues/183665

The crash was caused by `isBitwiseCloneableType` **infinitely
recursing** when a record type contains a self-referential field
produced by typo correction during error recovery (e.g. ABCD corrected
to ABC inside struct ABC).

This patch adds an early `RD->isInvalidDecl()` check to bail out before
recursing into fields and bases of invalid record declarations.
DeltaFile
+13-0clang/test/SemaCXX/builtin-is-bitwise-cloneable.cpp
+3-0clang/lib/AST/Type.cpp
+1-0clang/docs/ReleaseNotes.rst
+17-03 files

LLVM/project 0101e20clang/include/clang/CIR/Dialect/IR CIRAttrs.td CIROps.td, clang/lib/CIR/CodeGen CIRGenModule.cpp

[CIR][CIRGen] Introduce ExtraFuncAttr to FuncOp
DeltaFile
+22-0clang/include/clang/CIR/Dialect/IR/CIRAttrs.td
+21-0clang/lib/CIR/Dialect/IR/CIRDialect.cpp
+12-2clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp
+7-7clang/lib/CIR/CodeGen/CIRGenModule.cpp
+12-1clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVMIR.cpp
+6-0clang/include/clang/CIR/Dialect/IR/CIROps.td
+80-107 files not shown
+97-1313 files

FreeBSD/ports ca7f62cwww/py-wfuzz Makefile distinfo

www/py-wfuzz: update 3.1.0 → 3.1.1

PR:     293778
DeltaFile
+16-5www/py-wfuzz/Makefile
+3-3www/py-wfuzz/distinfo
+19-82 files

FreeBSD/ports 9881c26databases/goose distinfo Makefile

databases/goose: update 3.22.0 → 3.27.0
DeltaFile
+5-5databases/goose/distinfo
+1-2databases/goose/Makefile
+6-72 files

FreeBSD/ports 6e5abb9devel/tabby distinfo Makefile

devel/tabby: update 0.31.2 → 0.32.0
DeltaFile
+59-5devel/tabby/distinfo
+29-3devel/tabby/Makefile
+88-82 files

FreeBSD/ports 16e6cfegraphics/gifski distinfo Makefile

graphics/gifski: update 1.10.3 → 1.34.0
DeltaFile
+179-161graphics/gifski/distinfo
+89-81graphics/gifski/Makefile
+268-2422 files

FreeBSD/ports e9120cafinance/py-bt Makefile distinfo

finance/py-bt: update 1.1.3 → 1.1.4
DeltaFile
+5-6finance/py-bt/Makefile
+3-3finance/py-bt/distinfo
+8-92 files

FreeBSD/ports 4e30fe5net-p2p/intermodal distinfo Makefile

net-p2p/intermodal: update 0.1.14 → 0.1.15
DeltaFile
+345-321net-p2p/intermodal/distinfo
+172-161net-p2p/intermodal/Makefile
+517-4822 files

pkgng/pkgng 995ba2blibpkg libpkg.ver

Actually export the pkg_set_ignore_osversion symbol from libpkg
DeltaFile
+1-0libpkg/libpkg.ver
+1-01 files

FreeBSD/ports 96ede07net-im/signal-desktop distinfo Makefile, net-im/signal-desktop/files pnpm-lock.yaml

net-im/signal-desktop: Update to 8.2.0
DeltaFile
+18-18net-im/signal-desktop/files/pnpm-lock.yaml
+5-5net-im/signal-desktop/distinfo
+1-2net-im/signal-desktop/Makefile
+1-1net-im/signal-desktop/get_deps.sh
+25-264 files

LLVM/project 714eee7llvm/lib/Transforms/Coroutines CoroSplit.cpp, llvm/test/Transforms/Coroutines coro-only-destroy-when-complete.ll coro-alloc-with-param-O2.ll

[CoroSplit] Keep coro.free for resume/destroy functions (#186301)

Part 1/4: Implement HALO for coroutines that flow off final suspend.
Parent PR approved in #185336, with no change since then

Previously, we unconditionally lowered `coro.free`. Now, we lower it
only for the cleanup function. The remaining `coro.free` intrinsics will
be lowered in CoroCleanup. Keep these `coro.free` so that we can elide
them.
DeltaFile
+10-2llvm/test/Transforms/Coroutines/coro-only-destroy-when-complete.ll
+4-4llvm/lib/Transforms/Coroutines/CoroSplit.cpp
+4-2llvm/test/Transforms/Coroutines/coro-alloc-with-param-O2.ll
+4-2llvm/test/Transforms/Coroutines/coro-alloca-07.ll
+4-2llvm/test/Transforms/Coroutines/coro-await-suspend-lower-invoke.ll
+4-2llvm/test/Transforms/Coroutines/coro-await-suspend-lower.ll
+30-1413 files not shown
+75-3719 files

FreeBSD/ports 42f3d01net-im/libsignal-node distinfo Makefile.crates, net-im/libsignal-node/files patch-boring_boring-sys_main.rs

net-im/libsignal-node: Update to 0.88.0
DeltaFile
+47-49net-im/libsignal-node/distinfo
+20-20net-im/libsignal-node/Makefile.crates
+7-13net-im/libsignal-node/Makefile
+2-10net-im/libsignal-node/files/patch-boring_boring-sys_main.rs
+76-924 files

FreeBSD/ports 08d53c3multimedia/ringrtc distinfo Makefile.crates

multimedia/ringrtc: Update to 2.65.2
DeltaFile
+171-93multimedia/ringrtc/distinfo
+85-46multimedia/ringrtc/Makefile.crates
+1-1multimedia/ringrtc/Makefile
+1-1multimedia/ringrtc/update.txt
+258-1414 files

NetBSD/pkgsrc Mh3lL5Mdoc CHANGES-2026

   doc: Updated security/py-google-auth to 2.49.0nb1
VersionDeltaFile
1.1720+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 7IF2wgBsecurity/py-google-auth Makefile

   py-google-auth: update to 2.49.0nb1.

   Depend on py-JWT.
VersionDeltaFile
1.95+4-2security/py-google-auth/Makefile
+4-21 files

NetBSD/src SGGE1Pjsys/uvm/pmap pmap.c

   Improve pmaphist debug
VersionDeltaFile
1.83+7-6sys/uvm/pmap/pmap.c
+7-61 files

LLVM/project 717585ellvm/include/llvm/Analysis DominanceFrontierImpl.h

[Analysis] Fix -Wparentheses warning in DominanceFrontierImpl.h

Add explicit parentheses around the assert condition to silence
"suggest parentheses around '&&' within '||'" and ensure the
string message applies to the full boolean expression.

Co-Authored-By: Claude Opus 4.6 <noreply at anthropic.com>
DeltaFile
+3-3llvm/include/llvm/Analysis/DominanceFrontierImpl.h
+3-31 files

OpenBSD/ports KA1M97Bnet/gpodder Makefile

   Remove www/webkitgtk4.
   It's an optional RUN_DEPENDS and the libsoup2 version of webkitgtk4 will be
   going away soon (libsoup2 is unmaintained).
VersionDeltaFile
1.47+1-2net/gpodder/Makefile
+1-21 files

NetBSD/pkgsrc T1dkTd8doc CHANGES-2026

   Updated textproc/py-JWT
VersionDeltaFile
1.1719+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc s0hwwHbtextproc/py-JWT distinfo Makefile

   py-JWT: updated to 2.12.0

   v2.12.0 <https://github.com/jpadilla/pyjwt/compare/2.11.0...2.12.0>`__

   Fixed

   - Annotate PyJWKSet.keys for pyright
   - Close ``HTTPError`` response to prevent ``ResourceWarning`` on Python 3.14
   - Do not keep ``algorithms`` dict in PyJWK instances
   - Validate the crit (Critical) Header Parameter defined in RFC 7515 §4.1.11.
   - Use PyJWK algorithm when encoding without explicit algorithm

   Added

   - Docs: Add ``PyJWKClient`` API reference and document the two-tier caching system (JWK Set cache and signing key LRU cache).
VersionDeltaFile
1.26+4-4textproc/py-JWT/distinfo
1.32+2-2textproc/py-JWT/Makefile
+6-62 files

OpenBSD/ports bXLGXkLeditors/apostrophe Makefile distinfo, editors/apostrophe/pkg PLIST DESCR

   Update to apostrophe-3.4 and move to webkitgtk60.
VersionDeltaFile
1.6+54-54editors/apostrophe/pkg/PLIST
1.16+17-21editors/apostrophe/Makefile
1.2+3-3editors/apostrophe/pkg/DESCR
1.3+2-2editors/apostrophe/distinfo
+76-804 files

LLVM/project 6d8e788llvm/lib/Target/RISCV RISCVInstrInfoXAndes.td

[RISCV] Remove unnecessary mayRaiseFPException from NDS_VFWCVT_S_BF16

BF16 to F32 widening is an exact conversion that cannot
raise floating-point exceptions.

Co-Authored-By: Claude Opus 4.6 <noreply at anthropic.com>
DeltaFile
+5-5llvm/lib/Target/RISCV/RISCVInstrInfoXAndes.td
+5-51 files

FreeBSD/ports 41d9b9adatabases/pg_textsearch distinfo pkg-plist

databases/pg_textsearch: Update to 0.6.1
DeltaFile
+3-3databases/pg_textsearch/distinfo
+3-2databases/pg_textsearch/pkg-plist
+1-1databases/pg_textsearch/Makefile
+7-63 files

LLVM/project 2d4b0f0llvm/lib/Target/RISCV RISCVInstrInfoXAndes.td

[RISCV][NFC] Move HasVendorXAndesVBFHCvt from multiclass body to instantiation site

Move the predicate from inside VPatConversionS_BF16 and
VPatConversionBF16_S to the outer let block, matching the
style used by VFPMAD and VD4DOT patterns.

Co-Authored-By: Claude Opus 4.6 <noreply at anthropic.com>
DeltaFile
+6-6llvm/lib/Target/RISCV/RISCVInstrInfoXAndes.td
+6-61 files

LLVM/project 9ac29f6llvm/lib/Target/RISCV RISCVInstrInfoXAndes.td

[RISCV] Add missing predicate to XAndes VD4DOT patterns

Co-Authored-By: Claude Opus 4.6 <noreply at anthropic.com>
DeltaFile
+8-6llvm/lib/Target/RISCV/RISCVInstrInfoXAndes.td
+8-61 files

LLVM/project ca5d001llvm/lib/Target/RISCV RISCVInstrInfoXAndes.td

[RISCV] Add missing predicate to XAndes VFPMAD patterns

Co-Authored-By: Claude Opus 4.6 <noreply at anthropic.com>
DeltaFile
+6-4llvm/lib/Target/RISCV/RISCVInstrInfoXAndes.td
+6-41 files

LLVM/project 1dae3b1llvm/lib/Target/RISCV RISCVInstrInfoXAndes.td

[RISCV] Fix typo in NDSRVInstVSINTCvt: fucnt5 -> funct5

Co-Authored-By: Claude Opus 4.6 <noreply at anthropic.com>
DeltaFile
+2-2llvm/lib/Target/RISCV/RISCVInstrInfoXAndes.td
+2-21 files