py-requests-cache: updated to 1.3.2
1.3.2
Update CachedResponse for compatibility with requests 2.34
If a request contains a header that is in both ignored_parameters and Vary (for example, Authorization + Vary: Authorization), always consider it a cache miss
Ignore + redact some additional common authentication headers + params by default
[MLIR][NVVM][NFC] Restructure NVVM dialect (#195811)
Moves the declarations of the NVVM dialect and some widely used enums
(`FPRoundingModeAttr` and `SaturationModeAttr`) to separate files to make
them easier to maintain and also use in the NVGPU dialect.
py-uv py-uv-build: updated to 0.11.13
0.11.13
Bug fixes
Include data files in editable builds
Respect --require-hashes when installing from pylock.toml files
Python
Add CPython 3.14.5
Allow (p)redefinitions of symbols in <machine/param.h>
sun3 (via machine/param3.h) defines UBC_NWINS UBC_WINSHIFT & MAXEXEC
before including <m68k/param.h> == and defines UBC_NWINS differently.
Allow for that (hopefully fix broken sun3 build).
[ Why sun3 has __mc680010__ defined is left as an unexplained mystery ]
[AArch64][CostModel] Model sve costs for ctpop (#192428)
Targets supporting sve prefer sve for ctpop with fixed length vectors.
Update cost model to reflect the same.
[InstCombine][NFC] Change the order of checks in SliceUpIllegalIntegerPHI for faster compile time. (#183726)
SliceUpIllegalIntegerPHI searches for PHIs that have illegal type and
are only used by trunc or trunc(lshr) operations. It bails out if
encounters invoke or EH pad instructions.
It first checks whether it encounters invoke or EH pad, which is time
consuming as it checks every instruction. Then it checks whether it is
used by trunc or trunc(lshr). The former check is generally loose, while
the latter one is stricter. Switch the order of the checks will speed up
compilation.
Signed-off-by: XinlongZHANG-Bob <zhangxinlong.bob at bytedance.com>
[LV][NFC] Reshape pointer_iv_non_uniform_0 test to use distinct loads (#196494)
The followup [patch](https://github.com/llvm/llvm-project/pull/196080)
is folding some of the idempotent binary ops This test has `sub x - x`
operation which is affected by the followup patch. This patch is making
the test immune to the fold.
textproc/enchant2: update to 2.8.16
Update to 2.8.16
This release fixes a bug in enchant(1) where an invalid word would
cause the rest of the line to be skipped when checking with -l.
PR: 295123
devel/glibmm26: update to 2.86.0
With recent update of devel/glib20 commit 944cdc82c7, this is update for
devel/glibmm26 to 2.86.0.
2.86.0 (stable) 2025-09-19:
gmmproc:
* tools/defs_gen/docextract: Improve extraction of enum enumerators.
New enumerators in glib, gtk, pango are usually documented with one
enumerator per documentation block.
(Kjell Ahlstedt)
2.85.0 (unstable) 2025-08-31:
Glib:
* Date: Add get_week_of_year() and get_weeks_in_year().
(Kjell Ahlstedt)
[13 lines not shown]
[clang] implement CWG2064: ignore value dependence for decltype
The 'decltype' for a value-dependent (but non-type-dependent) should be known,
so this patch makes them non-opaque instead.
This patch also implements what's neceessary to allow overloading
on pure differences in instantiation dependence, making `std::void_t`
usable for SFINAE purposes.
This also readds a few test cases from da98651, which was a previous attempt
at resolving CWG2064.
Fixes #8740
Fixes #61818
Fixes #190388
[clang] Add arm64_neon.h wrapper on windows (#196014)
Add an MSVC-compatible <arm64_neon.h> resource header that forwards to
Clang's generated <arm_neon.h>. This lets ARM64 Windows code using the
MSVC header name lower NEON intrinsics through Clang builtins instead of
eaving external neon_* calls such as neon_ld1m4_q32
Fixes #195683