LLVM/project 72b1c13lldb/include/lldb/ValueObject DILEval.h DILParser.h, lldb/source/ValueObject DILEval.cpp DILParser.cpp

[lldb] Add enum lookup to DIL (#192065)
DeltaFile
+36-0lldb/test/API/commands/frame/var-dil/expr/EnumValueLookup/TestEnumValueLookup.py
+29-0lldb/source/ValueObject/DILEval.cpp
+19-0lldb/test/API/commands/frame/var-dil/expr/EnumValueLookup/main.cpp
+5-0lldb/include/lldb/ValueObject/DILEval.h
+2-2lldb/source/ValueObject/DILParser.cpp
+3-0lldb/include/lldb/ValueObject/DILParser.h
+94-21 files not shown
+97-27 files

NetBSD/pkgsrc-wip ff4ed61dnsdist Makefile COMMIT_MSG, powerdns PLIST COMMIT_MSG

dnsdist, powerdns: remove, updated in pkgsrc
DeltaFile
+0-75dnsdist/Makefile
+0-69dnsdist/COMMIT_MSG
+0-61powerdns/PLIST
+0-47powerdns/COMMIT_MSG
+0-32powerdns/Makefile.common
+0-29powerdns/files/smf/manifest.xml
+0-31316 files not shown
+1-55622 files

NetBSD/pkgsrc JkAdfmMdoc CHANGES-2026 TODO

   doc: Updated net/powerdns to 5.0.5
VersionDeltaFile
1.3277+2-1doc/CHANGES-2026
1.27316+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc DwRi3fqnet/powerdns distinfo Makefile

   net/powerdns: Update to version 5.0.5

   From Marcin Gondek via wip.

   This is release 5.0.5 of the Authoritative Server. It contains bug fixes and security fixes.

   Bug Fixes

   Fix PowerDNS Security Advisory 2026-06 for PowerDNS Authoritative Server: Multiple Issues
   use less inefficient code in web server
   harden xfr*BitInt writers
   perform axfr immediately when creating an autosecondary domain
   Actually install binaries when building with meson
   web: stricter control of statistics rings changes
   stricter handing of the Lua DNS update policy
   correctly delete ENT records from the API
   lua: one more bad case of createForward
   minor pdns_control bugfixes
   webserver: correctly split the basic authorization cookie

    [2 lines not shown]
VersionDeltaFile
1.58+4-4net/powerdns/distinfo
1.96+2-2net/powerdns/Makefile
1.47+2-2net/powerdns/Makefile.common
+8-83 files

NetBSD/pkgsrc pdGRe8edoc CHANGES-2026

   doc: Updated net/dnsdist to 2.0.6
VersionDeltaFile
1.3276+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc FgDxJiFnet/dnsdist distinfo Makefile, net/dnsdist/patches patch-dnsdist-lua.cc

   net/dnsdist: Update to version 2.0.6

   From Marcin Gondek via wip.

   Improvements

   Fix clang-tidy warnings
   Also apply UDP socket buffer sizes to backend sockets
   Make code boost-1.91 compatible

   Bug Fixes

   Check the DoQ query size against the received size
   Fix outgoing TLS session cache cleanup
   Compute a less inaccurate number of DNS records to pass to reserve()
   Maintain a "current size of received body" counter.
   Fix the dynamic block top suffixes counters computation
   snmp-agent: Fix a memory leak
   Fix XSK configuration via YAML

    [12 lines not shown]
VersionDeltaFile
1.27+4-5net/dnsdist/distinfo
1.50+2-3net/dnsdist/Makefile
1.2+1-1net/dnsdist/patches/patch-dnsdist-lua.cc
+7-93 files

NetBSD/pkgsrc AGOEduSdoc CHANGES-2026

   doc: Updated textproc/xleak to 0.2.6
VersionDeltaFile
1.3275+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc y95J2Fatextproc/xleak distinfo cargo-depends.mk

   xleak: update to 0.2.6.

   Release Notes

   Added

       NetBSD installation via pkgin install xleak (thanks @0323pin! #40)
       Automated AUR, WinGet, and Scoop publishing via GitHub Actions
       Warn when formula cells are blank due to uncached xlsx values (NOTE: before table, suggests --formulas or re-saving in Excel/LibreOffice)

   Changed

       Upgrade calamine 0.26 → 0.34 and dirs 5.0 → 6.0 for Debian packaging compatibility (thanks @nadzyah! #43)
       Nix flake version now read dynamically from Cargo.toml; homepage URL fixed
       Replaced prettytable-rs with comfy-table for non-interactive output, enabling correct multiline cell wrapping with --wrap (#44)
       Non-interactive table output: green bold headers, red errors, green formula-mode cells

   Fixed


    [4 lines not shown]
VersionDeltaFile
1.2+52-97textproc/xleak/distinfo
1.2+16-31textproc/xleak/cargo-depends.mk
1.2+2-2textproc/xleak/Makefile
+70-1303 files

NetBSD/pkgsrc jIAT5iIdoc CHANGES-2026

   doc: Updated net/tlrc to 1.13.1
VersionDeltaFile
1.3274+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 8LT0sLGnet/tlrc distinfo cargo-depends.mk

   tlrc: update to 1.13.1.

   updated rustls-webpki to fix vulnerabilities (#172)
   fix: too many spaces in --info output
VersionDeltaFile
1.14+79-76net/tlrc/distinfo
1.14+25-24net/tlrc/cargo-depends.mk
1.17+2-2net/tlrc/Makefile
+106-1023 files

LLVM/project 2894d75flang/lib/Semantics check-omp-structure.cpp, flang/test/Semantics/OpenMP workdistribute05.f90

[Flang][OpenMP] Allow workdistribute inside 'target teams' (#199006)

Currently, a `workdistribute` construct nested inside of a combined
`target teams` is incorrectly reported as an error. This patch fixes
that.
DeltaFile
+23-0flang/test/Semantics/OpenMP/workdistribute05.f90
+1-1flang/lib/Semantics/check-omp-structure.cpp
+24-12 files

LLVM/project 586b9a4clang/include/clang/AST DeclTemplate.h, clang/lib/AST DeclTemplate.cpp

[clang] fix getTemplateInstantiationArgs

This implements a new strategy for collecting the template arguments, by
relying on the qualifiers and template parameter lists to navigate the template
context of out-of-line definitions.

This greatly simplifies the signature of that function, by removing a bunch
of workarounds, and simpliffying a couple that weren't removed yet.

Since this now relies on qualifiers and template parameter lists,
this patch expends most of its effort making sure these are placed,
transformed and propagated to template instantiations.

Also makes the explicit specialization AST nodes stop abusing the template
parameter lists by storing it's own template parameter list, creating a
dedicated field for them, similar to partial specializations.
DeltaFile
+194-429clang/lib/Sema/SemaTemplateInstantiate.cpp
+257-164clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
+150-148clang/lib/Sema/SemaTemplate.cpp
+96-95clang/include/clang/AST/DeclTemplate.h
+59-129clang/lib/Sema/SemaConcept.cpp
+60-92clang/lib/AST/DeclTemplate.cpp
+816-1,05746 files not shown
+1,384-1,63852 files

FreeNAS/freenas 3b1bde3src/middlewared/middlewared/plugins/acme_dns_authenticator/authenticators shell.py, src/middlewared/middlewared/plugins/filesystem_ perm_check.py

Switch to truenas_pyos access check function

This commit switches from using our process-pool based permissions
checker with on that's streamlined inside truenas_pyos and executes
with GIL dropped. Historically this area has been troublesome to
keep good performance and so simplifying middleware design here
is worthwhile.
DeltaFile
+143-39src/middlewared/middlewared/plugins/filesystem_/perm_check.py
+0-86src/middlewared/middlewared/utils/filesystem/access.py
+1-63src/middlewared/middlewared/utils/user_context.py
+11-11tests/api2/test_can_access_as_user.py
+2-2src/middlewared/middlewared/utils/libvirt/cdrom.py
+1-1src/middlewared/middlewared/plugins/acme_dns_authenticator/authenticators/shell.py
+158-2026 files

LLVM/project 00fb002clang/include/clang/Serialization ASTRecordReader.h, clang/lib/AST ASTContext.cpp Type.cpp

trivial changes
DeltaFile
+20-14clang/lib/Sema/SemaOpenMP.cpp
+18-14clang/lib/AST/ASTContext.cpp
+16-15clang/lib/Sema/SemaTemplate.cpp
+14-11clang/lib/AST/Type.cpp
+14-8clang/lib/AST/ASTDiagnostic.cpp
+11-6clang/include/clang/Serialization/ASTRecordReader.h
+93-6833 files not shown
+202-15239 files

LLVM/project 7cc0b13clang/include/clang/AST ASTContext.h, clang/lib/AST ASTContext.cpp ItaniumMangle.cpp

[clang] implement CWG2064: ignore value dependence for decltype

The 'decltype' for a value-dependent (but non-type-dependent) should be known,
so this patch makes them non-opaque instead.

This patch also implements what's neceessary to allow overloading
on pure differences in instantiation dependence, making `std::void_t`
usable for SFINAE purposes.

This also readds a few test cases from da98651, which was a previous attempt
at resolving CWG2064.

Fixes #8740
Fixes #61818
Fixes #190388
DeltaFile
+888-161clang/lib/AST/ASTContext.cpp
+328-12clang/test/SemaTemplate/instantiation-dependence.cpp
+176-96clang/lib/AST/ItaniumMangle.cpp
+100-98clang/lib/Sema/SemaCXXScopeSpec.cpp
+62-57clang/lib/AST/Type.cpp
+88-11clang/include/clang/AST/ASTContext.h
+1,642-43569 files not shown
+2,376-79475 files

NetBSD/src om5WTxTsys/arch/sparc/conf files.sparc, sys/arch/sparc/dev cgfour.c

   Add WSDISPLAY support (tokenalt at gmail dot com)
VersionDeltaFile
1.52+349-28sys/arch/sparc/dev/cgfour.c
1.5+7-3sys/dev/sun/pfourreg.h
1.165+2-2sys/arch/sparc/conf/files.sparc
+358-333 files

FreeBSD/src f05fb51usr.bin/vtfontcvt vtfontcvt.c

vtfontcvt: Return error from write_fnt_source

Previously write_fnt_source always returned 0, silently discarding
errors.  Return rv so that errors set vtfontcvt's shell exit
appropriately.

Sponsored by: The FreeBSD Foundation
DeltaFile
+1-1usr.bin/vtfontcvt/vtfontcvt.c
+1-11 files

OpenBSD/ports 0pdllpWproductivity/minder Makefile

   Makefile
VersionDeltaFile
1.14+3-3productivity/minder/Makefile
+3-31 files

LLVM/project c237f89clang/include/clang/AST DeclTemplate.h, clang/lib/AST DeclTemplate.cpp

[clang] fix getTemplateInstantiationArgs

This implements a new strategy for collecting the template arguments, by
relying on the qualifiers and template parameter lists to navigate the template
context of out-of-line definitions.

This greatly simplifies the signature of that function, by removing a bunch
of workarounds, and simpliffying a couple that weren't removed yet.

Since this now relies on qualifiers and template parameter lists,
this patch expends most of its effort making sure these are placed,
transformed and propagated to template instantiations.

Also makes the explicit specialization AST nodes stop abusing the template
parameter lists by storing it's own template parameter list, creating a
dedicated field for them, similar to partial specializations.
DeltaFile
+194-429clang/lib/Sema/SemaTemplateInstantiate.cpp
+261-167clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
+150-148clang/lib/Sema/SemaTemplate.cpp
+96-95clang/include/clang/AST/DeclTemplate.h
+59-129clang/lib/Sema/SemaConcept.cpp
+60-92clang/lib/AST/DeclTemplate.cpp
+820-1,06046 files not shown
+1,388-1,64152 files

FreeBSD/src 21d9bc1lib/libcasper/services/cap_net cap_net.3

cap_net.3: Clarify monotonic reduction in permitted operations

Reviewed by:    markj, oshogbo
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D57141

(cherry picked from commit 59601a75d6fb1300b1aec2977eaa6adeb0300684)
(cherry picked from commit 414617d82c8a4e10c8bdfc9ea50f3b3fde7cec0d)
DeltaFile
+2-1lib/libcasper/services/cap_net/cap_net.3
+2-11 files

FreeBSD/src 414617dlib/libcasper/services/cap_net cap_net.3

cap_net.3: Clarify monotonic reduction in permitted operations

Reviewed by:    markj, oshogbo
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D57141

(cherry picked from commit 59601a75d6fb1300b1aec2977eaa6adeb0300684)
DeltaFile
+2-1lib/libcasper/services/cap_net/cap_net.3
+2-11 files

OpenBSD/src rXLil1Glib/libssl dtls_local.h

   remove prototype for removed dtls1_get_cipher()
   ok jsing@
VersionDeltaFile
1.6+1-2lib/libssl/dtls_local.h
+1-21 files

LLVM/project 925ec82mlir/docs Tokens.md LangRef.md

address comments: symbols / IsolatedFromAbove
DeltaFile
+6-1mlir/docs/Tokens.md
+1-2mlir/docs/LangRef.md
+7-32 files

OpenBSD/ports flTp9R5devel/stylua distinfo Makefile

   devel/stylua: Update to version 2.5.2.

   Diff from Laurent Cheylus, thanks!
VersionDeltaFile
1.7+4-4devel/stylua/distinfo
1.8+1-1devel/stylua/Makefile
1.5+1-1devel/stylua/crates.inc
+6-63 files

LLVM/project 2928ac8clang/include/clang/AST DeclTemplate.h, clang/lib/AST DeclTemplate.cpp

[clang] fix getTemplateInstantiationArgs

This implements a new strategy for collecting the template arguments, by
relying on the qualifiers and template parameter lists to navigate the template
context of out-of-line definitions.

This greatly simplifies the signature of that function, by removing a bunch
of workarounds, and simpliffying a couple that weren't removed yet.

Since this now relies on qualifiers and template parameter lists,
this patch expends most of its effort making sure these are placed,
transformed and propagated to template instantiations.

Also makes the explicit specialization AST nodes stop abusing the template
parameter lists by storing it's own template parameter list, creating a
dedicated field for them, similar to partial specializations.
DeltaFile
+194-429clang/lib/Sema/SemaTemplateInstantiate.cpp
+263-167clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
+150-148clang/lib/Sema/SemaTemplate.cpp
+96-95clang/include/clang/AST/DeclTemplate.h
+59-129clang/lib/Sema/SemaConcept.cpp
+60-92clang/lib/AST/DeclTemplate.cpp
+822-1,06046 files not shown
+1,390-1,64152 files

OpenBSD/ports m2gILhIx11/qt5/qtwebengine Makefile, x11/qt5/qtwebengine/patches patch-src_3rdparty_chromium_third_party_skia_third_party_skcms_src_Transform_inl_h

   x11/qt5/qtwebengine: llvm22 build fix on x86, from qt6/qtwebengine

   ok rsadowski@
VersionDeltaFile
1.1+17-0x11/qt5/qtwebengine/patches/patch-src_3rdparty_chromium_third_party_skia_third_party_skcms_src_Transform_inl_h
1.74+2-0x11/qt5/qtwebengine/Makefile
+19-02 files

NetBSD/pkgsrc 0PCfI29doc CHANGES-2026

   Updated net/py-pika, devel/py-fixtures
VersionDeltaFile
1.3273+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc 7GKKNlQdevel/py-fixtures PLIST distinfo

   py-fixtures: updated to 4.3.2

   4.3.2

   * Temporarily re-add the ``fixtures.tests.helpers`` module.

   4.3.1

   * Improve types for WarningsCapture.
   * Use ParamSpec for better type hints.
   * Return Self from __enter__ for better type inference.
VersionDeltaFile
1.6+7-1devel/py-fixtures/PLIST
1.11+4-4devel/py-fixtures/distinfo
1.20+2-2devel/py-fixtures/Makefile
+13-73 files

NetBSD/pkgsrc VC5r7wDnet/py-pika distinfo Makefile

   py-pika: updated to 1.4.1

   1.4.1
   Unknown changes
VersionDeltaFile
1.9+4-4net/py-pika/distinfo
1.11+2-3net/py-pika/Makefile
+6-72 files

FreeNAS/freenas 2fd43f0tests/sharing_protocols/fibre_channel test_fibre_channel.py, tests/sharing_protocols/iscsi test_261_iscsi_cmd.py test_264_iscsi_mode_compat.py

Remove tests
DeltaFile
+0-3,596tests/sharing_protocols/iscsi/test_261_iscsi_cmd.py
+0-2,303tests/sharing_protocols/nvmet/test_nvmet_tcp.py
+0-1,107tests/sharing_protocols/iscsi/test_264_iscsi_mode_compat.py
+0-1,081tests/sharing_protocols/fibre_channel/test_fibre_channel.py
+0-1,027tests/sharing_protocols/nfs/test_nfs_mt_races.py
+0-921tests/sharing_protocols/nvmet/nvmet_ha_utils.py
+0-10,03518 files not shown
+0-16,72524 files