LLVM/project 81e51e0openmp/tools/omptest/src OmptAssertEvent.cpp

[openmp][omptest] Include cstdlib for malloc() (#202021)

This is to address the error appearing when building this code with
somewhat more recent compilers:

```
Use of undeclared identifier 'malloc'
```

Such inclusion has already been added to the OmptTester.cpp file.
DeltaFile
+2-0openmp/tools/omptest/src/OmptAssertEvent.cpp
+2-01 files

LLVM/project 3fed38fllvm/lib/Target/AMDGPU AMDGPUCallLowering.cpp, llvm/test/CodeGen/AMDGPU isel-amdgcn-cs-chain-intrinsic-w64.ll isel-amdgcn-cs-chain-intrinsic-w32.ll

AMDGPU/GlobalISel: Fix tail call target in vgprs (#201873)

Insert readfirstlane, similar to SDAG version from #110984.
DeltaFile
+86-62llvm/test/CodeGen/AMDGPU/isel-amdgcn-cs-chain-intrinsic-w64.ll
+84-60llvm/test/CodeGen/AMDGPU/isel-amdgcn-cs-chain-intrinsic-w32.ll
+59-51llvm/test/CodeGen/AMDGPU/isel-amdgpu-cs-chain-intrinsic-dyn-vgpr-w32.ll
+7-1llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
+236-1744 files

LLVM/project d81a62amlir/include/mlir/Interfaces ControlFlowInterfaces.td

[mlir][Interfaces] Document completeness requirement of `RegionBranchOpInterface`
DeltaFile
+12-4mlir/include/mlir/Interfaces/ControlFlowInterfaces.td
+12-41 files

FreeBSD/ports e98e253lang/racket-minimal distinfo Makefile

lang/racket-minimal: Update to 9.2
DeltaFile
+3-3lang/racket-minimal/distinfo
+1-1lang/racket-minimal/Makefile
+4-42 files

FreeBSD/ports 5ea639elang/racket distinfo Makefile

lang/racket: Update to 9.2
DeltaFile
+3-3lang/racket/distinfo
+1-1lang/racket/Makefile
+4-42 files

OpenBSD/src YW5mDLqlib/libssl t1_lib.c ssl_tlsext.c

   libssl: don't break TLSv1.2 with X25519MLKEM768

   If the list of 'groups' starts with X25519MLKEM768 for a TLSv1.2 server,
   ssl3_send_server_kex_ecdhe() attempts to use NID_X25519MLKEM768, which
   it receives from tls1_get_supported_groups(). This does not work because
   it never received the peer's public keys, which causes an error return
   from tls_key_share_server_generate_mlkem768x25519().

   For a TLSv1.2-only client with custom supported group list we will
   currently send ML-KEM if configured. We should not do this.

   There is more to fix here: if a TLSv1.2 client is misconfigured with
   only X25519MLKEM768, we should not send a supported groups extension
   (with this commit we'll send an empty one, which is an RFC violation).

   This commit simply filters X25519MLKEM768 out of the supported groups
   list if we're configured to be TLSv1.2-only.

   feedback/ok jsing kenjiro (on an earlier version)
VersionDeltaFile
1.209+24-1lib/libssl/t1_lib.c
1.161+6-2lib/libssl/ssl_tlsext.c
+30-32 files

OpenBSD/ports DjabeA2security/pizauth distinfo crates.inc, security/pizauth/pkg PLIST

   Update to pizauth 1.1.0, from maintainer/upstream
VersionDeltaFile
1.15+296-204security/pizauth/distinfo
1.13+147-101security/pizauth/crates.inc
1.19+4-1security/pizauth/Makefile
1.4+3-0security/pizauth/pkg/PLIST
+450-3064 files

NetBSD/pkgsrc KDkIILEdoc CHANGES-2026

   doc: Updated databases/ruby-sequel to 5.105.0
VersionDeltaFile
1.3526+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 71tR3oRdatabases/ruby-sequel distinfo Makefile

   databases/ruby-sequel: update to 5.105.0

   5.105.0 (2026-06-01)

   * Add Plugin.model_instance_variables to set instance variables used by
     instances of model using a plugin (jeremyevans)

   * Add Model.set_model_instance_variables to set instance variables used by
     instances of a specific model class (jeremyevans)

   * Support shape-friendly Model instances via Model.shape_friendly = true
     (jeremyevans)

   * Make connection_expiration extension set expiration time on connections in
     the pool when it is loaded (cooljacob204, jeremyevans) (#2365, #2366)
VersionDeltaFile
1.146+4-4databases/ruby-sequel/distinfo
1.147+2-2databases/ruby-sequel/Makefile
+6-62 files

NetBSD/src ZtguO7xsys/dev/iscsi iscsi_ioctl.c iscsi_send.c

   Keep locking order.
   Prevent PDU double free.
   Add debug output.
VersionDeltaFile
1.38+6-9sys/dev/iscsi/iscsi_ioctl.c
1.42+4-8sys/dev/iscsi/iscsi_send.c
1.30+5-3sys/dev/iscsi/iscsi_utils.c
+15-203 files

LLVM/project 570e532llvm/tools/llubi/lib Value.h

[llubi] explain Byte.TagValue encoding trick (#201863)

This took me a while to understand in #185977 so let's make it more
explicit why `TagValue` can be so small.
DeltaFile
+11-1llvm/tools/llubi/lib/Value.h
+11-11 files

OpenBSD/src Dc9zfdHregress/lib/libssl/dtls dtls_handshake_msg_test.c Makefile

   Add regress tests for DTLS handshake messages.
VersionDeltaFile
1.1+369-0regress/lib/libssl/dtls/dtls_handshake_msg_test.c
1.6+6-1regress/lib/libssl/dtls/Makefile
+375-12 files

LLVM/project 12e5a0fllvm/lib/Target/X86 X86ISelLowering.cpp X86ISelLowering.h, llvm/test/Transforms/AtomicExpand/X86 expand-atomic-non-integer.ll

[X86] Remove shouldCastAtomicLoadInIR; use DAG combine instead

Remove X86's shouldCastAtomicLoadInIR override that cast FP atomic
loads to integer at the IR level. Instead, handle this in a pre-legalize
DAG combine (combineAtomicLoad) that rewrites FP/FP-vector atomic loads
to integer atomic loads plus a bitcast.

This depends on #199310 which adds the necessary cmpxchg support for
non-integer atomic loads in AtomicExpand.
DeltaFile
+25-7llvm/lib/Target/X86/X86ISelLowering.cpp
+2-4llvm/test/Transforms/AtomicExpand/X86/expand-atomic-non-integer.ll
+0-2llvm/lib/Target/X86/X86ISelLowering.h
+27-133 files

FreeBSD/src 8d9dff2. Makefile.inc1

check-old-libs: Show information about packages

If pkg is installed, for each old library found to still be present,
check if any installed packages either provide or require the library,
and inform the user.

MFC after:      1 week
Reviewed by:    markj
Differential Revision:  https://reviews.freebsd.org/D53977
DeltaFile
+9-0Makefile.inc1
+9-01 files

LLVM/project 86fc55ellvm/lib/Transforms/Scalar LoopFuse.cpp

[LoopFusion] Remove unused DataLayout parameter (NFC) (#202009)

The LoopFuser constructor took a DataLayout reference that was never
stored or used, and run() computed it solely to pass it in. Drop both.
DeltaFile
+3-4llvm/lib/Transforms/Scalar/LoopFuse.cpp
+3-41 files

LLVM/project f8ee61bllvm/lib/Target/X86/GISel X86LegalizerInfo.cpp, llvm/test/CodeGen/X86/GlobalISel legalize-freeze.mir legalize-ctpop.mir

[X86][GlobalISel] Remove dependency on legal ruleset (#197374)

This fills in always legal rules, to remove the dependency on the legacy
ruleset. I'm not sure about the truncate rule but all tests pass. This
is not guaranteed to be all the rules, just the ones that appear in
tests.
DeltaFile
+7-5llvm/test/CodeGen/X86/GlobalISel/legalize-freeze.mir
+5-5llvm/test/CodeGen/X86/GlobalISel/legalize-ctpop.mir
+8-0llvm/lib/Target/X86/GISel/X86LegalizerInfo.cpp
+20-103 files

OPNSense/core efe680esrc/opnsense/mvc/app/models/OPNsense/Firewall Filter.php

Firewall: NAT: Source NAT - cleanup model (serializeToConfig) for https://github.com/opnsense/core/pull/10373

When calling serializeToConfig() we should be able to trust the data as validation has already taken place.
The only downside here is that when changing the mode, other validations might trigger which are not shown by the gui because this attribute is persisted using the regular setAction, which might be solvable by limiting the "set" scope here.
DeltaFile
+1-6src/opnsense/mvc/app/models/OPNsense/Firewall/Filter.php
+1-61 files

NetBSD/pkgsrc 8ftYj7fdoc CHANGES-2026

   Updated graphics/OpenJPH
VersionDeltaFile
1.3525+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc sh5jyAhgraphics/OpenJPH Makefile distinfo

   OpenJPH: updated to 0.27.4

   0.27.4

   add documentation for ASAN build type
   Bug fix
VersionDeltaFile
1.13+5-3graphics/OpenJPH/Makefile
1.10+4-4graphics/OpenJPH/distinfo
+9-72 files

OPNSense/core ce423eesrc/opnsense/mvc/app/controllers/OPNsense/Base ApiMutableModelControllerBase.php ApiControllerBase.php, src/opnsense/mvc/app/controllers/OPNsense/Core/Api DefaultsController.php BackupController.php

core/ACL - uniform "user-config-readonly" trap to avoid repeating a similar pattern in multiple components.

When needed, a developer can just add a call to throwReadOnly() when an operation is deemed to modify the configuration and should be prohibited due to the read-only flag set.
DeltaFile
+8-15src/opnsense/mvc/app/controllers/OPNsense/Base/ApiMutableModelControllerBase.php
+8-5src/opnsense/mvc/app/controllers/OPNsense/Firewall/Api/FilterBaseController.php
+0-13src/opnsense/mvc/app/controllers/OPNsense/Core/Api/DefaultsController.php
+0-13src/opnsense/mvc/app/controllers/OPNsense/Core/Api/BackupController.php
+13-0src/opnsense/mvc/app/controllers/OPNsense/Base/ApiControllerBase.php
+4-3src/opnsense/mvc/app/controllers/OPNsense/Firewall/Api/MigrationController.php
+33-491 files not shown
+38-507 files

OpenBSD/ports sHBak1Tdevel/jujutsu Makefile, devel/jujutsu/patches patch-cli_src_main_rs

   jujutsu: pull in upstream #9610 to disable mimalloc

   I was unsure whether I should disable mimalloc for OpenBSD but then thought
   I'd go with upstream's decision despite performance properties of mimalloc
   not being great on OpenBSD. While mimalloc has been working fine for me in
   the last few weeks and is well tested via python, mimalloc turns out to be
   completely broken on illumos, at least the way jujutsu uses it. A day after
   release upstream therefore decided not to enable it on platforms they don't
   cover in CI. So let just not use this code since it will be disabled again
   anyway in a month at the latest.
VersionDeltaFile
1.1+22-0devel/jujutsu/patches/patch-cli_src_main_rs
1.33+1-0devel/jujutsu/Makefile
+23-02 files

NetBSD/pkgsrc 8nBeeBldoc CHANGES-2026

   Added textproc/py-sphinxnotes-mock; Updated chat/srain
VersionDeltaFile
1.3524+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc 9Q9tZpvchat/srain Makefile distinfo

   srain: updated to 1.8.1

   1.8.1

   - Changes:

     - Update metainfo, thanks to @yakushabb

   - Bug fixes:

     - Remove bool typedef in C23, thanks to @pastalian


   1.8.0

   - Features:

     - Add zh_TW Traditional Chinese translation, thanks to @PeterDaveHello
     - Add :doc:`configuration <config>` ``chat-list-order = "recent|alphabet"`` for changing chat list order, thanks to @Exagone313

    [11 lines not shown]
VersionDeltaFile
1.55+5-5chat/srain/Makefile
1.15+4-4chat/srain/distinfo
1.7+2-1chat/srain/PLIST
+11-103 files

NetBSD/pkgsrc 8cFjKGHtextproc Makefile, textproc/py-sphinxnotes-mock Makefile PLIST

   py-sphinxnotes-mock: added version 1.1

   Sphinx extension for masking unsupported directives and roles without modifying
   documents. It is especially useful when a certain directive/role is provided by
   an incompatible extension, or the directive/roles is incompatible with your
   current buidler or theme.
VersionDeltaFile
1.1+22-0textproc/py-sphinxnotes-mock/Makefile
1.1+13-0textproc/py-sphinxnotes-mock/PLIST
1.1+5-0textproc/py-sphinxnotes-mock/distinfo
1.1+4-0textproc/py-sphinxnotes-mock/DESCR
1.1590+2-1textproc/Makefile
+46-15 files

OpenBSD/ports TIIh44jsysutils/p5-Sys-Virt distinfo Makefile

   Update to p5-Sys-Virt-12.4.0.
VersionDeltaFile
1.68+2-2sysutils/p5-Sys-Virt/distinfo
1.82+1-1sysutils/p5-Sys-Virt/Makefile
+3-32 files

OpenBSD/ports WlqTRa8sysutils/gemini-cli distinfo Makefile, sysutils/gemini-cli/pkg PLIST

   Update to gemini-cli-0.45.2.
VersionDeltaFile
1.26+64-64sysutils/gemini-cli/pkg/PLIST
1.27+2-2sysutils/gemini-cli/distinfo
1.29+1-1sysutils/gemini-cli/Makefile
+67-673 files

OpenBSD/ports qqtSc2usysutils/awscli/v1 distinfo Makefile

   Update to awscli-1.45.24.
VersionDeltaFile
1.33+2-2sysutils/awscli/v1/distinfo
1.35+1-1sysutils/awscli/v1/Makefile
+3-32 files

OpenBSD/ports cvY1ofvnet/py-boto3 distinfo Makefile

   Update to py3-boto3-1.43.24.
VersionDeltaFile
1.651+2-2net/py-boto3/distinfo
1.663+1-1net/py-boto3/Makefile
+3-32 files

OpenBSD/ports 0PM0LjAnet/py-botocore distinfo Makefile, net/py-botocore/pkg PLIST

   Update to py3-botocore-1.43.24.
VersionDeltaFile
1.326+5-0net/py-botocore/pkg/PLIST
1.868+2-2net/py-botocore/distinfo
1.878+1-1net/py-botocore/Makefile
+8-33 files

OpenBSD/ports PvQfge7sysutils/plakar distinfo modules.inc, sysutils/plakar/pkg PLIST

   Update to plakar-1.1.0.
VersionDeltaFile
1.18+676-874sysutils/plakar/distinfo
1.13+361-394sysutils/plakar/modules.inc
1.6+1-4sysutils/plakar/pkg/PLIST
1.21+1-2sysutils/plakar/Makefile
+1,039-1,2744 files