NetBSD/pkgsrc yfEDyYCdoc CHANGES-2026

   doc: Updated shells/oh-my-posh to 29.15.1
VersionDeltaFile
1.3702+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 9LbBB18shells/oh-my-posh distinfo Makefile

   shells/oh-my-posh: update to 29.15.1

   Bug Fixes

    - prevent panic in winget segment when header has fewer than 5 columns (ec0b8b9)
VersionDeltaFile
1.305+4-4shells/oh-my-posh/distinfo
1.336+2-2shells/oh-my-posh/Makefile
+6-62 files

NetBSD/pkgsrc Va9VsjCdoc CHANGES-2026

   doc: Updated math/R-survey to 4.5
VersionDeltaFile
1.3701+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc bpKpkBNmath/R-survey Makefile distinfo, math/R-survey/files Makevars

   (math/R-survey) Updated 4.4.2 to 4.5

   (pkgsrc)
      - There is a file src/Makevars.makefile, but it does not seem to be used
        (changes on that file does not affect anything) so files/Makevars are
        added for PKG_LIBS+= -lexecinfo

   (upstream)
   4.5  start of first version of multiphase() for arbitrary multiphase sampling
        (experimental, may contain nuts)

        Wilson ('score test') confidence intervals in svyciprop (from Stas Kolenikov)

        svydesign() gives a clearer error message when there are more stages in
        fpc= than in id= (for Stephanie Zimmer)

        svrepdesign(type="ACS") now uses mse=TRUE unless mse=FALSE is explicitly
        given, in which case it warns (for Anthony Damico)


    [75 lines not shown]
VersionDeltaFile
1.6+8-2math/R-survey/Makefile
1.7+4-4math/R-survey/distinfo
1.1+1-0math/R-survey/files/Makevars
+13-63 files

NetBSD/pkgsrc Eqs5drpdoc CHANGES-2026

   doc: Added sysutils/py-extra-platforms version 13.0.0
VersionDeltaFile
1.3700+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 5YThUWUsysutils Makefile

   sysutils/Makefile: + py-extra-platforms
VersionDeltaFile
1.1196+2-1sysutils/Makefile
+2-11 files

NetBSD/pkgsrc wxiCSBTsysutils/py-extra-platforms PLIST Makefile

   sysutils/py-extra-platforms: import py-extra-platforms-13.0.0

   Extra Platforms detects the runtime architecture, operating system
   (including Linux distribution), shell, terminal, CI environment &
   AI coding agents, and exposes rich, cacheable metadata (version,
   codename, icon, canonical URL). It also groups them into reusable
   families.
VersionDeltaFile
1.1+62-0sysutils/py-extra-platforms/PLIST
1.1+22-0sysutils/py-extra-platforms/Makefile
1.1+5-0sysutils/py-extra-platforms/distinfo
1.1+5-0sysutils/py-extra-platforms/DESCR
+94-04 files

NetBSD/pkgsrc Nq0gSSedoc CHANGES-2026

   doc: Updated devel/py-filelock to 3.29.3
VersionDeltaFile
1.3699+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 8QXbVMsdevel/py-filelock Makefile distinfo

   py-filelock: update to 3.29.3.

   3.29.3

   🔧 ci(release): publish to PyPI on tag push by @gaborbernat in #557
   validate pid range in _parse_lock_holder by @dxbjavid in #556
   🐛 fix(ci): restore release environment on tag job by @gaborbernat in #559
   🐛 fix(ci): publish from release.yaml on tag push by @gaborbernat in #560

   3.29.2

   open marker reads non-blocking to refuse attacker-placed fifo by @dxbjavid in #549
   🔒 fix(soft): harden stale-lock breaking and self-heal malformed locks by @gaborbernat in #551
   check hostname in is_lock_held_by_us by @dxbjavid in #553
VersionDeltaFile
1.47+4-4devel/py-filelock/Makefile
1.46+4-4devel/py-filelock/distinfo
+8-82 files

NetBSD/pkgsrc OSV3cs8doc CHANGES-2026

   doc: Updated net/xfr to 0.9.16
VersionDeltaFile
1.3698+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 17cQ9G1net/xfr distinfo cargo-depends.mk

   net/xfr: update to 0.9.16

   [0.9.16] - 2026-06-10

       v0.9.15 was tagged but never released: its release CI failed on the aarch64-gnu cross build (glibc < 2.27 lacks the memfd_create wrapper; now invoked via raw syscall). All v0.9.15 changes ship here.

   Fixed

       -R UDP no longer reports the server's send rate as throughput (issue #81) — in download mode the server is the UDP sender, and both the live intervals and the final result carried its bytes_sent: every send_to the kernel accepted counted, so over a constrained link the display tracked the requested -b rate (brettowe's 999.7 Mbps over 100 Mbps Wi-Fi) instead of what arrived. The client — the receiver, the only side that knows wire truth — now overlays its own receive counters onto live intervals (TUI, --json-stream, CSV, plain) and the final result (total, per-stream, throughput). Forward mode was always correct because there the server is the receiver. Repro: CPU-starved receiver with a 4 KB receive buffer showed 2.6 Gbps sender-side vs 1.18 Gbps actually received; the display previously claimed the former and now reports the latter, exactly matching received-packets × packet-size.
       -R UDP results now include loss and jitter — the client's receive_udp already computed full receiver-side UdpStats (loss %, jitter, out-of-order, max jitter) but discarded them; download mode showed no UDP Stats block at all. They're now recorded and attached to the final result, and live loss in download mode is derived from the client's own packet trackers rather than the server's (empty) receiver counters.

   Added

       Zero-copy TCP sends (-Z/--zerocopy, Linux) (issue #33) — the send payload now lives in a memfd_create anonymous file and is pushed to the socket with sendfile(2), skipping the userspace-to-kernel copy that write(2) performs on every 128 KB chunk. On CPU-bound senders (embedded routers, SBCs) the copy itself is often the throughput bottleneck — iperf3's equivalent -Z measured ~3x on a MIPS router. sendfile was chosen over MSG_ZEROCOPY for the first step because it works on old kernels, needs no error-queue completion reaping, and is MPTCP-compatible; MSG_ZEROCOPY remains on the roadmap under the same flag. Opt-in, TCP-only (conflicts with -u/-Q at parse time), and never fails a test: non-Linux platforms, kernels without memfd_create, and sockets that reject sendfile all fall back to regular writes with a warning. Payload semantics are unchanged (--random default / --zeros fill the memfd exactly as they fill the regular buffer).
       zerocopy_v1 capability + TestStart.zerocopy field — for -R/--bidir, the client forwards the zero-copy request in TestStart (wire-additive, absent = false) and the server applies it to its own send paths. Servers predating the field silently ignore it, so the client warns when the server doesn't advertise zerocopy_v1.

   Library API (pre-1.0 break)

       tcp::TcpConfig and client::ClientConfig gain zerocopy: bool. Struct-literal constructors must supply it (Default is false).

    [7 lines not shown]
VersionDeltaFile
1.13+88-64net/xfr/distinfo
1.13+28-20net/xfr/cargo-depends.mk
1.13+2-2net/xfr/Makefile
+118-863 files

NetBSD/pkgsrc b4PCPpfdoc CHANGES-2026

   doc: Updated devel/gitpane to 0.7.14
VersionDeltaFile
1.3697+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc uU0BV2Sdevel/gitpane distinfo Makefile

   devel/gitpane: update to 0.7.14

   [0.7.14] - 2026-06-09
   Added

    - The submodule tag in the Changes panel now shows which branch the submodule is on (@<branch>,
      or @detached for a detached HEAD, which is git's default after submodule update), so a dirty
      or modified submodule tells you where the change lives. It also gains a ↛main warning when
      the pinned submodule commit is reachable from a remote but not from the submodule's default
      branch (origin/HEAD, falling back to origin/main/origin/master), meaning it still needs a merge
      there. The warning stays silent when no default branch resolves, so it never fires on a false
      positive. The existing ⚠unreach (commit on no remote) still takes precedence, while ↑N (ahead
      of upstream) and ↛main compose, e.g. [sub: +commit @feature ↑3 ↛main].
VersionDeltaFile
1.3+4-4devel/gitpane/distinfo
1.3+2-2devel/gitpane/Makefile
1.3+0-0devel/gitpane/cargo-depends.mk
+6-63 files

NetBSD/pkgsrc XSFXSeGdoc CHANGES-2026

   Updated sysutils/xenkernel418 to 20260610
   Updated sysutils/xentools418 to 20260610
   Updated sysutils/xenkernel420 to 20260610
   Updated sysutils/xentools420 to 20260610
VersionDeltaFile
1.3696+5-1doc/CHANGES-2026
+5-11 files

NetBSD/pkgsrc yb311tTsysutils/xenkernel418 distinfo, sysutils/xentools418 version.mk distinfo

   Update xenkernel418 and xentools418 to 20260610.
   Changes since 20260515: bug fixes, including fixes for XSA-491,
   XSA-492, XSA-493 and XSA-494
VersionDeltaFile
1.9+4-4sysutils/xentools418/version.mk
1.12+4-4sysutils/xenkernel418/distinfo
1.12+4-4sysutils/xentools418/distinfo
+12-123 files

NetBSD/pkgsrc FMU85ymsysutils/xenkernel420 distinfo, sysutils/xenkernel420/patches patch-xen_arch_x86_Makefile

   Update xenkernel420, xentools420 and xenstoretools to 20260610.
   Changes since 20260515: bug fixes, including fixes for XSA-491,
   XSA-492, XSA-493 and XSA-494
VersionDeltaFile
1.2+7-7sysutils/xenkernel420/patches/patch-xen_arch_x86_Makefile
1.6+5-5sysutils/xenkernel420/distinfo
1.6+4-4sysutils/xentools420/distinfo
1.5+4-4sysutils/xentools420/version.mk
+20-204 files

NetBSD/pkgsrc OuLYPdSdoc CHANGES-2026

   Note update of shells/bash to 5.3.15
VersionDeltaFile
1.3695+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc TwIa5xIshells/bash distinfo Makefile

   Update shells/bash to 5.3.15

   Patch 13: Avoid (potential) UB comparing result from realloc with its arg
   Patch 14: Improve the solution from patch 11
   Patch 15: Avoid references to the byte before the input buffer used by read

   And for completeness, for the patches from the previous update:

   Patch 10: Fix problem with some EXIT traps calling wait
   Patch 11: Fix possible ref to freed memory in mapfile
   Patch 12: Fix issue with subshells, EXIT traps, and fatal signals
VersionDeltaFile
1.96+10-1shells/bash/distinfo
1.126+3-3shells/bash/Makefile
+13-42 files

NetBSD/pkgsrc XbPOqh3doc CHANGES-2026

   doc: Updated www/palemoon to 34.3.0.1
VersionDeltaFile
1.3694+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc Crqidbcwww/palemoon distinfo Makefile.common

   palemoon: Update to 34.3.0.1

   This fixes a stability regression in the previous release.
VersionDeltaFile
1.45+10-10www/palemoon/distinfo
1.8+3-3www/palemoon/Makefile.common
+13-132 files

NetBSD/pkgsrc fkkzKCpsecurity/pcsc-lite distinfo Makefile, security/pcsc-lite/patches patch-src_configfile.l

   pcsc-lite: updated to 2.5.1

   2.5.1

   - Fix a bug (introduced in 2.5.0) with multi-slots readers
   - Add support of Haiku Operating System
VersionDeltaFile
1.46+4-5security/pcsc-lite/distinfo
1.58+2-2security/pcsc-lite/Makefile
1.2+1-1security/pcsc-lite/patches/patch-src_configfile.l
+7-83 files

NetBSD/pkgsrc 3fR6L1Nsecurity/ccid distinfo Makefile

   ccid: updated to 1.8.1

   1.8.1

   Correctly close the slots of a multi-slots reader
   Fix 3 minor issues "Found by AISLE in partnership with Red Hat"
   Some other minor improvements
VersionDeltaFile
1.33+4-4security/ccid/distinfo
1.55+2-2security/ccid/Makefile
+6-62 files

NetBSD/pkgsrc aa8eeMMtextproc/ansifilter Makefile distinfo

   ansifilter: updated to 2.22

   ansifilter 2.22

   - CLI: add `--tee` and `--append` options for text output (https://gitlab.com/saalen/ansifilter/-/issues/30)
   - GUI: add toggle button in the GUI to hide the options panel (suggested by Luis Rivas)
   - CLI: add option `--line-append` (https://gitlab.com/saalen/ansifilter/-/issues/45)
   - remove gitignore form repo (https://gitlab.com/saalen/ansifilter/-/issues/41)
   - fix open span tag with CR as opening sequence (https://gitlab.com/saalen/ansifilter/-/issues/43)
VersionDeltaFile
1.6+6-7textproc/ansifilter/Makefile
1.6+4-4textproc/ansifilter/distinfo
+10-112 files

NetBSD/pkgsrc d8mF2fAdoc CHANGES-2026

   doc: Updated devel/ruby-msgpack to 1.8.3
VersionDeltaFile
1.3693+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc TtaC6vKdevel/ruby-msgpack distinfo Makefile

   devel/ruby-msgpack: update to 1.8.3

   1.8.3 (2026-06-10)

   * Fix an integer overflow when parsing maps.
VersionDeltaFile
1.37+4-4devel/ruby-msgpack/distinfo
1.36+2-2devel/ruby-msgpack/Makefile
+6-62 files

NetBSD/pkgsrc 8EBtjiSgraphics/R-interp/files Makevars

   (graphics/R-interp) Missing file added
VersionDeltaFile
1.1+1-0graphics/R-interp/files/Makevars
+1-01 files

NetBSD/pkgsrc NeFOgoldoc CHANGES-2026

   Updated net/ndpi, net/ntopng
VersionDeltaFile
1.3692+4-1doc/CHANGES-2026
+4-11 files

NetBSD/pkgsrc GbgsUsEdatabases/clickhouse-cpp buildlink3.mk, net/ntopng Makefile

   fix clickhouse-cpp buildlink
VersionDeltaFile
1.2+2-2databases/clickhouse-cpp/buildlink3.mk
1.89+2-2net/ntopng/Makefile
+4-42 files

NetBSD/pkgsrc tXkfVz9net/ntopng PLIST Makefile, net/ntopng/patches patch-Makefile.in

   ntopng: updated to 6.6

   6.6

   Breakthroughs

   New Autonomous Systems Dashboards, Sankeys, and comprehensive AS statistics
   Enhanced flow exporters and probes statistics with dedicated pages
   Improved SNMP devices polling
   Major flow collection code rework and optimizations
   Native support for ClickHouse Cloud with SSL connections
   Direct flows dump mode for real-time ClickHouse export

   Improvements

   Add comprehensive AS ranking detection and alerting with configurable thresholds
   Implement ASN traffic rules for better AS-level traffic management
   Enhance ASN live flow aggregation
   Add conditional ASN aggregation type based on ASN mode

    [37 lines not shown]
VersionDeltaFile
1.12+72-19net/ntopng/PLIST
1.11+20-40net/ntopng/patches/patch-Makefile.in
1.88+13-6net/ntopng/Makefile
1.19+8-7net/ntopng/distinfo
+113-724 files

NetBSD/pkgsrc Cl6pll0textproc/R-readxl Makefile distinfo, textproc/R-readxl/patches patch-src_Makevars

   (textproc/R-readxl) fix build against R-4.6.0
VersionDeltaFile
1.1+23-0textproc/R-readxl/patches/patch-src_Makevars
1.3+13-1textproc/R-readxl/Makefile
1.4+2-1textproc/R-readxl/distinfo
+38-23 files