[mlir][tosa] Add clamp op support to `TosaNarrowI64ToI32` pass (#169308)
This commit allows the narrowing of `tosa.clamp` when the min/max
attributes are within the int32 range.
databases/cego: update 2.52.44 -> 2.53.2
- integer cleanup, all int values will be replaced by unsigned
or unsigned long, where is no need of nagative values
- for those ports:
devel/lfcbase
devel/lfcxml
databases/cego
databases/cegobridge
databases/p5-DBD-cego
cego:
- Fix added in CegoDbHander::acceptSession and CegoSerial::readChain
to treat empty or invalid session requests
- fix in CegoDbThreadPool for bad message handling
p5-DBD-cego:
- Fix added for execute return value and $sth->rows value to
return affected rows for update statements
[AArch64] Run optimizeTerminators earlier too. (#170907)
Running optimizeTerminators prior to other optimizations like branch
layout can lead to more folding and better codegen, but is not on its
own able to capture all cases. There is benefit to running it in both
places. This adds the existing code from #161508 into the
AArch64RedundantCopyElimination pass, which sounds like a sensible
enough place for it.
This is a recommit with an extra fix for shrink-wrapping domtree use.
graphics/gpu-firmware-kmod: Update to 20250109
Update the meta port to include latest entries for amdgpu and i915
Sponsored by: Beckhoff Automation GmbH & Co. KG
graphics/gpu-firmware-amd-kmod: Update to 20250109
This adds some new firmware for amd card.
We now use the same date (and git tag) as the linux-firmware one
that the files comes from.
Sponsored by: Beckhoff Automation GmbH & Co. KG
graphics/gpu-firmware-intel-kmod: Update to 20250109
This adds firmware for the MeteorLake platform.
We now use the same date (and git tag) as the linux-firmware one
that the files comes from.
Sponsored by: Beckhoff Automation GmbH & Co. KG
[mlir][vector] Remove hooks deprecated pre Release/22 branch (#171829)
As mentioned on Discourse,
* https://discourse.llvm.org/t/psa-vector-standardise-operand-naming
I am removing the deprecated Vector hooks near the creation of the
release/22 branch. These hooks were introduced in #158258 (~September
'25, ~3 months ago), so I assume folks have enough time to transition
away.
py-sqlalchemy: updated to 2.0.45
2.0.45
orm
[orm] [bug]
Fixed issue where calling Mapper.add_property() within mapper event hooks such as MapperEvents.instrument_class(), MapperEvents.after_mapper_constructed(), or MapperEvents.before_mapper_configured() would raise an AttributeError because the mapper’s internal property collections were not yet initialized. The Mapper.add_property() method now handles early-stage property additions correctly, allowing properties including column properties, deferred columns, and relationships to be added during mapper initialization events. Pull request courtesy G Allajmi.
[orm] [bug]
Fixed issue in Python 3.14 where dataclass transformation would fail when a mapped class using MappedAsDataclass included a relationship() referencing a class that was not available at runtime (e.g., within a TYPE_CHECKING block). This occurred when using Python 3.14’s PEP 649 deferred annotations feature, which is the default behavior without a from __future__ import annotations directive.
examples
[examples] [bug]
Fixed the “short_selects” performance example where the cache was being used in all the examples, making it impossible to compare performance with and without the cache. Less important comparisons like “lambdas” and “baked queries” have been removed.
[56 lines not shown]
rclone: updated to 1.72.1
1.72.1
Bug Fixes
build: update to go1.25.5 to fix CVE-2025-61729
doc fixes (Duncan Smart, Nick Craig-Wood)
configfile: Fix piped config support (Jonas Tingeborn)
log
Fix PID not included in JSON log output (Tingsong Xu)
Fix backtrace not going to the --log-file (Nick Craig-Wood)
Google Cloud Storage
Improve endpoint parameter docs (Johannes Rothe)
S3
Add missing regions for Selectel provider (Nick Craig-Wood)
[AMDGPU][True16] remove pack32 pattern from true16 mode (#171756)
Remove pack32 so that isel use reg_sequence in true16 mode for
build_vector. This generates better code
lazygit: updated to 0.57.0
0.57.0
Enhancements
Open pull requests in browser with extra leading slashes removed
Allow using SelectedSubmodule in CustomCommands
Don't allow empty input in most prompts
Suppress output from background fetch (unless there were errors)
feat: add fork remote command
Trigger immediate background fetch when switching repos
Fixes
Keep cursor at top/bottom when navigating by page
Switch to branches view when checking out a commit
Fix deleting a remote tag when a remote branch with the same name exists, or vice versa
Show fixup base commits in correct order in ctrl-f error message
[25 lines not shown]
[X86] mayFoldIntoVector - relax load alignment requirements (#171830)
If we're trying to move big integers to vector types, relax the SSE alignment requirements - unlike regular uses of mayFoldLoad, we're not testing to confirm every load will fold into a vector op, just that it can move to the FPU.
Fixes #144861