mkimage: New `-C <config>' option.
Enables use for out-of-tree config files. We're not really
supporting this as a general-purpose tool but downstream users (like
me) may find this convenient to avoid local patches.
ld at virtio: Guard virtio_dequeue by virtio_vq_is_enqueued.
After triggering the DMA operation, or any previous virtio_dequeue,
virtio_vq_is_enqueued issues the necessary bus_dmamap_sync for
virtio_dequeue to observe any potential (new) result.
Normally this happens inside virtio(4) (in virtio_vq_intr) between
interrupt delivery and calling the virtqueue's done callback. But
polling mode I/O operations (and dump operations) don't take that
path, so it is necessary to call virtio_vq_is_enqueued explicitly.
PR kern/60182: ld at virtio sometimes hangs up
virtio(4): Add missing BUS_DMASYNC_PREREAD operations.
And one missing BUS_DMASYNC_POSTREAD operation.
With this change, loads from vq->vq_used->flags (which occur
immediately after a transfer is submitted to test whether we need to
kick the host device) is separated by a PREREAD/POSTREAD cycle from
loads from vq->vq_used->idx (which occur when we think a transfer may
have completed, e.g. upon receiving an interrupt, to test whether it
has, in fact, completed).
Additionally, with this change, consecutive loads from
*vq->vq_avail_event are separated by a PREREAD/POSTREAD cycle.
Should fix virtio(4) issues on m68k and other related architectures
like mips and armv<7:
PR kern/60144: virtio(4) cache coherence issue
[173 lines not shown]
tailscale: update to 1.98.3
Fixed an issue on Linux where netfilter rules could be applied
inconsistently after a netfilter mode change failed has been
resolved. Connmark and CGNAT rules are applied after the active
netfilter mode is successfully updated, matching the behavior of
other netfilter paths.
(textproc/R-yaml) Updated 2.3.10 to 2.3.12, fixed against R-4.6.0
# yaml 2.3.12
* Fixes for C API compliance.
* Switched from `CHANGELOG` to `NEWS.md`.
(math/R-fastmatch) Updated 1.1.6 to 1.1.8, fix build against R-4.6.0
NEWS for fastmatch
--------------------
1.1-8 2025-01-18
o fix protection bug in safe mode
o remove index slicing since we don't pass the index
1.1-7 2025-01-17
o adjust to API changes up to R 4.6.0
o add .SAFE argument to ctapply() which determines whether the
index and value vectors are cached between calls to FUN
(.SAFE=FALSE) or if a clean set of vectors is allocated for
each call (.SAFE=TRUE). The latter is now the default, because
cached vectors may not be assigned and thus are only safe to
[18 lines not shown]
(graphics/R-Cairo) Updated 1.6.2 to 1.7.0
NEWS/Changelog
1.7-0 (2025-10-29)
o add support for all R graphics device features up to
GE API 16 (R 4.5.0). This includes fill patterns, masks
(GE 13) and groups (GE 14). Thanks to Paul Murrell!
o removed gdd_get_version C API and CAIROGD_VER.
This means that it no longer needs mkdist and can be
directly created with R CMD build.
o restore the use of WIN32 API to find fonts for
cairographics > 1.16 (where avaiable) since it was
removed in those versions. (#50)
1.6-5 (2025-08-20)
[20 lines not shown]
(devel/R-checkmate) Updated 2.3.2 to 2.3.4
# Version 2.3.4
* Removed deprecated calls to internal R functions.
# Version 2.3.3
* Fixed a minor bug in `allMissing()` for complex numbers where either the real
part or the imaginary part was missing while the other part was not missing
(#279).
* Dropped usage for internal C function `isFrame()` for recent R versions (278).
* Improved documentation (#273, #264).
(math/R-gss) Updated 2.2.8 to 2.2.10
Tue Nov 18 11:48:54 AM EST 2025, Chong Gu <chong at purdue.edu>
* DESCRIPTION: Version 2.2-10
* R: Bug fix in dev.null.nbinomial.
Sun Apr 13 12:40:30 PM EDT 2025, Chong Gu <chong at purdue.edu>
* DESCRIPTION: Version 2.2-9
* src: Added LINPACK routine dchdc.f.
py-lxml-html-clean: updated to 0.4.5
0.4.5
Bugs fixed
* Fixed a security vulnerability where ``javascript:`` URLs in ``xlink:href``
attributes were not sanitized when``safe_attrs_only=False``, allowing
cross-site scripting (XSS) attacks. The fix requires ``lxml>=6.1.1``,
which adds ``xlink:href`` to the set of link attributes iterated by
``rewrite_links()``. Reported by Guillem Lefait (@glefait).
py-responses: updated to 0.26.1
0.26.1
* Added Spanish translation of the README (``README.es.rst``)
* When both `content_type` and `headers['content-type']` are in a response mock file,
`content_type` is now used.
* Added strict_match to urlencoded_params_matcher, enabling partial request parameter
matching.