java/sigar: fix running with openjdk8
Running Cassandra 3 gave:
java.lang.UnsupportedClassVersionError: org/hyperic/sigar/SigarException has been compiled by a more recent version of the Java Runtime (class file version 65.0), this version of the Java Runtime only recognizes class file versions up to 52.0
PR: 294323
Reported-by: Lapo Luchini
Fixes: f3a12dc72aa72af22212e3e37c5f29652eae0cbb "fix compilation with jdk21"
MFH: 2026Q2
Pointy-hat: to me
kdump(1): add sys/ prefix for exterror source file name
This makes it consistent with libc formatting.
Requested by: mckusick
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
NAS-140553 / 26.0.0-BETA.2 / Surface x-action-required compose extension on app.query (by sonicaj) (#18780)
This commit adds changes to expose `action_required` set by app dev
which let's the user know that something needs to be done on the app
side and he should check notes section.
Original PR: https://github.com/truenas/middleware/pull/18765
Co-authored-by: sonicaj <waqarahmedjoyia at live.com>
[NVPTX] Add intrinsics for narrow-fp to bf16 conversions (#191376)
Adds the following intrinsics for narrow-fp to bf16 conversions
introduced in PTX 9.2:
-
llvm.nvvm.{e4m3x2/e5m2x2}.to.bf16x2.rn{.relu}{.satfinite}.scale.n2.ue8m0
-
llvm.nvvm.{e2m3x2/e3m2x2}.to.bf16x2.rn{.relu}{.satfinite}.scale.n2.ue8m0
- llvm.nvvm.e2m1x2.to.bf16x2.rn{.relu}{.satfinite}.scale.n2.ue8m0
Tests have been verified through `ptxas-13.2`.
PTX ISA Reference:
https://docs.nvidia.com/cuda/parallel-thread-execution/#data-movement-and-conversion-instructions-cvt
[ADT] Add predicate based match support to StringSwitch (#188046)
This introduces `Predicate` and `IfNotPredicate` case selection to
StringSwitch to allow use cases like
```
StringSwitch<...>(..)
.Case("foo", FooTok)
.Predicate(isAlpha, IdentifierTok)
...
```
This is mostly useful for improving conciseness and clarity when
processing generated strings, diagnostics, and similar.
[LV] NFCI: Create VPExpressions in transformToPartialReductions. (#182863)
With this change, all logic to generate partial reductions and
recognising them as VPExpressions is contained in
`transformToPartialReductions`, without the need for a second transform
pass.
The PR intends to be a non-functional change.
[MLIR][NVVM] Update SM version requirements of Ops (#192257)
This change updates the SM version requirements of Ops with the
`NVVMRequiresSM` trait to include family-specific SM versions wherever
applicable.
[clang][bytecode] Fix DefaultInitExpr base pointer in IndirectFieldDecls (#193149)
We built up an in correct set of init chain links, causing a
`DefaultInitExpr` later to pick the wrong base pointer. Fix this by
adding one link per decl (-1) in the `IndirectFieldDecl`.
NAS-140553 / 27.0.0-BETA.1 / Surface x-action-required compose extension on app.query (#18765)
This commit adds changes to expose `action_required` set by app dev
which let's the user know that something needs to be done on the app
side and he should check notes section.
[clangd] [Modules] Refactor cache to support duplicated module name (#193413)
Following of https://github.com/llvm/llvm-project/pull/193158
Although https://github.com/llvm/llvm-project/pull/193158 handles
duplicated module name, the cache in ModulesBuilder still uses the old
assumption.
This patch tries to resolve the problem while not affecting original use
cases as much as possible. As the duplicated module name should be rare
in real world case.
AI Assisted
py-uv py-uv-build: updated to 0.11.7
0.11.7
Python
Upgrade CPython build to 20260414 including an OpenSSL security upgrade
Enhancements
Elevate configuration errors to required-version mismatches
Further improve TLS certificate validation messages
Improve --exclude-newer hints
Preview features
Fix --script handling in uv audit
Fix traversal of extras in uv audit
[9 lines not shown]
[mlir][spirv][nfc] Clean up FP8 and BF16 SPIR-V type tests (#193196)
Rename the non-emulation check prefixes for clarity, expand FP8/BF16
test coverage in SPIR-V type and TensorArm tests, and simplify a few
type predicates in SPIRVTypes.cpp.
No functional change intended.
Signed-off-by: Davide Grohmann <davide.grohmann at arm.com>