[BOLT] Fix long-jmp-bti-plt.c test (#176709)
The test checked for exact addresses in disassembly. This was failing on
some platforms.
Fix: changed test to check for regular expressions
py-bandit: updated to 1.9.3
1.9.3
* Limit B614 to torch.load deserializers
* Bump docker/setup-buildx-action from 3.11.1 to 3.12.0
* Update tox tests for Python 3.10
* [pre-commit.ci] pre-commit autoupdate
* Add check for hardcoded passwords in dicts.
* Fix B608 to detect \`VALUES(\` without space
* [pre-commit.ci] pre-commit autoupdate
* Bump actions/checkout from 5 to 6
py-arviz: updated 0.23.1
0.23.1
Patch release to handle the recent 1.8 h5netcdf release. h5netcdf now has two
potential backends, and one must be chosen explicitly to get an install capable
of reading/writing netcdf files.
[clang][analyzer] StdLibraryFunctionsChecker getcwd fix (#175794)
`StdLibraryFunctionsChecker` contained the following condition for
`getcwd`:
```
.Case({NotNull(0),
ArgumentCondition(1, WithinRange, Range(1, SizeMax)),
ReturnValueCondition(BO_EQ, ArgNo(0))},
ErrnoMustNotBeChecked, GenericSuccessMsg)
```
In this case argument 1 should be not zero and return value is set to be
equal to argument 1. This would mean that return value is implicitly not
zero. But for unknown reason (probably analyzer inaccuracy) it can occur
that the return value is still assumable to be zero after this condition
was applied. This results in false positive if `ErrnoChecker` is enabled
because when the return value is 0 value of `errno` should be allowed to
be read but in this case it is not.
The bug is fixed by adding an extra (theoretically redundant) condition
for the return value to be non-zero.
Fixes #175136
InstCombine: Split aggregate tests for SimplifyDemandedFPClass to new fie (#176702)
This is a workaround; currently alive2 silently errors when trying to
verify transforms on some of these cases.
powerdns-recursor: update to 5.3.4.
Provided by Marcin Gondek in wip.
5.3.4
Released: 14th of January 2026
Improvements
Update cxx and related cargos and avoid uuid crate.
References: #16106, pull request 16699
Add package urls to our SBOMs.
References: #16217, pull request 16414
We need a usable cargo for sdist so download (and install) rust later.
References: pull request 16387
Update the Rust library version when generating a tarball and fix release builds by updating the locked Rust lib version.
References: #16155, #16167, #16180, #16188, #16380, #16392, pull request 16380, pull request 16381, pull request 16382, pull request 16397
Do not hash (or compare) OpenTelemetry Trace EDNS value for packetcache.
References: #16098, pull request 16378
Bug Fixes
[6 lines not shown]
[X86][WinEH] Insert nop after unwinding inline assembly (#176393)
As discussed on https://github.com/llvm/llvm-project/pull/144745, insert
a nop after unwinding inline assembly, as it may end on a call.
While the change itself is trivial, I ended up having to do two
infrastructure changes:
* The unwind flag needs to be propagated to ExtraInfo of the
MachineInstr.
* The MachineInstr needs to be passed through to emitInlineAsmEnd(), and
the method needs to be non-const.
Fixes https://github.com/llvm/llvm-project/issues/157073.
import comms/rtl_433
cat pkg/DESCR
rtl_433 (despite the name) is a generic data receiver, mainly for the
433.92 MHz, 868 MHz (SRD), 315 MHz, 345 MHz, and 915 MHz ISM bands,
utilizing rtl-sdr devices.
Sample configurations are included to decode various transmissions
including remote controls, car keys, tyre pressure monitoring systems,
thermometers, weather stations and more.
review, feedback, patch on top of my initial version, and OK with that sthen@