pkgconf: updated to 3.0.3
Changes from 3.0.2 to 3.0.3:
* Restore correct handling of sysroots when emulating legacy pkg-config, and
add explicit regression tests for this case.
* Fix references to bomtool in spdxtool --help.
Patch by Pierre Pronchery.
* Fix various typos in the source code.
Patch by Christian Clauss.
py-regex: updated to 2026.7.10
2026.7.10
Clarified that the POSIX flag makes it look for only the longest overall match.
Git issue 606: `regex`'s compiled-pattern cache eviction is not free-threading-safe
py-narwhals: updated to 2.24.0
2.24.0
Enhancements
feat: Widen IntoSchema to accept IntoDType values and (name, dtype) pair sequences
feat: add nw.list
feat: Support plugin native objects in is_into_*
feat: stabilize dtype conversion across pandas, pyarrow, and modin test constructors
Bug fixes
fix: avoid potential sql injection in sink_parquet
fix(pyarrow): Adapt for pyarrow v25.0.0
fix(ci): sync all dependencies in altair downstream test
fix: Fix fill_null for Dask with expressions
fix: avoid potential sql injection for join_asof
fix assert_equal_data for objects where __eq__ returns non-bool
[4 lines not shown]
py-mypy: updated to 2.3.0
2.3.0
The Upcoming Switch to the New Native Parser
Mypyc Free-threading Memory Safety
librt.threading: Fast Native Lock Type
Mypyc: Read-only Final Instance Attributes
py-asttokens: updated to 3.0.2
3.0.2
Modernize type annotations
Fix pypy CI by skipping redundant mypy runs on it
Fix IndexError on source mixing lone CR with LF line endings
Release modernization, and publish to PyPI from CI via trusted publishing
py-relativetimebuilder: updated to 3.0.3
3.0.3
Use SPDX license identifier in source files
Correct Read the Docs configuration to point to Codeberg
Drop upper bounds on aniso8601 and attotime requirements
Update supported Python versions to match upstream support status
py-tifffile: updated to 2026.7.14
2026.7.14
- Fix series.asxarray returns wrong series for sublevels.
- Support Huron TIFF series and metadata.
- Support FLIMage FLIM series and metadata.
- Support DECTRIS IFD and tags.
- Allow subsampling with any image compression scheme.
- Detect DICOM-TIFF dual-personality format.
/etc/rc.d/unbound: Fix order of migration and trust anchor setup.
Add some comments explaining the order, and make sure we propagate
various failures back to the caller.
Based on a patch by Erik LaBine.
PR bin/60447: unbound rc.d fails on fresh install before
configuration migration can run
t_signal_and_fpu: Fix XMM register trashing.
The units we read from memory into registers are 16 bytes (128 bits)
each, not 32 bytes (256 bits).
Fortunately, this mistake didn't prevent the test from generally
working: reading past the end of our stack frame will just give us
other garbage that is unlikely to coincide with the register content
that the interrupted code expects.
PR kern/60426: Signal handler corrupts AVX (YMM) registers
nvmm: Add support for extended CPU state (XSAVE) beyond x87/SSE.
New machine-dependent x86 vCPU configuration command
NVMM_VCPU_CONF_XCR0_MASK sets the vCPU's XCR0 mask, that is, the set
of XSAVE features that the guest sees as supported in the vCPU. This
command is advertised by the new machine capability
NVMM_CAP_ARCH_VCPU_CONF_XCR0_MASK. (Changing the XCR0 mask after the
guest has begun execution will clear all extended CPU state for now;
it is unlikely that hypervisor software will do this anyway.)
This change doesn't expose the XSAVE area to userland in the comm
page -- there are already machine-independent members in struct
nvmm_comm_page at fixed offsets past the machine-dependent state so
we can't just extend struct nvmm_vcpu_state without breaking the ABI.
And the XSAVE area may exceed a page, but the address space for the
virtual machine uvm object packs comm areas in consecutive pages, so
we can't put it in the comm page at all without breaking the ABI
another way.
[10 lines not shown]
meta_ignore use :N with .MAKE.META.IGNORE_PATTERNS
By using :N .MAKE.META.IGNORE_PATTERNS is just a special case
of .MAKE.META.IGNORE_FILTER and processed the same way.