LLVM/project 4287382clang/test/CodeGenOpenCL cl-uniform-wg-size.cl

[NFC] Fix check lines for `clang/test/CodeGenOpenCL/cl-uniform-wg-size.cl` on Darwin
DeltaFile
+6-6clang/test/CodeGenOpenCL/cl-uniform-wg-size.cl
+6-61 files

LLVM/project d947f8fclang/docs ReleaseNotes.rst, clang/include/clang/Basic DiagnosticSemaKinds.td

[clang][Sema] fix crash on __type_pack_element with dependent packs (GH180307) (#180407)

dependent pack expansions in __type_pack_element can result in
single-element template argument lists. When performing semantic
analysis for these builtins, the compiler needs to account for the
dependent expansions and handle them without triggering strict size
assertions. The patch adds this analysis and ensures we either defer
evaluation for dependent cases or report clear out-of-bounds diagnostics
instead of crashing
Ai was used for test generation and CI debugging 
fixes #180307
DeltaFile
+24-0clang/test/SemaCXX/builtin_templates_invalid_parameters.cpp
+11-5clang/lib/Sema/SemaTemplate.cpp
+1-1clang/include/clang/Basic/DiagnosticSemaKinds.td
+1-0clang/docs/ReleaseNotes.rst
+37-64 files

Linux/linux e2bd1b1lib debugobjects.c Kconfig.debug

Merge tag 'core-debugobjects-2026-03-01' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull debugobjects fix from Thomas Gleixner:
 "A single fix for debugobjects.

  The deferred page initialization prevents debug objects from
  allocating slab pages until the initialization is complete. That
  causes depletion of the pool and disabling of debugobjects.

  The reason is that debugobjects uses __GFP_HIGH for allocations as it
  might be invoked from arbitrary contexts. When PREEMPT_COUNT is
  disabled there is no way to know whether the context is safe to set
  __GFP_KSWAPD_RECLAIM.

  This worked until v6.18. Since then allocations w/o a reclaim flag
  cause new_slab() to end up in alloc_frozen_pages_nolock_noprof(),
  which returns early when deferred page initialization has not yet
  completed.


    [12 lines not shown]
DeltaFile
+18-1lib/debugobjects.c
+1-0lib/Kconfig.debug
+19-12 files

GhostBSD/build f0f41dbcommon_config autologin.sh setuser.sh, packages drivers common

Switch the default shell to zsh and update related configurations (#268)

Also added some packages for KVM and VMWare
DeltaFile
+17-29common_config/autologin.sh
+3-0packages/drivers
+1-1common_config/setuser.sh
+1-1packages/common
+22-314 files

LLVM/project f05d2e8clang/test/CodeGenOpenCL amdgpu-enqueue-kernel.cl cl-uniform-wg-size.cl, llvm/lib/IR AutoUpgrade.cpp

[AMDGPU] Make uniform-work-group-size a valueless attribute (#183925)

The "uniform-work-group-size" function attribute previously took a
string value of "true" or "false". Since presence alone can convey the
"true" semantics and absence can convey "false", the value is
unnecessary.

This patch converts it to a valueless string attribute: presence
indicates true, absence indicates false. For backward compatibility,
auto-upgrade logic is added in both UpgradeAttributes (bitcode) and
UpgradeFunctionAttributes: if the old value is "true", the attribute is
kept without a value; if "false", the attribute is removed.
DeltaFile
+24-26clang/test/CodeGenOpenCL/amdgpu-enqueue-kernel.cl
+14-13clang/test/CodeGenOpenCL/cl-uniform-wg-size.cl
+21-0llvm/lib/IR/AutoUpgrade.cpp
+21-0llvm/test/Bitcode/upgrade-uniform-work-group-size.ll
+4-9llvm/lib/Target/AMDGPU/AMDGPUAttributor.cpp
+5-6llvm/test/CodeGen/AMDGPU/uniform-work-group-propagate-attribute.ll
+89-5445 files not shown
+167-13451 files

LLVM/project 89498e2libunwind/src libunwind.cpp

[libunwind][PAC] Defang ptrauth's PC in valid CFI range abort

It turns out making the CFI check a release mode abort causes many,
if not the majority, of JITs to fail during unwinding as they do not
set up CFI sections for their generated code. As a result any JITs
that do nominally support unwinding (and catching) through their JIT
or assembly frames trip this abort.

rdar://170862047
DeltaFile
+10-17libunwind/src/libunwind.cpp
+10-171 files

GhostBSD/build 157edd6common_config autologin.sh setuser.sh, packages drivers common

Switch the default shell to zsh and update related configurations

Also added some packages for KVM and VMWare
DeltaFile
+17-29common_config/autologin.sh
+3-0packages/drivers
+1-1common_config/setuser.sh
+1-1packages/common
+22-314 files

LLVM/project e2ef93fclang/test/CodeGenOpenCL .gdb_history

[NFC] Remove `clang/test/CodeGenOpenCL/.gdb_history` (#184038)

DeltaFile
+0-11clang/test/CodeGenOpenCL/.gdb_history
+0-111 files

GhostBSD/gib 1fd30a2src add_admin.py

Merge pull request #87 from ghostbsd/zsh

Set default shell to zsh and update active shell index
DeltaFile
+2-5src/add_admin.py
+2-51 files

Linux/linux 5920da4arch/x86/include/asm cfi.h runtime-const.h, arch/x86/kernel alternative.c

Merge tag 'x86-urgent-2026-03-01' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull x86 fixes from Ingo Molnar:

 - Fix speculative safety in fred_extint()

 - Fix __WARN_printf() trap in early_fixup_exception()

 - Fix clang-build boot bug for unusual alignments, triggered by
   CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B=y

 - Replace the final few __ASSEMBLY__ stragglers that snuck in lately
   into non-UAPI x86 headers and use __ASSEMBLER__ consistently (again)

* tag 'x86-urgent-2026-03-01' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  x86/headers: Replace __ASSEMBLY__ stragglers with __ASSEMBLER__
  x86/cfi: Fix CFI rewrite for odd alignments
  x86/bug: Handle __WARN_printf() trap in early_fixup_exception()
  x86/fred: Correct speculative safety in fred_extint()
DeltaFile
+22-7arch/x86/kernel/alternative.c
+2-11arch/x86/net/bpf_jit_comp.c
+8-4arch/x86/include/asm/cfi.h
+2-5arch/x86/mm/extable.c
+3-3arch/x86/include/asm/runtime-const.h
+3-3arch/x86/include/asm/bug.h
+40-336 files not shown
+50-4212 files

FreeBSD/ports fba1610audio/subtui distinfo Makefile

audio/subtui: Update to 2.8.0

Changelog: https://github.com/MattiaPun/SubTUI/releases/tag/v2.8.0
DeltaFile
+5-5audio/subtui/distinfo
+1-1audio/subtui/Makefile
+6-62 files

FreeBSD/ports 5fdac53misc/github-copilot-cli/files patch-node__modules__github_copilot_npm-loader.js

misc/github-copilot-cli: Fix typo in comment
DeltaFile
+1-1misc/github-copilot-cli/files/patch-node__modules__github_copilot_npm-loader.js
+1-11 files

LLVM/project fac43d5clang/test/CodeGenOpenCL .gdb_history

[NFC] Remove `clang/test/CodeGenOpenCL/.gdb_history`
DeltaFile
+0-11clang/test/CodeGenOpenCL/.gdb_history
+0-111 files

FreeBSD/ports cc3c57emisc/gemini-cli pkg-plist distinfo, misc/gemini-cli/files package-lock.json

misc/gemini-cli: update 0.26.0 → 0.31.0
DeltaFile
+18,983-1,885misc/gemini-cli/pkg-plist
+1,883-936misc/gemini-cli/files/package-lock.json
+3-3misc/gemini-cli/distinfo
+1-1misc/gemini-cli/Makefile
+20,870-2,8254 files

LLVM/project 248e5d1clang/test/CodeGenOpenCL amdgpu-enqueue-kernel.cl cl-uniform-wg-size.cl, llvm/lib/IR AutoUpgrade.cpp

[AMDGPU] Make uniform-work-group-size a valueless attribute

The "uniform-work-group-size" function attribute previously took a
string value of "true" or "false". Since presence alone can convey
the "true" semantics and absence can convey "false", the value is
unnecessary.

This patch converts it to a valueless string attribute: presence
indicates true, absence indicates false. For backward compatibility,
auto-upgrade logic is added in both UpgradeAttributes (bitcode) and
UpgradeFunctionAttributes: if the old value is "true", the attribute
is kept without a value; if "false", the attribute is removed.

All setters (Clang CodeGen, OMPIRBuilder, AMDGPUAttributor, ROCDL
translation) and readers (AMDGPUAttributor, AMDGPULowerKernelAttributes,
AMDGPUHSAMetadataStreamer) are updated accordingly. The attribute is
also documented in the AMDGPU LLVM IR Attributes table where it was
previously missing.
DeltaFile
+24-26clang/test/CodeGenOpenCL/amdgpu-enqueue-kernel.cl
+14-13clang/test/CodeGenOpenCL/cl-uniform-wg-size.cl
+21-0llvm/lib/IR/AutoUpgrade.cpp
+21-0llvm/test/Bitcode/upgrade-uniform-work-group-size.ll
+4-9llvm/lib/Target/AMDGPU/AMDGPUAttributor.cpp
+5-6llvm/test/CodeGen/AMDGPU/uniform-work-group-propagate-attribute.ll
+89-5445 files not shown
+167-13451 files

FreeBSD/ports 551d942net-mgmt/prometheus3 distinfo Makefile

net-mgmt/prometheus3: Update to 3.10.0

Changelog:
https://github.com/prometheus/prometheus/releases/tag/v3.10.0
DeltaFile
+7-7net-mgmt/prometheus3/distinfo
+4-2net-mgmt/prometheus3/Makefile
+11-92 files

FreeBSD/ports 609dcfcsysutils/eksctl distinfo Makefile

sysutils/eksctl: Update to 0.223.0

Changelogs:
https://github.com/eksctl-io/eksctl/releases/tag/v0.223.0
https://github.com/eksctl-io/eksctl/releases/tag/v0.222.0
DeltaFile
+5-5sysutils/eksctl/distinfo
+2-3sysutils/eksctl/Makefile
+7-82 files

FreeBSD/ports 4ff0735games/solarus-quest-editor distinfo Makefile

games/solarus-quest-editor: Update to 2.0.3

Changelog:
https://gitlab.com/solarus-games/solarus/-/blob/release-2.0.3/editor/changelog.md
DeltaFile
+3-3games/solarus-quest-editor/distinfo
+1-1games/solarus-quest-editor/Makefile
+4-42 files

FreeBSD/ports bf804e0games/solarus distinfo pkg-plist

games/solarus: Update to 2.0.3

Changelog:
https://gitlab.com/solarus-games/solarus/-/blob/release-2.0.3/changelog.md
DeltaFile
+3-3games/solarus/distinfo
+3-1games/solarus/pkg-plist
+1-1games/solarus/Makefile
+7-53 files

FreeBSD/ports e3c060bsysutils/kubectl distinfo Makefile

sysutils/kubectl: Update to 1.35.2

Changelog:
https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.35.md#changelog-since-v1351
DeltaFile
+3-3sysutils/kubectl/distinfo
+1-1sysutils/kubectl/Makefile
+4-42 files

FreeBSD/ports 405be10editors/nano distinfo Makefile

editors/nano: Update to 8.7.1

Changelog:
https://www.nano-editor.org/news.php
DeltaFile
+3-3editors/nano/distinfo
+1-1editors/nano/Makefile
+1-0editors/nano/pkg-plist
+5-43 files

FreeBSD/ports bd37714security/aws-iam-authenticator distinfo Makefile

security/aws-iam-authenticator: Update to 0.7.11

Changelog:
https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/tag/v0.7.11
DeltaFile
+5-5security/aws-iam-authenticator/distinfo
+1-2security/aws-iam-authenticator/Makefile
+6-72 files

FreeBSD/ports ac39dc3sysutils/kubectl distinfo Makefile

sysutils/kubectl: Update to 1.35.1

Changelog:
https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.35.md#changelog-since-v1350
DeltaFile
+3-3sysutils/kubectl/distinfo
+1-2sysutils/kubectl/Makefile
+4-52 files

FreeBSD/ports 6439033misc/github-copilot-cli Makefile, misc/github-copilot-cli/files patch-node__modules__github_copilot_npm-loader.js

misc/github-copilot-cli: Add ripgrep run-time dependency
DeltaFile
+10-0misc/github-copilot-cli/files/patch-node__modules__github_copilot_npm-loader.js
+2-0misc/github-copilot-cli/Makefile
+12-02 files

NetBSD/src a0KXS8dlib/libc/arch/sh3/sys __sigtramp2.S, sys/arch/hp300/dev hpib.c

   s/unforunately/unfortunately/ in comments.

   from Miod Vallat by email.
VersionDeltaFile
1.47+3-3sys/arch/hp300/dev/hpib.c
1.20+3-3sys/dev/gpib/cs80bus.c
1.6+2-2lib/libc/arch/sh3/sys/__sigtramp2.S
+8-83 files

FreeBSD/ports 8050e7ddevel/nanobind Makefile distinfo, devel/nanobind/files patch-cmake_nanobind-config.cmake

devel/{,py-}nanobind: update 2.4.0 → 2.12.0
DeltaFile
+32-24devel/nanobind/Makefile
+0-46devel/nanobind/files/patch-cmake_nanobind-config.cmake
+9-4devel/py-nanobind/Makefile
+9-0science/py-phonopy/files/patch-pyproject.toml
+9-0science/py-phono3py/files/patch-pyproject.toml
+3-3devel/nanobind/distinfo
+62-772 files not shown
+70-808 files

FreeBSD/ports d5f7138misc/visp pkg-plist Makefile, misc/visp/files patch-modules_tracker_mbt_src_depth_vpMbtFaceDepthDense.cpp

misc/visp: update 3.6.0 → 3.7.0

PR:     293511
DeltaFile
+107-52misc/visp/pkg-plist
+0-31misc/visp/files/patch-modules_tracker_mbt_src_depth_vpMbtFaceDepthDense.cpp
+10-5misc/visp/Makefile
+3-3misc/visp/distinfo
+120-914 files

NetBSD/src edchgMTsys/netinet6 in6_pcb.c

   s/compepte/complete/ in comment.
VersionDeltaFile
1.178+3-3sys/netinet6/in6_pcb.c
+3-31 files

FreeBSD/ports a8ecd94audio/bliss Makefile distinfo, audio/bliss/files patch-src_frequency__sort.c patch-src_decode.c

audio/bliss: update 1.2.0-209 → 1.2.0.210
DeltaFile
+95-0audio/bliss/files/patch-src_frequency__sort.c
+53-0audio/bliss/files/patch-src_decode.c
+2-5audio/bliss/Makefile
+3-3audio/bliss/distinfo
+153-84 files

FreeBSD/ports 5215e40dns/blocky Makefile, dns/blocky/files blocky-config.yml.sample

dns/blocky: Modernize config sample syntax, set queryLog to none

Reported by:    diizzy
DeltaFile
+15-8dns/blocky/files/blocky-config.yml.sample
+1-0dns/blocky/Makefile
+16-82 files