[mlir][Interfaces] Add `RegionBranchOpInterface::getSuccessorOperands` helper (#173971)
Add a helper for querying the successor operands for a region branch
`src -> dst`. Both `src` and `dst` may be the region branch op itself or
a terminator.
This helper allows users to query successor operands for the region
branch op and the terminators in a uniform way. This is similar to
`getSuccessorRegions(RegionBranchPoint)`, which works both for region
branch ops and terminators.
devel/libudev-bsd: new package
A libudev compatible interface for BSD systems,
based on the libudev-devd project for FreeBSD.
Includes changes from libudev-openbsd to support
OpenBSD, and incorporates patches from DPorts
for DragonFly support. NetBSD support is provided
via drvctl(4), using ndevd
InstCombine: Introduce nsz flag on minimum/maximum in SimplifyDemandedFPClass
Alive isn't particularly happy with this in the case where
one of the inputs could be zero, but I think
it's wrong: https://alive2.llvm.org/ce/z/dF7V6k
nsz shouldn't permit introducing a -0 result where
there wasn't one in the input here.
sysutils/ndevd: new package
NetBSD's devpubd (device publish daemon for automatic
device node creation) extend with event forwarding.
Since drvctl(4) allows only one active reader, ndevd
multiplexes it, forwarding all events to the connected
clients
[libc++][NFC] Simplify `gcd` a bit (#173570)
1. With `if constexpr` we can avoid partial specializations of
`__ct_gcd`. This patch changes it to a function template and renames it
to `__abs_in_type` to slightly improve readability.
2. `__gcd` was made non-recursive by
27a062e9ca7c92e89ed4084c3c3affb9fa39aabb, so this patch simply inlines
it into `gcd`.
vaultwarden: updated to 1.35.0
1.35.0
Notable changes
Implemented support for SSO with OpenID Connect, https://github.com/dani-garcia/vaultwarden/wiki/Enabling-SSO-support-using-OpenId-Connect
Updated web vault to 2025.12.0
Added support for future mobile apps with versions 2026.1.0+
This is the first vaultwarden release using immutable releases and release attestation!
[MLIR] Fix mlir-opt crash in ReshapeOpsUtils.cpp when collapse_shape index is invalid (#173791)
This patch fixes a crash occurring in mlir-opt when running
collapse_shape with an invalid index configuration. Instead of crashing,
an error message is returned to the user.
Fixes: #173567
---------
Co-authored-by: Bazinga! <akparmar004>