LLVM/project 672843alibcxx/include/__algorithm pstl.h, libcxx/include/__pstl/backends serial.h

[libc++][pstl] Implementation of parallel std::minmax_element() based on parallel reduce (#221572)

This PR adds an implementation of parallel `std::minmax_element()` based
on parallel reduce.

The implementation formulates `minmax_element` as a reduction of
iterators over the input range.
The iterators are first transformed into a min-max iterator pair.
The reduction is provided in two forms: 2-element reduction that makes
an iterator pair pointing to a smaller and a greater value, and a
range-based reduction with init value.
The latter delegates the heavy-lifting to the serial implementation of
`std::minmax_element()`.

Part of #99938.
DeltaFile
+212-0libcxx/test/std/algorithms/alg.sorting/alg.min.max/pstl.minmax_element_comp.pass.cpp
+209-0libcxx/test/std/algorithms/alg.sorting/alg.min.max/pstl.minmax_element.pass.cpp
+93-0libcxx/include/__pstl/cpu_algos/minmax_element.h
+25-0libcxx/include/__algorithm/pstl.h
+11-0libcxx/include/__pstl/backends/serial.h
+8-0libcxx/test/std/algorithms/pstl.exception_handling.pass.cpp
+558-08 files not shown
+589-014 files

LLVM/project ab7245dlibclc/clc/lib/generic/math clc_fmod.cl

libclc: Update fmod implementations (#222369)

This was originally ported from rocm device libs in
93af966747b59d37c57312a0c0242151076c072b. Merge in more
recent changes. This should also approximately match the default
expansion in ExpandIRInsts

Co-authored-by: Claude <noreply at anthropic.com>
DeltaFile
+96-124libclc/clc/lib/generic/math/clc_fmod.cl
+96-1241 files

LLVM/project 02a6e6ellvm/include/llvm/TargetParser AMDGPUTargetParser.h, llvm/lib/Target/AMDGPU AMDGPUTargetParser.td GCNProcessors.td

AMDGPU: Remove deprecated getArchAttr and ArchFeatures TableGen

Everything should now use getFeatureBitset*

Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
DeltaFile
+92-159llvm/lib/Target/AMDGPU/GCNProcessors.td
+0-44llvm/include/llvm/TargetParser/AMDGPUTargetParser.h
+20-21llvm/unittests/TargetParser/TargetParserTest.cpp
+2-23llvm/utils/TableGen/Basic/AMDGPUTargetDefEmitter.cpp
+0-21llvm/lib/Target/AMDGPU/AMDGPUTargetParser.td
+0-20llvm/test/TableGen/AMDGPUTargetDefErrors.td
+114-2885 files not shown
+121-31611 files

FreeNAS/freenas 32c3ab5src/middlewared/middlewared/plugins/init_shutdown_script task.py

Stop passing middlewared's environment to init/shutdown scripts

## Problem
User scripts were spawned with middlewared's entire environment, including `NOTIFY_SOCKET`. Since our unit sets `NotifyAccess=all`, a daemon a script leaves behind can send `MAINPID=` and be adopted as the unit's main process, so systemd tears middlewared down when that daemon later exits. A user hit this with a POSTINIT script starting a NUT driver: the driver was killed as a duplicate on every boot, middlewared went down with it, and Apps never started.

## Solution
Pass a curated set of names instead of inheriting: `PATH`, `TZ`, `LANG`, `USER`, the proxy variables and `REQUESTS_CA_BUNDLE`, all of which existing scripts may reasonably depend on. Allowlisted rather than denylisted so that whatever systemd or a plugin sets next stays out of user scripts too.
DeltaFile
+13-1src/middlewared/middlewared/plugins/init_shutdown_script/task.py
+13-11 files

NetBSD/pkgsrc DQRwwvWdoc CHANGES-2026

   Updated lang/nodejs
VersionDeltaFile
1.5984+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc no48wuwlang/nodejs Makefile distinfo

   nodejs: updated to 26.8.2

   26.8.2 (Current)

   Notable Changes

   - doc: deprecate Server.prototype._listen2 in node:net (Antoine du Hamel)
   - meta: refine the security vuln posture for experimental features (James M Snell)
   - deps: update Undici to 8.10.2 (Node.js GitHub Bot)
   - deps: update OpenSSL to 3.5.8
VersionDeltaFile
1.331+4-4lang/nodejs/distinfo
1.360+2-2lang/nodejs/Makefile
+6-62 files

FreeBSD/ports 33d5a82databases/mongodb70 pkg-message distinfo

databases/mongodb70: 7.0.41

Announcement:
https://www.mongodb.com/community/forums/t/mongodb-7-0-41-is-released/343299?u=r_k

Changes:
https://www.mongodb.com/docs/manual/release-notes/7.0#7041---sept-8-2026

Removed some python311 compatibility. Not needed anymore.
"REINPLACE_CMD ran, but did not modify file contents"

Security:       a whole list of CVEs in the release notes
DeltaFile
+1-9databases/mongodb70/Makefile
+3-3databases/mongodb70/distinfo
+1-1databases/mongodb70/pkg-message
+5-133 files

OpenBSD/ports f1TWwngx11/gnome/glycin Makefile crates.inc

   Update to glycin-2.2.0.
VersionDeltaFile
1.3+36-36x11/gnome/glycin/distinfo
1.3+17-17x11/gnome/glycin/crates.inc
1.4+1-3x11/gnome/glycin/Makefile
+54-563 files

OpenBSD/ports oxywCCPsysutils/google-cloud-sdk Makefile distinfo, sysutils/google-cloud-sdk/pkg PLIST

   Update to google-cloud-sdk-584.0.0.
VersionDeltaFile
1.436+356-23sysutils/google-cloud-sdk/pkg/PLIST
1.454+2-2sysutils/google-cloud-sdk/distinfo
1.474+1-1sysutils/google-cloud-sdk/Makefile
+359-263 files

LLVM/project 96295a1clang/lib/Parse ParseExpr.cpp, clang/test/SemaCXX cxx2d-pack-indexing-template.cpp

[Clang] Fix a crash when forming a type from an indexed TTP. (#222326)

Unreported 24 issue so no release note.
DeltaFile
+12-0clang/test/SemaCXX/cxx2d-pack-indexing-template.cpp
+1-1clang/lib/Parse/ParseExpr.cpp
+13-12 files

LLVM/project ad6d0b9clang/lib/AST/ByteCode Pointer.h InterpBuiltin.cpp, llvm/test/tools/llvm-rc show-includes.test

rebase

Created using spr 1.3.7
DeltaFile
+186-32clang/lib/AST/ByteCode/Interp.cpp
+80-27clang/lib/AST/ByteCode/Interp.h
+71-15clang/lib/AST/ByteCode/Pointer.cpp
+39-18clang/lib/AST/ByteCode/InterpBuiltin.cpp
+29-8clang/lib/AST/ByteCode/Pointer.h
+26-0llvm/test/tools/llvm-rc/show-includes.test
+431-10016 files not shown
+505-13822 files

LLVM/project 22d7c0bclang/lib/AST/ByteCode Pointer.h InterpBuiltin.cpp, llvm/test/tools/llvm-rc show-includes.test

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+186-32clang/lib/AST/ByteCode/Interp.cpp
+80-27clang/lib/AST/ByteCode/Interp.h
+71-15clang/lib/AST/ByteCode/Pointer.cpp
+39-18clang/lib/AST/ByteCode/InterpBuiltin.cpp
+29-8clang/lib/AST/ByteCode/Pointer.h
+26-0llvm/test/tools/llvm-rc/show-includes.test
+431-10016 files not shown
+505-13822 files

LLVM/project f5ce708clang/lib/AST/ByteCode Pointer.h InterpBuiltin.cpp, llvm/test/tools/llvm-rc show-includes.test

rebase

Created using spr 1.3.7
DeltaFile
+186-32clang/lib/AST/ByteCode/Interp.cpp
+80-27clang/lib/AST/ByteCode/Interp.h
+71-15clang/lib/AST/ByteCode/Pointer.cpp
+39-18clang/lib/AST/ByteCode/InterpBuiltin.cpp
+29-8clang/lib/AST/ByteCode/Pointer.h
+26-0llvm/test/tools/llvm-rc/show-includes.test
+431-10016 files not shown
+505-13822 files

LLVM/project 0e3cda1clang/lib/AST/ByteCode Pointer.h InterpBuiltin.cpp, llvm/test/tools/llvm-rc show-includes.test

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+186-32clang/lib/AST/ByteCode/Interp.cpp
+80-27clang/lib/AST/ByteCode/Interp.h
+71-15clang/lib/AST/ByteCode/Pointer.cpp
+39-18clang/lib/AST/ByteCode/InterpBuiltin.cpp
+29-8clang/lib/AST/ByteCode/Pointer.h
+26-0llvm/test/tools/llvm-rc/show-includes.test
+431-10015 files not shown
+501-13521 files

LLVM/project 4f90f14clang/lib/AST/ByteCode Pointer.h InterpBuiltin.cpp, llvm/test/tools/llvm-rc show-includes.test

rebase

Created using spr 1.3.7
DeltaFile
+186-32clang/lib/AST/ByteCode/Interp.cpp
+80-27clang/lib/AST/ByteCode/Interp.h
+71-15clang/lib/AST/ByteCode/Pointer.cpp
+39-18clang/lib/AST/ByteCode/InterpBuiltin.cpp
+29-8clang/lib/AST/ByteCode/Pointer.h
+26-0llvm/test/tools/llvm-rc/show-includes.test
+431-10015 files not shown
+501-13521 files

NetBSD/pkgsrc QNhpIdldoc CHANGES-2026

   Updated devel/py-aiostream, mail/py-checkdmarc
VersionDeltaFile
1.5983+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc cpc41A7mail/py-checkdmarc distinfo Makefile

   py-checkdmarc: updated to 6.0.1

   6.0.1

   Fixed

   SPF: the RFC 6652 reporting modifiers ra=, rp=, and rr=, added in 5.8.0 and removed later, are recognized again; their values are validated against RFC 6652 §3 (rp= per erratum 6579) and surfaced in the parsed result as ra, rp, and rr next to exp, and a malformed value is warned about and ignored instead of failing the record. Warnings also cover the two RFC 6652 §3 semantic rules — rp= and rr= do nothing without ra=, and ra= is ignored in a record reached through an include — and exp= and these modifiers are now honored after all in any order

   6.0.0

   An RFC conformance audit compared every module line-by-line against its governing specification (SPF: RFC 7208; DMARC: RFC 9989/9990; TLSRPT: RFC 8460; MTA-STS: RFC 8461; SMTP/MX: RFC 5321/7505/2181; DNSSEC: RFC 4033-4035; SOA: RFC 1035/2181; BIMI: draft-brand-indicators-14) and found 81 discrepancies, most confirmed by executing the old code. This release fixes all of them. Many fixes change validation verdicts — records the specs call valid are no longer rejected, and records they call invalid are no longer accepted — hence the major version. This release also contains everything staged for 5.18.0, which was never released.

   Breaking changes

   MX STARTTLS/TLS testing is now opt-in: pass --check-mx-tls on the CLI or check_mx_tls=True to check_domains(), check_mx(), or get_mx_hosts(). The --skip-tls flag and skip_tls parameter are still accepted but do nothing, and passing skip_tls emits a DeprecationWarning. As a result, MX host results no longer carry the tls and starttls keys, and the CSV tls/starttls columns are empty, unless TLS testing is turned on
   check_dnssec() performs a real chain-of-trust check anchored at the parent zone's DS record instead of verifying a zone's DNSKEY against itself. A zone with no DS at its parent (including "island of security" zones) is insecure per RFC 4033 §4.3 and returns False; a broken zone such as dnssec-failed.org returns False through any resolver, where it previously returned True through non-validating resolvers. Bogus (SERVFAIL with DS present) is now warned about distinctly from unsigned
   Unknown and extension tags/fields now parse with a warning instead of failing validation, as each spec requires: SPF unknown modifiers (RFC 7208 §6), DMARC unknown tags (RFC 9989 §4.7), TLSRPT extension fields (RFC 8460 §3), MTA-STS extension fields and policy keys (RFC 8461 §3.2), and BIMI unknown tags (draft §4.3). An unknown field is ignored only when it fits the spec's own extension grammar; a malformed extension name or value still fails the record or policy
   A TXT record unrelated to the record type being queried is now discarded instead of failing validation, per each spec's discard rule: TLSRPT (RFC 8460 §3.1), MTA-STS (RFC 8461 §3.1), BIMI (draft §7.2), and DMARC report authorization records (RFC 9990 §4). Each query also now returns the record carrying the version tag rather than whichever TXT record the resolver listed first. When a real record sits beside the unrelated one, the unrelated record is reported as a warning; when it is the only record present, the check reports that no record exists. DMARC authorization records are discarded silently, and a wildcard authorization record that is unrelated is still an error. Callers catching UnrelatedTXTRecordFoundAtTLSRPT or UnrelatedTXTRecordFoundAtBIMI should note that those queries now raise SMTPTLSReportingRecordNotFound and BIMIRecordNotFound instead
   Records the old code wrongly accepted are now invalid: SPF records exceeding the 10-DNS-lookup limit through a, ptr, or macro-valued terms (RFC 7208 §4.6.4 — the limit was previously only enforced for some mechanism types), SPF include of a domain with no SPF record (permerror per RFC 7208 §5.2), MTA-STS policies missing a required key (RFC 8461 §3.2 — the check was dead code), BIMI records missing the required l= tag (draft §4.3), lowercase v=dmarc1 (RFC 9989 §4.8), and an SPF qualifier on a modifier or a value on the all mechanism (RFC 7208 §12)

    [54 lines not shown]
VersionDeltaFile
1.36+5-5mail/py-checkdmarc/Makefile
1.34+4-4mail/py-checkdmarc/distinfo
+9-92 files

LLVM/project a9f7095clang/lib/AST/ByteCode Compiler.cpp Pointer.h

[clang][bytecode] Use opaque pointers for decl-based dummy pointers (#220917)

This uses the recently introduced opaque pointers for what we used to
use dummy pointers for, if the base of the pointer is a declaration.

This of course means we see opaque pointers in a lot more places.
However, we don't need to actually allocate anything for their data
anymore, resulting in a lot fewer allocations for such pointers.
DeltaFile
+186-32clang/lib/AST/ByteCode/Interp.cpp
+80-27clang/lib/AST/ByteCode/Interp.h
+71-15clang/lib/AST/ByteCode/Pointer.cpp
+39-18clang/lib/AST/ByteCode/InterpBuiltin.cpp
+29-8clang/lib/AST/ByteCode/Pointer.h
+12-7clang/lib/AST/ByteCode/Compiler.cpp
+417-1078 files not shown
+446-12514 files

LLVM/project 4e22a6ellvm/docs ReleaseNotes.md, llvm/test/tools/llvm-rc show-includes.test

[llvm-rc] Add /showIncludes dependency reporting (#217102)

Add `/showIncludes` support to `llvm-rc` so build systems can discover
the files a resource compile depends on. This enables Ninja and other
build systems to track and correctly recompile the `.rc` file when
inputs change.

Two kinds of dependencies are reported:

- Preprocessor header dependencies, by forwarding `--show-includes` to
the clang preprocessor.
- Resource files, (bitmaps, icons, manifests, etc) that are used in the
resource file.

The output format matches the `/showIncludes` format that cl.exe and
clang-cl.exe use, and that Ninja can consume natively via `deps=msvc`.

Assisted-by: Anthropic Claude Code (Opus 4.8)
Assisted-by: OpenAI Codex (GPT 5.6 Sol)
DeltaFile
+26-0llvm/test/tools/llvm-rc/show-includes.test
+14-10llvm/tools/llvm-rc/ResourceFileWriter.cpp
+7-0llvm/tools/llvm-rc/llvm-rc.cpp
+3-0llvm/tools/llvm-rc/Opts.td
+3-0llvm/docs/ReleaseNotes.md
+1-0llvm/tools/llvm-rc/ResourceFileWriter.h
+54-101 files not shown
+55-107 files

NetBSD/pkgsrc FLy9OUldevel/py-aiostream distinfo Makefile

   py-aiostream: updated to 0.7.2

   0.7.2
   Change return type of return Callable annotation in async_ to Coroutine[Any, Any, T], which is narrower than Awaitable[T]
   Replace asyncio.iscoroutinefunction with inspect.iscoroutinefunction
   Allow concatmap, flatmap and switchmap to receive an async function
VersionDeltaFile
1.12+6-6devel/py-aiostream/Makefile
1.9+4-4devel/py-aiostream/distinfo
+10-102 files

NetBSD/pkgsrc E78Q3i0devel/py-anyio Makefile

   py-anyio: typing-extensions for Python < 3.15 nor 3.13
VersionDeltaFile
1.40+2-2devel/py-anyio/Makefile
+2-21 files

LLVM/project 39e329dclang-tools-extra/docs/clang-tidy/checks/readability identifier-naming.rst identifier-naming.md, llvm/test/CodeGen/AArch64 vec-combine-compare-to-bitmask.ll overflow-vec.ll

rebase

Created using spr 1.3.7
DeltaFile
+4,053-1,008llvm/test/CodeGen/AMDGPU/GlobalISel/fpow.ll
+4,402-470llvm/test/CodeGen/AMDGPU/fpow.ll
+3,860-0clang-tools-extra/docs/clang-tidy/checks/readability/identifier-naming.md
+2,547-955llvm/test/CodeGen/AArch64/overflow-vec.ll
+0-3,317clang-tools-extra/docs/clang-tidy/checks/readability/identifier-naming.rst
+1,318-598llvm/test/CodeGen/AArch64/vec-combine-compare-to-bitmask.ll
+16,180-6,3481,570 files not shown
+63,411-27,3501,576 files

LLVM/project 73db52eclang-tools-extra/docs/clang-tidy/checks/readability identifier-naming.rst identifier-naming.md, llvm/test/CodeGen/AArch64 vec-combine-compare-to-bitmask.ll overflow-vec.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+4,053-1,008llvm/test/CodeGen/AMDGPU/GlobalISel/fpow.ll
+4,402-470llvm/test/CodeGen/AMDGPU/fpow.ll
+3,860-0clang-tools-extra/docs/clang-tidy/checks/readability/identifier-naming.md
+2,547-955llvm/test/CodeGen/AArch64/overflow-vec.ll
+0-3,317clang-tools-extra/docs/clang-tidy/checks/readability/identifier-naming.rst
+1,318-598llvm/test/CodeGen/AArch64/vec-combine-compare-to-bitmask.ll
+16,180-6,3481,570 files not shown
+63,411-27,3501,576 files

LLVM/project 74955a3clang-tools-extra/docs/clang-tidy/checks/readability identifier-naming.rst identifier-naming.md, llvm/test/CodeGen/AArch64 vec-combine-compare-to-bitmask.ll overflow-vec.ll

rebase

Created using spr 1.3.7
DeltaFile
+4,053-1,008llvm/test/CodeGen/AMDGPU/GlobalISel/fpow.ll
+4,402-470llvm/test/CodeGen/AMDGPU/fpow.ll
+3,860-0clang-tools-extra/docs/clang-tidy/checks/readability/identifier-naming.md
+2,547-955llvm/test/CodeGen/AArch64/overflow-vec.ll
+0-3,317clang-tools-extra/docs/clang-tidy/checks/readability/identifier-naming.rst
+1,318-598llvm/test/CodeGen/AArch64/vec-combine-compare-to-bitmask.ll
+16,180-6,3481,570 files not shown
+63,411-27,3501,576 files

LLVM/project 43d54f8clang-tools-extra/docs/clang-tidy/checks/readability identifier-naming.rst identifier-naming.md, llvm/test/CodeGen/AArch64 vec-combine-compare-to-bitmask.ll overflow-vec.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+4,053-1,008llvm/test/CodeGen/AMDGPU/GlobalISel/fpow.ll
+4,402-470llvm/test/CodeGen/AMDGPU/fpow.ll
+3,860-0clang-tools-extra/docs/clang-tidy/checks/readability/identifier-naming.md
+2,547-955llvm/test/CodeGen/AArch64/overflow-vec.ll
+0-3,317clang-tools-extra/docs/clang-tidy/checks/readability/identifier-naming.rst
+1,318-598llvm/test/CodeGen/AArch64/vec-combine-compare-to-bitmask.ll
+16,180-6,3481,570 files not shown
+63,411-27,3501,576 files

LLVM/project d13bc28clang-tools-extra/docs/clang-tidy/checks/readability identifier-naming.rst identifier-naming.md, llvm/test/CodeGen/AArch64 vec-combine-compare-to-bitmask.ll overflow-vec.ll

rebase

Created using spr 1.3.7
DeltaFile
+4,053-1,008llvm/test/CodeGen/AMDGPU/GlobalISel/fpow.ll
+4,402-470llvm/test/CodeGen/AMDGPU/fpow.ll
+3,860-0clang-tools-extra/docs/clang-tidy/checks/readability/identifier-naming.md
+2,547-955llvm/test/CodeGen/AArch64/overflow-vec.ll
+0-3,317clang-tools-extra/docs/clang-tidy/checks/readability/identifier-naming.rst
+1,318-598llvm/test/CodeGen/AArch64/vec-combine-compare-to-bitmask.ll
+16,180-6,3481,570 files not shown
+63,411-27,3501,576 files

NetBSD/pkgsrc uK6RqhFdoc CHANGES-2026

   Updated archivers/xz, lang/py-ast-serialize, textproc/py-regex, misc/py-platformdirs
VersionDeltaFile
1.5982+5-1doc/CHANGES-2026
+5-11 files

LLVM/project 1a57cd9lld/ELF/Arch X86_64.cpp, lld/test/ELF x86-64-relax-jump-tables.s

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+93-0lld/test/ELF/x86-64-relax-jump-tables.s
+82-0llvm/test/Transforms/LowerTypeTests/cfi-jumptable-hot.ll
+34-1lld/ELF/Arch/X86_64.cpp
+13-0llvm/lib/Transforms/IPO/LowerTypeTests.cpp
+222-14 files

LLVM/project 1a15255lld/ELF/Arch X86_64.cpp, lld/test/ELF x86-64-relax-jump-tables.s

[𝘀𝗽𝗿] changes to main this commit is based on

Created using spr 1.3.7

[skip ci]
DeltaFile
+93-0lld/test/ELF/x86-64-relax-jump-tables.s
+82-0llvm/test/Transforms/LowerTypeTests/cfi-jumptable-hot.ll
+24-1lld/ELF/Arch/X86_64.cpp
+13-0llvm/lib/Transforms/IPO/LowerTypeTests.cpp
+212-14 files

LLVM/project 1b7beaeclang-tools-extra/docs/clang-tidy/checks/readability identifier-naming.rst identifier-naming.md, llvm/test/CodeGen/AArch64 vec-combine-compare-to-bitmask.ll overflow-vec.ll

table

Created using spr 1.3.7
DeltaFile
+1,000-4,045llvm/test/CodeGen/AMDGPU/GlobalISel/fpow.ll
+470-4,402llvm/test/CodeGen/AMDGPU/fpow.ll
+0-3,860clang-tools-extra/docs/clang-tidy/checks/readability/identifier-naming.md
+955-2,547llvm/test/CodeGen/AArch64/overflow-vec.ll
+3,317-0clang-tools-extra/docs/clang-tidy/checks/readability/identifier-naming.rst
+598-1,318llvm/test/CodeGen/AArch64/vec-combine-compare-to-bitmask.ll
+6,340-16,1721,556 files not shown
+27,279-62,8651,562 files