py-mysqlclient: updated to 2.2.8
2.2.8
* Add ``local_infile_dir`` option to restrict LOAD DATA LOCAL INFILE file path.
* windows wheel: Update mariadb-connector to 3.4.8
* Add Python 3.14 and drop Python 3.8, 3.9 support.
* Experimental support for free threaded Python. Importing ``MySQLdb`` doesn't
enable the GIL anymore. This doesn't mean mysqlclient is thread safe.
You must not use same connection object from multiple threads concurrently.
[MLIR][LLVMIR] Add support for importing ConstantInt/FP vector splats. (#180946)
Updates LLVM IR importing to remove the assumption that
ConstantInt/ConstantFP are always scalar.
[AArch64] Eliminate XTN/SSHLL for vector splats (#180913)
Combine:
sext(duplane(insert_subvector(undef, trunc(X), 0), idx))
Into:
duplane(X, idx)
This avoids XTN/SSHLL instruction sequences that occur when splatting
elements from boolean vectors after type legalization, which is common
when using shufflevector with comparison results.
py-test-html: updated to 4.2.0
4.2.0
fix: Extras from setup/teardown missing in report
fix: Total duration when running in parallel
Fix license classifier in pyproject.toml
[pre-commit.ci] pre-commit autoupdate
Fix for 806 (if results table order changed, hide/show details hover over broken)
Chore(deps): Bump certifi from 2023.5.7 to 2023.7.22 in /docs
Start tag has wrong closing tag
Drop python 3.8, add support for 3.12, 3.13
[llvm-reduce] Add a pass to replace unconditinal branches with returns
Unconditional branches could end up in infinite loops in the reduced code,
while the code could have been reduce furter.
This patch implements a simple pass that replaces unconditional branches
with returns.
Move implementations out of ups/__init__.py into utils.py
Move port_choices and ups_config_extend logic to utils.py,
keeping __init__.py as a thin delegation layer.
https://claude.ai/code/session_01G9KzvYnAgzjNbUFucPqApL
[lldb][doc] Improve documentation for `ScriptedFrameProvider` (#179996)
* Provide a minimal, working example
* Document the instance variables
* Remove mention of `thread.SetScriptedFrameProvider` (which doesn't exist)
* add missing `@staticmethod` annotation
* fix rendering of bullet-pointed lists
update to gawk-5.3.2
- upstream drops libsigsegv dep
- build with --disable-pma to disable optional new persistent memory
archive feature (heap dump/restore) which fails at runtime
- add notes on the test failures in Makefile comments (none new)
- drop the /usr/local/bin/awk -> gawk symlink
[libc] Add getc, ungetc, fflush to enable libc++ iostream on baremetal (#175530)
After https://github.com/llvm/llvm-project/pull/168931 landed getc,
ungetc and fflush are still missing at link time while trying to make
libc++ std::cout work with LLVM libc on baremetal.
ungetc implementation is very minimal only to cover the current standard
streams implementation from the patch above.
[libc++] Avoid including pair in <__functional/hash.h> (#179635)
We already have `_PairT`, which is just a pair of two `size_t`s, so we
might as well use that throughout the file. This avoids the `pair`
include altogether, reducing header parse times a bit in some cases.