FreeBSD/ports 1c517eax11/hyprviz distinfo Makefile

x11/hyprviz: Update to 0.8.2

Changelog: https://github.com/timasoft/hyprviz/releases/tag/v0.8.2

Reported by:    GitHub (watch releases)
DeltaFile
+3-3x11/hyprviz/distinfo
+1-1x11/hyprviz/Makefile
+4-42 files

LLVM/project b8d0bb2clang/lib/StaticAnalyzer/Checkers/WebKit NoDeleteChecker.cpp PtrTypesSemantics.cpp, clang/test/Analysis/Checkers/WebKit nodelete-annotation.cpp

[WebKit checkers] Trivial function analysis ignores some nodelete annotation (#183970)

This PR fixes the bug that TrivialFunctionAnalysis can ignore nodelete
annotation set on some but not all function declarations because it does
not check the annotation on prior declarations unlike
alpha.webkit.NoDeleteChecker which checks it on any declaration by
replacing isNoDeleteFunction with NoDeleteChecker's
hasNoDeleteAnnotation.
DeltaFile
+1-20clang/lib/StaticAnalyzer/Checkers/WebKit/NoDeleteChecker.cpp
+20-1clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp
+10-0clang/test/Analysis/Checkers/WebKit/nodelete-annotation.cpp
+31-213 files

LLVM/project 6d82f14clang-tools-extra/clang-tidy/performance UseStdMoveCheck.cpp UseStdMoveCheck.h, clang-tools-extra/docs ReleaseNotes.rst

[clang-tidy] New performance linter: performance-use-std-move (#179467)

This linter suggests calls to ``std::move`` when a costly copy would
happen otherwise. It does not try to suggest ``std::move`` when they are
valid but obviously not profitable (e.g. for trivially movable types)

This is a very simple version that only considers terminating basic
blocks. Further work will extend the approach through the control flow
graph.

It has already been used successfully on llvm/lib to submit bugs
#178174,
 #178169, #178176, #178172, #178175, #178180, #178178, #178177, #178179,
 #178173 and #178167, and on the firefox codebase to submit most of the
dependencies of bug https://bugzilla.mozilla.org/show_bug.cgi?id=2012658
DeltaFile
+288-0clang-tools-extra/test/clang-tidy/checkers/performance/use-std-move.cpp
+122-0clang-tools-extra/clang-tidy/performance/UseStdMoveCheck.cpp
+35-0clang-tools-extra/clang-tidy/performance/UseStdMoveCheck.h
+23-0clang-tools-extra/docs/clang-tidy/checks/performance/use-std-move.rst
+6-0clang-tools-extra/docs/ReleaseNotes.rst
+2-0clang-tools-extra/clang-tidy/performance/PerformanceTidyModule.cpp
+476-02 files not shown
+478-08 files

FreeBSD/ports b02d6d2. MOVED, devel Makefile

devel/rubygem-flipper-active_support_cache_store-rails70: Remove obsoleted port

Use devel/rubygem-flipper-active_support_cache_store instead.

(cherry picked from commit 6086ce4826139bf12737a521bf644de1e37f3a61)
DeltaFile
+0-20devel/rubygem-flipper-active_support_cache_store-rails70/Makefile
+0-3devel/rubygem-flipper-active_support_cache_store-rails70/distinfo
+0-1devel/rubygem-flipper-active_support_cache_store-rails70/pkg-descr
+0-1devel/Makefile
+1-0MOVED
+1-255 files

NetBSD/pkgsrc Rwy6lrMmath/openblas distinfo, math/openblas/patches patch-Makefile.system

   openblas: filter-out lto library on Darwin
VersionDeltaFile
1.6+14-3math/openblas/patches/patch-Makefile.system
1.15+2-2math/openblas/distinfo
+16-52 files

FreeBSD/ports e35dd7cx11/hyprls distinfo Makefile

x11/hyprls: Update to 0.13.0

Changelog: https://github.com/hyprland-community/hyprls/releases/tag/v0.13.0

Reported by:    GitHub (watch releases)
DeltaFile
+7-7x11/hyprls/distinfo
+3-4x11/hyprls/Makefile
+10-112 files

FreeBSD/ports e5bc018misc/py-hf-xet distinfo Makefile

misc/py-hf-xet: Update to 1.3.2

Changelog: https://github.com/huggingface/xet-core/releases/tag/v1.3.2

Reported by:    portscout
DeltaFile
+3-3misc/py-hf-xet/distinfo
+1-1misc/py-hf-xet/Makefile
+4-42 files

FreeBSD/ports 99ad4df. UPDATING

UPDATING: Clarify pgsql18 upgrades

With --no-data-checksums for a bridge, pg_checksums, and future intentions.
DeltaFile
+6-1UPDATING
+6-11 files

FreeBSD/ports b732349editors/zed distinfo Makefile

editors/zed: Update to 0.225.10

Changelog: https://github.com/zed-industries/zed/releases/tag/v0.225.10

Reported by:    GitHub (watch releases)
DeltaFile
+3-3editors/zed/distinfo
+1-1editors/zed/Makefile
+4-42 files

NetBSD/src 422RNj3etc getramdisksize

   sh code enhancements (NFCI).

   More error checking, printf instead of echo, quoting only when needed,
   sh ! rather than test !   (that kind of thing).

   Tested via a full release + images build of HEAD/vax - the only current
   user of this script.
VersionDeltaFile
1.3+33-13etc/getramdisksize
+33-131 files

LLVM/project f1620e4clang/lib/Basic/Targets NVPTX.h AMDGPU.h, clang/test/Misc nvptx.languageOptsOpenCL.cl amdgcn.languageOptsOpenCL.cl

[OpenCL] Enable __cl_clang_function_scope_local_variables for AMDGPU and NVPTX targets (#183892)

I'd like to use this extension in our downstream SYCL compiler to
implement the __clc__group_scratch helper function, allowing us to
replace .ll files with .cl files for the two targets:
https://github.com/intel/llvm/blob/sycl/libclc/libspirv/lib/amdgcn-amdhsa/group/collectives_helpers.ll
https://github.com/intel/llvm/blob/sycl/libclc/libspirv/lib/ptx-nvidiacl/group/collectives_helpers.ll
DeltaFile
+5-0clang/test/Misc/nvptx.languageOptsOpenCL.cl
+5-0clang/test/Misc/amdgcn.languageOptsOpenCL.cl
+1-0clang/lib/Basic/Targets/NVPTX.h
+1-0clang/lib/Basic/Targets/AMDGPU.h
+12-04 files

LLVM/project ab1d59eclang/docs ClangFormatStyleOptions.rst, clang/include/clang/Format Format.h

[clang-format] Allow InheritParentConfig to accept a directory (#182791)

Add support for `BasedOnStyle: InheritParentConfig=<directory-path>` in
config files to redirect inheritance to the `.clang-format` or
`_clang-format` file in the `<directory_path>` directory.

Closes #107808
DeltaFile
+56-17clang/lib/Format/Format.cpp
+57-0clang/unittests/Format/ConfigParseTest.cpp
+6-4clang/docs/ClangFormatStyleOptions.rst
+1-1clang/include/clang/Format/Format.h
+120-224 files

FreeBSD/ports c22afb9databases/postgresql-pgaudit Makefile distinfo

databases/postgres-pgaudit: Update to 18.0

PR:             292447
Approved by:    maintainer timeout
DeltaFile
+3-3databases/postgresql-pgaudit/Makefile
+3-3databases/postgresql-pgaudit/distinfo
+6-62 files

FreeBSD/ports b3067b1. UPDATING, Mk bsd.default-versions.mk

Mk/bsd.default-versions.mk: Update to PostgreSQL 18

See UPDATING for upgrade advice

PR:             291156
Approved by:    antoine (exp-run)
DeltaFile
+53-0UPDATING
+1-1Mk/bsd.default-versions.mk
+54-12 files

LLVM/project 52a9eb3.github/workflows/upload-release-artifact action.yml

[Github] Add TODO around actions/attest
DeltaFile
+2-0.github/workflows/upload-release-artifact/action.yml
+2-01 files

LLVM/project 8fff1c0.github/workflows/upload-release-artifact action.yml

Update actions/attest-build-provenance action to v4 (#184051)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[actions/attest-build-provenance](https://redirect.github.com/actions/attest-build-provenance)
| action | major | `v3.1.0` → `v4.1.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the [Dependency
Dashboard](../issues/160328) for more information.

---

### Release Notes

    [120 lines not shown]
DeltaFile
+1-1.github/workflows/upload-release-artifact/action.yml
+1-11 files

LLVM/project 686987allvm/test/CodeGen/AMDGPU atomic_optimizations_global_pointer.ll atomic_optimizations_local_pointer.ll, llvm/test/Transforms/InstCombine/AMDGPU mbcnt.ll canonicalize-add-to-gep.ll

ValueTracking/AMDGPU: handle mbcnt in computeKnownBitsFromOperator (#183229)

This helps canonicalize some address calculation. This would further
help immediate folding into memory load instructions in the backend.

The order changes to v_mad_u32_u24 is just because
@llvm.amdgcn.mul.u24.i32 was used in codegen prepare after this change.
It does not really change anything important.
DeltaFile
+61-0llvm/test/Transforms/InstCombine/AMDGPU/mbcnt.ll
+23-22llvm/test/CodeGen/AMDGPU/atomic_optimizations_global_pointer.ll
+19-18llvm/test/CodeGen/AMDGPU/atomic_optimizations_local_pointer.ll
+29-0llvm/test/Transforms/InstCombine/AMDGPU/canonicalize-add-to-gep.ll
+7-18llvm/test/Transforms/InstCombine/AMDGPU/llvm.amdgcn.wave.shuffle.ll
+12-12llvm/test/CodeGen/AMDGPU/insert_waitcnt_for_precise_memory.ll
+151-706 files not shown
+197-10812 files

OpenBSD/src J4gkXq1usr.bin/ssh monitor.c monitor_wrap.c

   Move banner exchange to sshd-auth process

   Previously, exchange of the initial SSH- banners was performed
   by the privileged sshd-session monitor. This moves it to the
   unprivileged sshd-auth subprocess, removing ~200 LoC from the
   monitor's privileged attack surface.

   The monitor gains a new "setcompat" RPC to allow sshd-auth to
   inform it of bug compat flags picked up from the client's banner.

   feedback dtucker@, ok markus@ deraadt@
VersionDeltaFile
1.253+27-1usr.bin/ssh/monitor.c
1.146+16-1usr.bin/ssh/monitor_wrap.c
1.13+9-1usr.bin/ssh/sshd-auth.c
1.21+1-8usr.bin/ssh/sshd-session.c
1.106+3-2usr.bin/ssh/packet.h
1.128+3-2usr.bin/ssh/compat.c
+59-152 files not shown
+63-178 files

NetBSD/pkgsrc-wip 7229572librewolf distinfo Makefile

librewolf: update to 148.0
DeltaFile
+3-3librewolf/distinfo
+2-2librewolf/Makefile
+5-52 files

LLVM/project e95dabemlir/python/mlir/dialects ext.py, mlir/test/python/dialects ext.py

[MLIR][Python] Support attribute definitions in Python-defined dialects (#183907)

This PR is quite similiar to
https://github.com/llvm/llvm-project/pull/182805.

We added basic support of attribute definitions in Python-defined
dialects, including:

- IRDL codegen for attribute definitions
- Attr builders like `MyAttr.get(..)` and attr parameter accessors (e.g.
`my_attr.param1`)
- Use Python-defined attrs in Python-defined operations

Assisted by GitHub Copilot.
DeltaFile
+111-4mlir/python/mlir/dialects/ext.py
+89-0mlir/test/python/dialects/ext.py
+200-42 files

FreeBSD/ports f7de3a6ports-mgmt/poudriere-dsh2dsh distinfo Makefile

ports-mgmt/poudriere-dsh2dsh: Update 3.4.99.20260219 => 3.4.99.20260228

Upstream changes:
 - bulk/testport: Fix caching of fetched distfiles for flavored-ports
   * Note that this does not fix go mod cache files not being cached.
     That is tracked in freebsd/poudriere#1311
 - bulk -b: Fix fetching with poudriere-created pkgbase jail.
 - logclean: Fix empty build log directory removal with multiple jails
 - jail -d -C: Allow rerunning and fix much of -C handling.
 - pkgclean -n: Fix possibly generating repo under dry-run.

PR:     293529
DeltaFile
+3-3ports-mgmt/poudriere-dsh2dsh/distinfo
+1-1ports-mgmt/poudriere-dsh2dsh/Makefile
+4-42 files

HardenedBSD/src 0f575cdsbin/ipfw ipfw2.c, sbin/ipfw/tests test_add_rule.py

Merge remote-tracking branch 'origin/hardened/current/master' into hardened/current/cross-dso-cfi
DeltaFile
+428-0tests/sys/netpfil/ipfw/lookup.sh
+184-137sys/netpfil/ipfw/ip_fw2.c
+155-137share/mk/src.libnames.mk
+231-12sbin/ipfw/tests/test_add_rule.py
+151-42sbin/ipfw/ipfw2.c
+162-17tests/atf_python/sys/netpfil/ipfw/insns.py
+1,311-34512 files not shown
+1,629-41818 files

HardenedBSD/src b2ff489sbin/ipfw ipfw2.c, sbin/ipfw/tests test_add_rule.py

Merge branch 'freebsd/current/main' into hardened/current/master
DeltaFile
+428-0tests/sys/netpfil/ipfw/lookup.sh
+184-137sys/netpfil/ipfw/ip_fw2.c
+155-137share/mk/src.libnames.mk
+231-12sbin/ipfw/tests/test_add_rule.py
+151-42sbin/ipfw/ipfw2.c
+162-17tests/atf_python/sys/netpfil/ipfw/insns.py
+1,311-34512 files not shown
+1,629-41818 files

HardenedBSD/src 47a6a12sys/amd64/vmm/amd amdvi_hw.c, usr.sbin/bhyve usb_mouse.c

Merge branch 'freebsd/15-stable/main' into hardened/15-stable/main
DeltaFile
+13-5usr.sbin/bhyve/usb_mouse.c
+1-9sys/amd64/vmm/amd/amdvi_hw.c
+14-142 files

HardenedBSD/ports b3ffd17audio/bliss/files patch-src_frequency__sort.c, misc/gemini-cli pkg-plist

Merge branch 'freebsd/main' into hardenedbsd/main
DeltaFile
+18,983-1,885misc/gemini-cli/pkg-plist
+1,883-936misc/gemini-cli/files/package-lock.json
+107-52misc/visp/pkg-plist
+95-0audio/bliss/files/patch-src_frequency__sort.c
+78-0www/py-yt-dlp-ejs/Makefile
+0-71ports-mgmt/portmaster/files/patch-portmaster
+21,146-2,94469 files not shown
+21,503-3,21875 files

FreeBSD/ports 81d96d7math/octave-forge-general distinfo Makefile

math/octave-forge-general: Update to 2.1.4.
DeltaFile
+3-3math/octave-forge-general/distinfo
+1-2math/octave-forge-general/Makefile
+4-52 files

HardenedBSD/ports 81d96d7math/octave-forge-general distinfo Makefile

math/octave-forge-general: Update to 2.1.4.
DeltaFile
+3-3math/octave-forge-general/distinfo
+1-2math/octave-forge-general/Makefile
+4-52 files

NetBSD/pkgsrc 6numSBgdoc CHANGES-2026

   doc: Remove update of devel/ruby-rspec-its to 2.0.0
VersionDeltaFile
1.1480+1-2doc/CHANGES-2026
+1-21 files

NetBSD/pkgsrc 1tnO7MYdevel/ruby-rspec-its distinfo Makefile

   devel/ruby-rspec-its: downgrade to 1.3.1

   Revert previous update since it require more addtion/update of other
   pacakges.
VersionDeltaFile
1.7+4-4devel/ruby-rspec-its/distinfo
1.5+4-4devel/ruby-rspec-its/Makefile
1.5+2-3devel/ruby-rspec-its/PLIST
+10-113 files

GhostBSD/ports 3edf2ffx11/xconfig distinfo Makefile

x11/xconfig: update to 3.1
DeltaFile
+3-3x11/xconfig/distinfo
+1-1x11/xconfig/Makefile
+4-42 files